Brief instruction JAMS development

From ILMS-Wiki
Revision as of 13:17, 18 May 2018 by Nsk (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Contents

Introduction

The following instruction describes the installation of a JAMS/J2000 development environment using Tortoise (SVN client) and NetBeans (Java-IDE). Of course, alternative software can be used as well.

This instruction is intended for users who want to extend JAMS or who just like to know what exactly happens in JAMS and/or the process components. Moreover, setting up the development environment helps to find and eliminate error sources.

Installation of Required Software

  1. Tortoise SVN (http://tortoisesvn.tigris.org)
  2. NetBeans/Java (http://java.sun.com/javase/downloads/netbeans.html)

Preparing the Workspace

Downloading Sources

All sources and scripts of JAMS and its models are managed within a subversion (SVN) repository [1]. Subversion is a software for version management of files and directories [2]. In order to access the JAMS-SVN, a valid SVN account is required. For read-only access the account "guest" with password "guest" can be used. For the installation of a JAMS work environment, first the required directories are created and filled with data from the SVN repository.

  1. create directory for JAMS (the example used below is c:\jams)
  2. create directory for models (the exmaple used below is c:\jamsmodels)
  3. right click on c:\jams -> SVN Checkout and indicate http://svn.geogr.uni-jena.de/svn/jams/trunk as repository URL -> OK
  4. right click on c:\jamsmodels -> SVN Checkout and indicate http://svn.geogr.uni-jena.de/svn/jamsmodels/trunk as repository URL -> OK

URL -> OK

Downloading Data

JAMS-SVN also containts a repository with a number of (test) datasets for various models. Please be aware that the overall amount of data in the modeldata repository might be very large. Only single sub-folders should be downloaded here.

  1. create directory for model data (the example used below is c:\jamsmodeldata)
  2. right click on c:\jamsmodeldata -> SVN Checkout and indicate http://svn.geogr.uni-jena.de/svn/modeldata as repository but don't checkout yet
  3. use the browse button (right of the repository URL) to select your desired data folders (multiple folders can be entered by holding CTRL) -> OK

Directory Structure

As a result, directories for JAMS, JAMS models (and model data) are available after the last step.

In addition to JAVA sources, the JAMS directory contains JAMS binary data and some Ant scripts [3] which can be used to compile JAMS without Netbeans. Moreover, some pre-configured NetBeans projects are in the nbprojects subdirectory which allow an easy installation of a JAMS development environment.

The model directory contains sub-directories with JAVA sources of different model libraries, which include model components required for creating JAMS models. Again, this directory contains a nbprojects folder with pre-configured NetBeans projects.

The data directory contains model definitions and input data for different model applications.

Compiling JAMS and Models

JAMS Binary Packages

Creating a JAMS development environment and manually building JAMS libraries is only required if JAMS or its standard components are supposed to be modified or debugged. If only components of JAMS models are supposed to be modified, the next step is shown in section: Models.

Ant Scripts

In order to create a current version of JAMS libraries, the installation of a development environment is not obligatory. An alternative Ant script can be used via c:\jams\build\build.xml, which centrally carries out the transformation and compilation of all required resources. The prerequisite for this is the installation of Apache Ant, which can be downloaded at http://ant.apache.org/bindownload.cgi.

The creation of JAMS libraries with Ant requires the following procedure:

  1. open command line in the directory c:\jams\build,
  2. call command "ant clean" for deletion of existing JAMS libraries,
  3. call command "ant" for creation of all JAMS libraries.

These steps can also be carried out by executing a batch file via c:\jams\build\build.bat. Finally, a new JAMS binary distribution will be created in c:\jams\jams-bin, containing all necessary system classes and different standard model components.

Creating the Development Environment

JAMS

For JAMS, pre-configured NetBeans projects are already in the SVN repository. To open them, select File -> Open Project... from NetBeans and choose the desired project from c:\jams\nbprojects. Once opened, right-click the project node and select "Build" or "Clean and Build" to clean/build it. The "jams-starter" project is special, as it allows to build the full JAMS binary package and to run JAMS or JUICE. In order to do so, right-click on "jams-starter", choose "Set Configuration" and select your preferred interface, e.g. JUICE. Then, right-click "jams-starter" again and choose "Build" or "Clean and Build". After the build process has finished, right-click "jams-starter" and choose "Run". Please notice that the "jams-starter" build process will create a folder "jams-bin" in the jams folder which includes all required JAMS libraries and the standard components. The "jams-starter.jar" in the "jams-bin" directory can be used to run the chosen interface (e.g. JUICE) without NetBeans. Just either open "jams-starter.jar" or run "java -jar jams-starter.jar" from a command shell.

Models (e.g. J2000)

For J2000, J2000-S and J2000g, pre-configured Netbeans projects are already in the SVN repository. To open them, select File -> Open Project... , choose the desired project from c:\jamsmodels\nbprojects and tick the "Open Required Projects" checkbox. If the "Reference Problems" dialog window pops up upon opening the project, use the "Resolve Problems..." button to specify the storage location of the "jams-api" and "jams-main" projects which are stored in JAMS project folder (e.g. c:\jams\nbprojects). After compiling the project, the results are stored in the "dist" subfolder within the project folder.

For other models without pre-configured projects the following steps are needed to create a new project:

  1. In NetBeans: File -> New Project -> Java Project with Existing Sources
  2. Indicate project name (e.g. J2000) and directory (e.g. c:\nbprojects\J2000)(the compiled classes and the JAR file are stored here) -> Next
  3. Source Package Folder -> Add Folder -> c:\jamsmodels\J2000\src -> OK
  4. Finish import
  5. Include libraries: right click on J2000/Libraries -> Add JAR/Folder... and select the JAMS libraries jams-api.jar and jams-main.jar from c:\jams\lib\lib.
  6. Right click on J2000 -> Clean and Build (Compile project and create J2000.jar in c:\nbprojects\J2000\dist\)

Template for JAMS Components

A component template for NetBeans can be found at c:\jams\template\JAMSComponent.java (adapt as needed!). The integration into NetBeans is done as follows:

  1. Tools -> Templates -> Java -> Add...
  2. Select above-mentioned file -> Add

Afterwards, "JAMSComponent" can be selected file type when creating a new class.

Executing JAMS/J2000

In order to execute JAMS (JAMSLauncher or JUICE) the project jams-starter (c:\jams\nbprojects\jams-starter) is opened as main project (see checkbox in the project open dialog). This project does not contain any JAVA sources but all libraries required for starting JAMS and two start configurations (JAMS launcher and JUICE). You can switch by using the drop-down box in the NetBeans toolbar. The project is started using F6, the start button in the NetBeans toolbar, or the context menu (right click on jams-starter). The arguments given at the start can be modified as follows:

  1. Right click on jams-starter -> Properties -> Run
  2. Under "Arguments" insert the following: -c <complete path of a configuration file> -m <complete path of a model definition file>. A list of valid arguments will be shown in the default output when using the arguments -h or --help.

In the default configuration the JAMS Launcher or JUICE is supposed to be opened. Via File -> Load model... a model can be loaded.

The execution of most models also requires the provision of additional libraries (e.g. J2000.jar and jams-components.jar). Via Edit -> Change settings... in JAMS additional libraries can be indicated which can be used for the model execution. This also includes all libraries which model components might be dependent on. When finishing the JAMS launcher the settings are automatically saved in the system configuration.

Note: After modifying model components the JAR file always has to be re-generated with the components before the execution. (Step 6 in "Installing the Development Environment/Models")!

Please note:

For the functions of 3D visualization (in the JAMS default components MapCreator3D and corresponding class Styled3DMapPane or in the WorldWind Viewer) platform-dependent libraries are required, which are in directory "c:\jams\bin". If those functions are used, the corresponding path with parameter "-Djava.library.path=[Pfad]" has to be entered when starting JAMS/JUICE. In order to do so, the property dialog is opened by jams-starter (right click -> Properties) and under Run the corresponding value is inserted into the field VM Options.

As a result, a corresponding command line string for 64-bit Windows systems could look like this:

java -jar juice-starter.jar -Djava.library.path=c:/jams/bin/win64
Personal tools
In other languages