edu.sdsc.inca
Class DepotClient

java.lang.Object
  extended byjava.lang.Thread
      extended byedu.sdsc.inca.Component
          extended byedu.sdsc.inca.Client
              extended byedu.sdsc.inca.DepotClient
All Implemented Interfaces:
java.lang.Runnable

public class DepotClient
extends Client

This class allows access to the services provided by an Inca Depot. Along with defining an API that understands the Depot protocol, it defines a main method that allows access to an Depot via a telnet-style interface.


Field Summary
static java.lang.String CRLF
           
static java.lang.String DEPOT_CLIENT_OPTS
           
protected static org.apache.log4j.Logger logger
           
 
Fields inherited from class edu.sdsc.inca.Client
CLIENT_OPTS, host, port, reader, socket, writer
 
Fields inherited from class edu.sdsc.inca.Component
authenticate, cert, certPath, COMPONENT_OPTS, key, keyPath, logFile, password, trusted, trustedPath
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
DepotClient()
           
 
Method Summary
 void insertReport(java.lang.String resource, java.lang.String reportXml, java.lang.String sysusage, java.lang.String stderr, java.lang.String context)
          Asks the Depot to insert a new report into the database.
static void main(java.lang.String[] args)
          A simple main method for exercising the DepotClient.
protected  java.lang.String[] queryDialog(java.lang.String command, java.lang.String data)
          An internal method that handles the functionality common to several query methods.
 java.lang.String[] queryGuids()
          Asks the Depot for all the suite guids in its database.
 java.lang.String[] queryHql(java.lang.String select)
          Asks the Depot to run an HQL query; returns the result.
 edu.sdsc.inca.queryResult.ReportDetailsDocument queryInstance(long instanceId, long configId)
          Asks the Depot for the ReportDetailsDocument for a specified instance.
 edu.sdsc.inca.queryResult.ReportDetailsDocument[] querySeries(long configId)
          Asks the Depot for a ReportDetailsDocuments for each instances of a specified series.
 java.lang.String[] querySuite(java.lang.String suiteGuid)
          Asks the Depot for XML for the latest instance of each series from a specified suite.
 void setConfiguration(java.util.Properties config)
          A convenience function for setting multiple configuration properties at once.
 java.lang.String updateSuite(java.lang.String suiteXml)
          Asks the Depot to add XML for a suite to its database, replacing any existing XML for the same suite.
 
Methods inherited from class edu.sdsc.inca.Client
close, commandGetLog, commandLogConfig, commandPing, connect, dialog, finalize, getHost, getPort, getUri, isConnected, read, setHost, setPort, setServer, telnetDialog, write
 
Methods inherited from class edu.sdsc.inca.Component
addTrustedCert, configComponent, createSocket, getAuthenticate, getCertificate, getCertificatePath, getKey, getKeyPath, getLogFile, getPassword, getTrustedCertificates, getTrustedPath, openResourceStream, readCredentials, readVersion, setAuthenticate, setCertificatePath, setKeyPath, setLogFile, setPassword, setTrustedPath
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, run, setContextClassLoader, setDaemon, setName, setPriority, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CRLF

public static final java.lang.String CRLF
See Also:
Constant Field Values

DEPOT_CLIENT_OPTS

public static final java.lang.String DEPOT_CLIENT_OPTS

logger

protected static final org.apache.log4j.Logger logger
Constructor Detail

DepotClient

public DepotClient()
Method Detail

setConfiguration

public void setConfiguration(java.util.Properties config)
                      throws ConfigurationException
A convenience function for setting multiple configuration properties at once. In addition to the keys recognized by the superclass, recognizes: "depot", the specification of the Depot.

Overrides:
setConfiguration in class Client
Parameters:
config - contains client configuration values
Throws:
ConfigurationException - on a faulty configuration property value

insertReport

public void insertReport(java.lang.String resource,
                         java.lang.String reportXml,
                         java.lang.String sysusage,
                         java.lang.String stderr,
                         java.lang.String context)
                  throws java.io.IOException,
                         ProtocolException
Asks the Depot to insert a new report into the database.

Parameters:
resource - the name of the resource that generated the report
reportXml - the XML for the report itself (see report schema)
sysusage - system usage information
stderr - optional stderr output from the reporter
context - execution context for the reporter
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message

queryInstance

public edu.sdsc.inca.queryResult.ReportDetailsDocument queryInstance(long instanceId,
                                                                     long configId)
                                                              throws java.io.IOException,
                                                                     ProtocolException,
                                                                     org.apache.xmlbeans.XmlException
Asks the Depot for the ReportDetailsDocument for a specified instance.

Parameters:
instanceId - the id of the instance to retrieve
configId - the id of the related series config to retrieve
Returns:
the ReportDetailsDocument for the instance, null if none
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message
org.apache.xmlbeans.XmlException - if the Depot response cannot be parsed

querySeries

public edu.sdsc.inca.queryResult.ReportDetailsDocument[] querySeries(long configId)
                                                              throws java.io.IOException,
                                                                     ProtocolException,
                                                                     org.apache.xmlbeans.XmlException
Asks the Depot for a ReportDetailsDocuments for each instances of a specified series.

Parameters:
configId - the id of the desired series config
Returns:
an array of ReportDetailsDocuments, one for each series instance
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message
org.apache.xmlbeans.XmlException - if the Depot response cannot be parsed

queryGuids

public java.lang.String[] queryGuids()
                              throws java.io.IOException,
                                     ProtocolException
Asks the Depot for all the suite guids in its database.

Returns:
an array of guids
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message

queryHql

public java.lang.String[] queryHql(java.lang.String select)
                            throws java.io.IOException,
                                   ProtocolException
Asks the Depot to run an HQL query; returns the result.

Parameters:
select - the HQL select query
Returns:
an array of strings, the result of the query
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message

querySuite

public java.lang.String[] querySuite(java.lang.String suiteGuid)
                              throws java.io.IOException,
                                     ProtocolException
Asks the Depot for XML for the latest instance of each series from a specified suite.

Parameters:
suiteGuid - the guid from the suite XML
Returns:
an array of XML strings representing each instance in the suite
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message

updateSuite

public java.lang.String updateSuite(java.lang.String suiteXml)
                             throws java.io.IOException,
                                    ProtocolException
Asks the Depot to add XML for a suite to its database, replacing any existing XML for the same suite.

Parameters:
suiteXml - XML representing the suite to be saved
Returns:
the reply message data
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message

queryDialog

protected java.lang.String[] queryDialog(java.lang.String command,
                                         java.lang.String data)
                                  throws java.io.IOException,
                                         ProtocolException
An internal method that handles the functionality common to several query methods.

Parameters:
command - the command to send the Depot
data - the data to accompany the command
Returns:
an array of query response strings sent by the Depot
Throws:
java.io.IOException - on read/write error
ProtocolException - on an invalid message

main

public static void main(java.lang.String[] args)
A simple main method for exercising the DepotClient.
 usage: java inca.DepotClient
-a|--auth boolean Authenticated (secure) connection? -c|--cert path Path to the authentication certificate -D|--depot str Depot specification; host:port -h|--help null Print help/usage -i|--init path Path to properties file -k|--key path Path to the authentication key -P|--password str Specify how to obtain encryption password -t|--trusted path Path to authentication trusted certificate dir -V|--version null Display program version

Each of these properties, other than --init, can also be specified in the initialization file or in system properties defined via the -D switch. In each of these cases, the configuration name must be prefixed with "inca.depot.", e.g., use "inca.depot.cert" to specify the cert value. Command line arguments override any properties specified in this fashion. main allows the user to communicate with the Depot via a telnet-style interface. Supported values for the --password argument are: "no" or "false" (no encryption); "yes", "true", or "stdin:prompt" (read password from stdin after optionally prompting); "pass:text" (specify the password directly--should only be used for testing and, possibly, in the init file).

Parameters:
args - command line arguments, as above.