Difference between revisions of "The CTP Module"

From MircWiki
Jump to navigation Jump to search
Line 24: Line 24:
  
 
==CTP Startup==
 
==CTP Startup==
 +
CTP is a framework for pipelines and plugins.
 +
* A pipeline is an ordered sequence of processing stages. Data objects enter a pipeline at the head end and encounter the stages in sequence.
 +
* A pipeline stage performs some task on a data object when it arrives at the stage as it flows down the pipe.
 +
* A plugin is a module that adds capability to the program outside the scope of a pipeline.
 +
 +
CTP includes a servlet container to provide a user interface for configuring certain features and for accessing data.
 +
 +
CTP is installed using the <b><tt>CTP-installer.jar</tt></b> program that is created when CTP is built. See [[Setting Up a MIRC Development Environment]] for information on building CTP. The installer creates a folder called <b><tt>CTP</tt></b> and puts all the necesssary files and subdirectories in it.
 +
 +
CTP is configured by a single XML file. CTP imposes no limits on the number of pipelines or plugins that may be configured or on the number of stages that may be configured in a single pipe. The structure of the configuration file is described in detail in [[CTP-The RSNA Clinical Trial Processor]].
 +
 +
CTP can be run manually through the <b><tt>Launcher.jar</tt></b> program, or it can be run as a Windows or Linux service. See [[Running CTP as a Windows Service]] or [[Running CTP as a Linux Service]] for details.
 +
 +
The <b><tt>Launcher.jar</tt></b> program is located in the <b><tt>CTP</tt></b> directory. All the modules required for running CTP are located in the <b><tt>CTP/libraries</tt></b> directory or one of its subdirectories. The manifest in the <b><tt>CTP.jar</tt></b> module includes a classpath listing only the <b><tt>util.jar</tt></b> module. When CTP starts, it calls <b><tt>ClasspathUtil.addJars</tt></b> to add all the jar files in the libraries directory tree to the classpath. By constructing the classpath in this way, developers can add pipeline stages and plugins into CTP without having to modify the CTP build itself.
  
 
==<b><tt>org.rsna.ctp</tt></b>==
 
==<b><tt>org.rsna.ctp</tt></b>==

Revision as of 12:36, 24 December 2012

UNDER CONSTRUCTION

The CTP module (CTP.jar) contains the code of the CTP application, including all the standard stages and plugins. This article describes the theory of operation of the packages contained in the CTP module. The CTP module is used in CTP, TFS, CTPClient, ISN, and other MIRC software. The intended audience for this article is software engineers extending or maintaining any of that software.

See Setting Up a MIRC Development Environment for information on obtaining and building the VTP module.

The CTP module contains five packages:

  • org.rsna.ctp contains the CTP main class and the Configuration singleton class.
  • org.rsna.ctp.objects contains classes that implement the four types of objects that CTP can process.
  • org.rsna.ctp.pipeline contains the Pipeline class, interfaces that define the types of pipeline stages, and a set of abstract classes that provide starting points for developing each pipeline stage type.
  • org.rsna.ctp.plugin contains the interface that defines a plugin and an abstract class that provides a starting point for developing a plugin.
  • org.rsna.ctp.servlets contains the standard servlets used in CTP.
  • org.rsna.ctp.stdstages contains the standard pipeline stages included in CTP.

Each of these packages will be described in the sections below, with example code where necessary to illustrate the theory of operation. It will be helpful to get the source code and build it so you can reference the Javadocs as you go along.

In addition to the packages listed above, the source code tree also contains packages that are part of helper applications used in CTP:

  • org.rsna.installer contains the the installer program for CTP, TFS, and ISN.
  • org.rsna.launcher contains the program used to manually launch CTP TFS, and ISN.
  • org.rsna.runner contains the program that can be used in a batch job to start or stop CTP, TFS, and ISN. This program is typically used to implement a CTP Linux service.

1 CTP Startup

CTP is a framework for pipelines and plugins.

  • A pipeline is an ordered sequence of processing stages. Data objects enter a pipeline at the head end and encounter the stages in sequence.
  • A pipeline stage performs some task on a data object when it arrives at the stage as it flows down the pipe.
  • A plugin is a module that adds capability to the program outside the scope of a pipeline.

CTP includes a servlet container to provide a user interface for configuring certain features and for accessing data.

CTP is installed using the CTP-installer.jar program that is created when CTP is built. See Setting Up a MIRC Development Environment for information on building CTP. The installer creates a folder called CTP and puts all the necesssary files and subdirectories in it.

CTP is configured by a single XML file. CTP imposes no limits on the number of pipelines or plugins that may be configured or on the number of stages that may be configured in a single pipe. The structure of the configuration file is described in detail in CTP-The RSNA Clinical Trial Processor.

CTP can be run manually through the Launcher.jar program, or it can be run as a Windows or Linux service. See Running CTP as a Windows Service or Running CTP as a Linux Service for details.

The Launcher.jar program is located in the CTP directory. All the modules required for running CTP are located in the CTP/libraries directory or one of its subdirectories. The manifest in the CTP.jar module includes a classpath listing only the util.jar module. When CTP starts, it calls ClasspathUtil.addJars to add all the jar files in the libraries directory tree to the classpath. By constructing the classpath in this way, developers can add pipeline stages and plugins into CTP without having to modify the CTP build itself.

2 org.rsna.ctp

3 org.rsna.ctp.objects

4 org.rsna.ctp.pipeline

5 org.rsna.ctp.plugin

6 org.rsna.ctp.servlets

7 org.rsna.ctp.stdstages

8 Files

8.1 examples

8.2 pages

8.3 profiles

8.4 scripts

8.5 ROOT

8.6 linux

8.7 windows

9 Resources