Using the PIA

This manual describes how to run and configure the Platform for Information Applications (PIA). Developers intending to create applications should also consult the Author's Guide.

(For probelms, check the troubleshooting guide.)

Topics covered include:

For information on installing the PIA and developing applications, see the PIA Document List.


Operating Environment

You need the following software to run the PIA:

Running the PIA

The PIA Start-up Scripts

The pia command is actually a start-up script which attempts to locate the PIA's install directory, and to set up some necessary environment variables.

It is also possible to start the PIA directly from the Java runtime with the command:

java org.risource.pia.Pia option...

The PIA Command Line

pia [option]... [property=value]... filename?

The PIA's command-line options are:

-version
Print out the PIA's version number and exit.
-d
Run the PIA in ``debugging'' mode.
-v
Run the PIA with more verbose messages.
-verbosity number
Explicitly set the PIA's ``verbosity'' level. Default is 0.
-verb number
Alias for -verbosity
-home directory
Set the PIA's ``home directory'', which is where it looks for tagsets, Java class files, and other defaults. This should be the directory in which the PIA was installed on your system.
-port number
The port the PIA will listen on. Default is 8888.
-p number
Alias for -port
-vport number
The PIA's virtual port, which it reports to the browser. This can be different from the real port on which it is listening for requests, which allows another web server such as Apache to redirect selected requests to a PIA. The default is whatever -port specifies, or 8888.
-rport number
The PIA's real port, on which it listens for requests. The default is whatever -port specifies, or 8888.
-root directory
The PIA's real root directory. The default is $HOME/.pia on a Unix machine.
-vroot directory
The PIA's real root directory. The default is PIA_HOME.
-host name
The PIA's host name.
-config file
The name of the per-directory configuration file. The default is _subsite.xcf; setting this to "" will prevent the PIA from looking at configuration files.
-site file
The complete pathname of the PIA's top-level site configuration file. If a site configuration file is specified, the per-directory configuration file in the root (only) will be ignored.

The filename parameter supplied on the command line may specify either an ordinary file, in which case it is used as the name of the site configuration file, or a directory, in which case it is used as the real root, and no virtual root will be used.

Parameters specified on the command line override anything specified in the PIA's top-level configuration file, which in turn overrides anything specified in the environment variables.

The PIA's Environment Variables

The PIA uses the following environment variables:

PIA_HOME
Specifies the directory in which the PIA is installed. The PIA's start-up script attempts to set this based on the pathname with which it is invoked.
PIA_ROOT
Specifies the real root directory of the PIA. The PIA's start-up script sets this to $HOME/.pia on a Unix machine. On Windows, the default directory is c:\PIAUSERS\username (if a username is not available nobody is used).

Using the PIA

The PIA acts as a Web server. Assuming you have gotten the PIA to run in its default configuration, you should now be able to browse to http://localhost:8888/ in order to access the PIA's own web pages. If the default configuration is different and you have run the PIA from a command line, it will have printed out a line like:

  Point your browser to <URL: http://blackroot.crc.ricoh.com:8888>

after initializing, and you can cut-and-paste the URL on that line into your browser and go from there.

There are some applications--such as a browser proxy and browsing-history system--which require that your browser use the PIA as a proxy. This enables the PIA to process any incoming and outgoing pages as you would like. See the Proxie for more details.

The list of available applications and their descriptions can be found in the Application Guide.

Processing Documents

If you want to use the pia as a XML-to-XML processor---reading and writing XML files using active tags, no web ports involved---you can use the command process [filename], which sends the converted XML directly to the console (standard output). The command syntax is:

process [option]... input_filename

The command-line options are:

-e
Do not define standard entities.
-h
Print a help string.
-o filename
Specify output file.
-p
Build a parse tree (which is output as a serialized Java object)
-t tagset-name
Specify tagset (default xhtml).
-s
Silent. Non-fatal error messages are suppressed.
-q
Quiet. Warnings and informational messages are suppressed.
-v
Verbose. Additional informational messages are output.
-d
Debugging. Information is output which may be of use for debugging the interpreter.

=== this section needs more work ===

Configuring the PIA

When the PIA starts, it looks for either a configuration file or a ``root'' directory (which should contain a configuration file). The PIA will look for its top-level configuration file in the following places:

  1. The site configuration file specified on the command line.
  2. The per-directory configuration file in the PIA's root directory.
  3. The ``virtual root'' directory if one is specified. If not specified, the default virtual root is the PIA's ``home directory,'' PIA_HOME

The default configuration file name is _subsite.xcf; this can be changed with the -config command-line option or in the top-level configuration file. Any directory may contain a configuration file with the specified name, except that the configuration file in the root is ignored if a separate top-level configuration file is specified.

Once a configuration file is found, all of the PIA's configuration information is loaded from it -- where to look for active pages, which ones to start up immeditely in the background (such as broswer-proxies), what ports, filename-extension mappings, and tagsets to use, and so forth... even the path of the root directory can appear there. Several sample configuration files can be found in the directory $PIA_HOME/Config/Site/.

If you change any configuration options (for example, by editing a _subsite.xcf file or renaming a tagset file), you should re-start the PIA to ensure that the server knows about those changes. The results may be very confusing otherwise.

=== this section needs LOTS more work === In particular, it needs a list of configuration options.

Updating the PIA

The PIA is maintained using the CVS version control system, and a public CVS repository is available on RiSource.org. See www.risource.org/PIA/cvs.shtml for more information, including how to log in to the anonymous CVS server.

CVS version control information is included in the tar file you used for installation; once you have logged in (which you only need to do once) all you have to do in order to update your copy of the PIA to the latest version is:

  cd $PIA_HOME
  cvs update -d -P

The CVS repository is updated more frequently than the tar archive -- essentially whenever a developer feels that the portion of the PIA they have been working on is stable enough for others to try.

Questions, Problems, or Comments

You can check for known bugs by going to http://www.risource.org/PIA/

Questions, problems and comments should be directed to PIA-bugs@risource.org.


Copyright © 1999 Ricoh Innovations, Inc.. Open Source at <RiSource.org/PIA>.
$Id: using.html,v 1.5 2001-01-11 23:36:47 steve Exp $