net.sf.saxon.trans
Class CommandLineOptions

java.lang.Object
  extended by net.sf.saxon.trans.CommandLineOptions

public class CommandLineOptions
extends Object

This is a helper class for classes such as net.sf.saxon.Transform and net.sf.saxon.Query that process command line options


Field Summary
static int TYPE_BOOLEAN
           
static int TYPE_CLASSNAME
           
static int TYPE_DATETIME
           
static int TYPE_ENUMERATION
           
static int TYPE_FILENAME
           
static int TYPE_FILENAME_LIST
           
static int TYPE_INTEGER
           
static int TYPE_INTEGER_PAIR
           
static int TYPE_QNAME
           
static int TYPE_STRING
           
static int VALUE_PROHIBITED
           
static int VALUE_REQUIRED
           
 
Constructor Summary
CommandLineOptions()
           
 
Method Summary
 void addRecognizedOption(String option, int optionProperties, String helpText)
          Set the permitted options.
 void applyToConfiguration(Configuration config)
          Apply options to the Configuration
 boolean definesParameterValues()
          Test whether there is any keyword=value option present
 String displayPermittedOptions()
          Display the list the permitted options
 String getOptionValue(String option)
          Get the value of a named option.
 List<String> getPositionalOptions()
          Get the options specified positionally, that is, without a leading "-"
static void loadAdditionalSchemas(Configuration config, String additionalSchemas)
           
static Object loadDocuments(String sourceFileName, boolean useURLs, Configuration config, boolean useSAXSource)
          Load a document, or all the documents in a directory, given a filename or URL
 void setActualOptions(String[] args)
          Set the actual options
 void setParams(Configuration config, Controller controller, DynamicQueryContext qcontext, Properties outputProperties)
          Apply requested parameters to a controller, a query context, or a set of output properties, as appropriate
 void setPermittedValues(String option, String[] values, String defaultValue)
          Set the permitted values for an option
static String showExecutionTime(long millisecs)
           
 boolean testIfSchemaAware()
          Prescan the command line arguments to see if any of them imply use of a schema-aware processor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TYPE_BOOLEAN

public static final int TYPE_BOOLEAN
See Also:
Constant Field Values

TYPE_FILENAME

public static final int TYPE_FILENAME
See Also:
Constant Field Values

TYPE_CLASSNAME

public static final int TYPE_CLASSNAME
See Also:
Constant Field Values

TYPE_ENUMERATION

public static final int TYPE_ENUMERATION
See Also:
Constant Field Values

TYPE_INTEGER

public static final int TYPE_INTEGER
See Also:
Constant Field Values

TYPE_QNAME

public static final int TYPE_QNAME
See Also:
Constant Field Values

TYPE_FILENAME_LIST

public static final int TYPE_FILENAME_LIST
See Also:
Constant Field Values

TYPE_DATETIME

public static final int TYPE_DATETIME
See Also:
Constant Field Values

TYPE_STRING

public static final int TYPE_STRING
See Also:
Constant Field Values

TYPE_INTEGER_PAIR

public static final int TYPE_INTEGER_PAIR
See Also:
Constant Field Values

VALUE_REQUIRED

public static final int VALUE_REQUIRED
See Also:
Constant Field Values

VALUE_PROHIBITED

public static final int VALUE_PROHIBITED
See Also:
Constant Field Values
Constructor Detail

CommandLineOptions

public CommandLineOptions()
Method Detail

addRecognizedOption

public void addRecognizedOption(String option,
                                int optionProperties,
                                String helpText)
Set the permitted options.

Parameters:
option - A permitted option.

setPermittedValues

public void setPermittedValues(String option,
                               String[] values,
                               String defaultValue)
Set the permitted values for an option

Parameters:
option - the option keyword
values - the set of permitted values
defaultValue - the default value if the option is supplied but no value is given. May be null if no default is defined.

setActualOptions

public void setActualOptions(String[] args)
                      throws XPathException
Set the actual options

Throws:
XPathException

definesParameterValues

public boolean definesParameterValues()
Test whether there is any keyword=value option present


testIfSchemaAware

public boolean testIfSchemaAware()
Prescan the command line arguments to see if any of them imply use of a schema-aware processor

Returns:
true if a schema-aware processor is needed

applyToConfiguration

public void applyToConfiguration(Configuration config)
                          throws TransformerException
Apply options to the Configuration

Parameters:
config - the Configuration
Throws:
TransformerException

displayPermittedOptions

public String displayPermittedOptions()
Display the list the permitted options

Returns:
the list of permitted options, as a string

getOptionValue

public String getOptionValue(String option)
Get the value of a named option. Returns null if the option was not present on the command line. Returns "" if the option was present but with no value ("-x" or "-x:").

Parameters:
option - the option keyword
Returns:
the option value, or null if not specified.

getPositionalOptions

public List<String> getPositionalOptions()
Get the options specified positionally, that is, without a leading "-"


setParams

public void setParams(Configuration config,
                      Controller controller,
                      DynamicQueryContext qcontext,
                      Properties outputProperties)
               throws TransformerException
Apply requested parameters to a controller, a query context, or a set of output properties, as appropriate

Parameters:
controller - The controller to be used for a transformation. May be null.
qcontext - The dynamic query context. May be null.
outputProperties - the serialization properties. May be null.
Throws:
TransformerException

loadDocuments

public static Object loadDocuments(String sourceFileName,
                                   boolean useURLs,
                                   Configuration config,
                                   boolean useSAXSource)
                            throws TransformerException
Load a document, or all the documents in a directory, given a filename or URL

Parameters:
sourceFileName - the name of the source file or directory
useURLs - true if the filename argument is to be treated as a URI
config - the Saxon configuration
useSAXSource - true if the method should use a SAXSource rather than a StreamSource
Returns:
if sourceFileName represents a single source document, return a Source object representing that document. If sourceFileName represents a directory, return a List containing multiple Source objects, one for each file in the directory.
Throws:
TransformerException

loadAdditionalSchemas

public static void loadAdditionalSchemas(Configuration config,
                                         String additionalSchemas)
                                  throws TransformerException
Throws:
TransformerException

showExecutionTime

public static String showExecutionTime(long millisecs)


Copyright (c) 2004-2010 Saxonica Limited. All rights reserved.