com.aoindustries.aoserv.client.CvsRepositoryTable 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) 2002-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.TerminalWriter;
import java.io.IOException;
import java.io.Reader;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* @see CvsRepository
*
* @author AO Industries, Inc.
*/
final public class CvsRepositoryTable extends CachedTableIntegerKey {
CvsRepositoryTable(AOServConnector connector) {
super(connector, CvsRepository.class);
}
private static final OrderBy[] defaultOrderBy = {
new OrderBy(CvsRepository.COLUMN_LINUX_SERVER_ACCOUNT_name+'.'+LinuxServerAccount.COLUMN_AO_SERVER_name+'.'+AOServer.COLUMN_HOSTNAME_name, ASCENDING),
new OrderBy(CvsRepository.COLUMN_PATH_name, ASCENDING)
};
@Override
OrderBy[] getDefaultOrderBy() {
return defaultOrderBy;
}
int addCvsRepository(
AOServer ao,
String path,
LinuxServerAccount lsa,
LinuxServerGroup lsg,
long mode
) throws IOException, SQLException {
return connector.requestIntQueryIL(
true,
AOServProtocol.CommandID.ADD,
SchemaTable.TableID.CVS_REPOSITORIES,
ao.pkey,
path,
lsa.pkey,
lsg.pkey,
mode
);
}
@Override
public CvsRepository get(int pkey) throws IOException, SQLException {
return getUniqueRow(CvsRepository.COLUMN_PKEY, pkey);
}
/**
* Gets one CvsRepository
from the database.
*/
CvsRepository getCvsRepository(AOServer aoServer, String path) throws IOException, SQLException {
int aoPKey=aoServer.pkey;
List cached=getRows();
int size=cached.size();
for(int c=0;c getCvsRepositories(AOServer aoServer) throws IOException, SQLException {
int aoPKey=aoServer.pkey;
List cached=getRows();
int size=cached.size();
List matches=new ArrayList<>(size);
for(int c=0;c getCvsRepositories(Package pk) throws IOException, SQLException {
String pkname=pk.name;
List cached=getRows();
int size=cached.size();
List matches=new ArrayList<>(size);
for(int c=0;c getCvsRepositories(LinuxServerAccount lsa) throws IOException, SQLException {
return getIndexedRows(CvsRepository.COLUMN_LINUX_SERVER_ACCOUNT, lsa.pkey);
}
@Override
public SchemaTable.TableID getTableID() {
return SchemaTable.TableID.CVS_REPOSITORIES;
}
public List getValidPrefixes() throws IOException, SQLException {
List prefixes=new ArrayList<>();
// Home directories
for(LinuxServerAccount lsa : connector.getLinuxServerAccounts().getRows()) {
if(lsa.getLinuxAccount().getType().getName().equals(LinuxAccountType.USER) && !lsa.isDisabled()) {
String dir=lsa.getHome();
if(!prefixes.contains(dir)) prefixes.add(dir);
}
}
// HttpdSites
for(HttpdSite site : connector.getHttpdSites().getRows()) {
String dir=site.getInstallDirectory();
if(!site.isDisabled() && !prefixes.contains(dir)) prefixes.add(dir);
}
// HttpdSharedTomcats
for(HttpdSharedTomcat tomcat : connector.getHttpdSharedTomcats().getRows()) {
String dir=tomcat.getAOServer().getServer().getOperatingSystemVersion().getHttpdSharedTomcatsDirectory()+'/'+tomcat.getName();
if(!tomcat.isDisabled() && !prefixes.contains(dir)) prefixes.add(dir);
}
// The global directory
if(!prefixes.contains("/var/cvs")) prefixes.add("/var/cvs");
// Sort and return
Collections.sort(prefixes);
return prefixes;
}
@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_CVS_REPOSITORY)) {
if(AOSH.checkParamCount(AOSHCommand.ADD_CVS_REPOSITORY, args, 5, err)) {
int pkey=connector.getSimpleAOClient().addCvsRepository(
args[1],
args[2],
args[3],
args[4],
AOSH.parseOctalLong(args[5], "mode")
);
out.println(pkey);
out.flush();
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.DISABLE_CVS_REPOSITORY)) {
if(AOSH.checkParamCount(AOSHCommand.DISABLE_CVS_REPOSITORY, args, 2, err)) {
out.println(
connector.getSimpleAOClient().disableCvsRepository(
AOSH.parseInt(args[1], "pkey"),
args[2]
)
);
out.flush();
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.ENABLE_CVS_REPOSITORY)) {
if(AOSH.checkParamCount(AOSHCommand.ENABLE_CVS_REPOSITORY, args, 1, err)) {
connector.getSimpleAOClient().enableCvsRepository(AOSH.parseInt(args[1], "pkey"));
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.REMOVE_CVS_REPOSITORY)) {
if(AOSH.checkParamCount(AOSHCommand.ADD_CVS_REPOSITORY, args, 2, err)) {
connector.getSimpleAOClient().removeCvsRepository(
args[1],
args[2]
);
}
return true;
} else if(command.equalsIgnoreCase(AOSHCommand.SET_CVS_REPOSITORY_MODE)) {
if(AOSH.checkParamCount(AOSHCommand.SET_CVS_REPOSITORY_MODE, args, 3, err)) {
connector.getSimpleAOClient().setCvsRepositoryMode(
args[1],
args[2],
AOSH.parseOctalLong(args[3], "mode")
);
}
return true;
}
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy