com.aoindustries.aoserv.client.FileBackupSettingTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aoserv-client Show documentation
Show all versions of aoserv-client Show documentation
Java client for the AOServ Platform.
/*
* aoserv-client - Java client for the AOServ platform.
* Copyright (C) 2003-2012, 2016 AO Industries, Inc.
* [email protected]
* 7262 Bull Pen Cir
* Mobile, AL 36695
*
* This file is part of aoserv-client.
*
* aoserv-client is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* aoserv-client is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with aoserv-client. If not, see .
*/
package com.aoindustries.aoserv.client;
import com.aoindustries.io.CompressedDataInputStream;
import com.aoindustries.io.CompressedDataOutputStream;
import com.aoindustries.io.TerminalWriter;
import com.aoindustries.util.IntList;
import java.io.IOException;
import java.io.Reader;
import java.sql.SQLException;
import java.util.List;
/**
* @see FileBackupSettingTable
*
* @author AO Industries, Inc.
*/
final public class FileBackupSettingTable extends CachedTableIntegerKey {
FileBackupSettingTable(AOServConnector connector) {
super(connector, FileBackupSetting.class);
}
private static final OrderBy[] defaultOrderBy = {
new OrderBy(FileBackupSetting.COLUMN_REPLICATION_name+'.'+FailoverFileReplication.COLUMN_SERVER_name+'.'+Server.COLUMN_PACKAGE_name+'.'+Package.COLUMN_NAME_name, ASCENDING),
new OrderBy(FileBackupSetting.COLUMN_REPLICATION_name+'.'+FailoverFileReplication.COLUMN_SERVER_name+'.'+Server.COLUMN_NAME_name, ASCENDING),
new OrderBy(FileBackupSetting.COLUMN_REPLICATION_name+'.'+FailoverFileReplication.COLUMN_BACKUP_PARTITION_name+'.'+BackupPartition.COLUMN_AO_SERVER_name+'.'+AOServer.COLUMN_HOSTNAME_name, ASCENDING),
new OrderBy(FileBackupSetting.COLUMN_REPLICATION_name+'.'+FailoverFileReplication.COLUMN_BACKUP_PARTITION_name+'.'+BackupPartition.COLUMN_PATH_name, ASCENDING),
new OrderBy(FileBackupSetting.COLUMN_PATH_name, ASCENDING)
};
@Override
OrderBy[] getDefaultOrderBy() {
return defaultOrderBy;
}
int addFileBackupSetting(FailoverFileReplication replication, String path, boolean backupEnabled, boolean required) throws IOException, SQLException {
return connector.requestIntQueryIL(
true,
AOServProtocol.CommandID.ADD,
SchemaTable.TableID.FILE_BACKUP_SETTINGS,
replication.pkey,
path,
backupEnabled,
required
);
}
@Override
public FileBackupSetting get(int pkey) throws IOException, SQLException {
return getUniqueRow(FileBackupSetting.COLUMN_PKEY, pkey);
}
FileBackupSetting getFileBackupSetting(FailoverFileReplication ffr, String path) throws IOException, SQLException {
// Use index first
for(FileBackupSetting fbs : getFileBackupSettings(ffr)) if(fbs.path.equals(path)) return fbs;
return null;
}
List getFileBackupSettings(FailoverFileReplication ffr) throws IOException, SQLException {
return getIndexedRows(FileBackupSetting.COLUMN_REPLICATION, ffr.pkey);
}
@Override
public SchemaTable.TableID getTableID() {
return SchemaTable.TableID.FILE_BACKUP_SETTINGS;
}
@Override
boolean handleCommand(String[] args, Reader in, TerminalWriter out, TerminalWriter err, boolean isInteractive) throws IllegalArgumentException, IOException, SQLException {
String command=args[0];
if(command.equalsIgnoreCase(AOSHCommand.ADD_FILE_BACKUP_SETTING)) {
if(AOSH.checkParamCount(AOSHCommand.ADD_FILE_BACKUP_SETTING, args, 4, err)) {
out.println(
connector.getSimpleAOClient().addFileBackupSetting(
AOSH.parseInt(args[1], "replication"),
args[2],
AOSH.parseBoolean(args[3], "backup_enabled"),
AOSH.parseBoolean(args[4], "required")
)
);
out.flush();
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.REMOVE_FILE_BACKUP_SETTING)) {
if(AOSH.checkParamCount(AOSHCommand.REMOVE_FILE_BACKUP_SETTING, args, 2, err)) {
connector.getSimpleAOClient().removeFileBackupSetting(
AOSH.parseInt(args[1], "replication"),
args[2]
);
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.SET_FILE_BACKUP_SETTING)) {
if(AOSH.checkParamCount(AOSHCommand.SET_FILE_BACKUP_SETTING, args, 4, err)) {
connector.getSimpleAOClient().setFileBackupSetting(
AOSH.parseInt(args[1], "replication"),
args[2],
AOSH.parseBoolean(args[3], "backup_enabled"),
AOSH.parseBoolean(args[4], "required")
);
}
return true;
}
return false;
}
void setFileBackupSettings(
final FailoverFileReplication ffr,
final List paths,
final List backupEnableds,
final List requireds
) throws IOException, SQLException {
if(paths.size()!=backupEnableds.size()) throw new IllegalArgumentException("paths.size()!=backupEnableds.size(): "+paths.size()+"!="+backupEnableds.size());
if(paths.size()!=requireds.size()) throw new IllegalArgumentException("paths.size()!=requireds.size(): "+paths.size()+"!="+requireds.size());
connector.requestUpdate(
true,
new AOServConnector.UpdateRequest() {
IntList invalidateList;
@Override
public void writeRequest(CompressedDataOutputStream out) throws IOException {
out.writeCompressedInt(AOServProtocol.CommandID.SET_FILE_BACKUP_SETTINGS_ALL_AT_ONCE.ordinal());
out.writeCompressedInt(ffr.getPkey());
int size = paths.size();
out.writeCompressedInt(size);
for(int c=0;c
© 2015 - 2025 Weber Informatics LLC | Privacy Policy