com.aoindustries.aoserv.client.PackageTable 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) 2001-2013, 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.TerminalWriter;
import java.io.IOException;
import java.io.Reader;
import java.sql.SQLException;
import java.util.List;
/**
* @see Package
*
* @author AO Industries, Inc.
*/
final public class PackageTable extends CachedTableIntegerKey {
PackageTable(AOServConnector connector) {
super(connector, Package.class);
}
private static final OrderBy[] defaultOrderBy = {
new OrderBy(Package.COLUMN_NAME_name, ASCENDING)
};
@Override
OrderBy[] getDefaultOrderBy() {
return defaultOrderBy;
}
int addPackage(
String name,
Business business,
PackageDefinition packageDefinition
) throws IOException, SQLException {
return connector.requestIntQueryIL(
true,
AOServProtocol.CommandID.ADD,
SchemaTable.TableID.PACKAGES,
name,
business.pkey.toString(),
packageDefinition.pkey
);
}
/**
* Supports both Integer (pkey) and String (name) keys.
*/
@Override
public Package get(Object pkey) throws IOException, SQLException {
if(pkey instanceof Integer) return get(((Integer)pkey).intValue());
if(pkey instanceof String) return get((String)pkey);
throw new IllegalArgumentException("pkey must be either an Integer or a String");
}
@Override
public Package get(int pkey) throws IOException, SQLException {
return getUniqueRow(Package.COLUMN_PKEY, pkey);
}
public Package get(String name) throws IOException, SQLException {
return getUniqueRow(Package.COLUMN_NAME, name);
}
public String generatePackageName(String template) throws IOException, SQLException {
return connector.requestStringQuery(true, AOServProtocol.CommandID.GENERATE_PACKAGE_NAME, template);
}
List getPackages(Business business) throws IOException, SQLException {
return getIndexedRows(Package.COLUMN_ACCOUNTING, business.pkey);
}
List getPackages(PackageDefinition pd) throws IOException, SQLException {
return getIndexedRows(Package.COLUMN_PACKAGE_DEFINITION, pd.pkey);
}
@Override
public SchemaTable.TableID getTableID() {
return SchemaTable.TableID.PACKAGES;
}
@Override
boolean handleCommand(String[] args, Reader in, TerminalWriter out, TerminalWriter err, boolean isInteractive) throws IllegalArgumentException, SQLException, IOException {
String command=args[0];
if(command.equalsIgnoreCase(AOSHCommand.ADD_PACKAGE)) {
if(AOSH.checkParamCount(AOSHCommand.ADD_PACKAGE, args, 3, err)) {
try {
out.println(
connector.getSimpleAOClient().addPackage(
args[1],
AOSH.parseAccountingCode(args[2], "business"),
AOSH.parseInt(args[3], "package_definition")
)
);
out.flush();
} catch(IllegalArgumentException iae) {
err.print("aosh: "+AOSHCommand.ADD_PACKAGE+": ");
err.println(iae.getMessage());
err.flush();
}
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.CHECK_PACKAGE_NAME)) {
if(AOSH.checkParamCount(AOSHCommand.CHECK_PACKAGE_NAME, args, 1, err)) {
try {
SimpleAOClient.checkPackageName(args[1]);
out.println("true");
} catch(IllegalArgumentException iae) {
out.print("aosh: "+AOSHCommand.CHECK_PACKAGE_NAME+": ");
out.println(iae.getMessage());
}
out.flush();
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.DISABLE_PACKAGE)) {
if(AOSH.checkParamCount(AOSHCommand.DISABLE_PACKAGE, args, 2, err)) {
out.println(
connector.getSimpleAOClient().disablePackage(
args[1],
args[2]
)
);
out.flush();
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.ENABLE_PACKAGE)) {
if(AOSH.checkParamCount(AOSHCommand.ENABLE_PACKAGE, args, 1, err)) {
connector.getSimpleAOClient().enablePackage(args[1]);
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.GENERATE_PACKAGE_NAME)) {
if(AOSH.checkParamCount(AOSHCommand.GENERATE_PACKAGE_NAME, args, 1, err)) {
out.println(connector.getSimpleAOClient().generatePackageName(args[1]));
out.flush();
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.IS_PACKAGE_NAME_AVAILABLE)) {
if(AOSH.checkParamCount(AOSHCommand.IS_PACKAGE_NAME_AVAILABLE, args, 1, err)) {
try {
out.println(connector.getSimpleAOClient().isPackageNameAvailable(args[1]));
out.flush();
} catch(IllegalArgumentException iae) {
err.print("aosh: "+AOSHCommand.IS_PACKAGE_NAME_AVAILABLE+": ");
err.println(iae.getMessage());
err.flush();
}
}
return true;
} else return false;
}
public boolean isPackageNameAvailable(String packageName) throws SQLException, IOException {
if(!Package.isValidPackageName(packageName)) throw new SQLException("Invalid package name: "+packageName);
return connector.requestBooleanQuery(true, AOServProtocol.CommandID.IS_PACKAGE_NAME_AVAILABLE, packageName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy