Developer Guidance
This Document is part of the OpenDCS Software Suite for environmental data acquisition and processing. The project home is: https://github.com/opendcs/opendcs
See INTENT.md at the project home for information on licensing.
Overview
The purpose of this document is to describe how different technologies are used for OpenDCS development. Extra attention is given to testing and using OpenDCS within containers.
The Gradle Build
Basics
OpenDCS now uses gradle to perform builds, test, and deployment/distribution operations.
The simplest way to verify the build is working is to run the following ‘task’:
./gradlew test
Except for the integration tests in integrationtesting/opendcs-tests standard output directories are use for various reports such as Junit or Jacoco. For the integration tests output reports are organized by implementation.
The integration tests are only run if explicitly called out:
./gradlew :testing:opendcs-test:test --info -Popendcs.test.engine=OpenDCS-XML
Warning
DO NOT RUN THESE TESTS AGAINST A PRODUCTION DATABASE. The test engine assumes it has complete control of the database it’s pointed at and given may destroy anything it requires to verify operations.
The option opendcs.test.engine is required and the following values are supported
Value |
Notes |
OpenDCS-XML |
Test operations of the XML database |
OpenDCS-Postgres |
Test operations against the reference Postgres Database. Requires docker installed. |
CWMS-Oracle |
Requires an existing CWMS + CCP Schema setup |
Distribution tasks are used to prepare for release
Task |
Purpose |
|---|---|
:install:distZip |
Creates the application distribution. |
:install:distTar |
Same as above but as tar instead of zip. |
:install:installDist |
Generates and signs release artifacts for upload requires -Dgpg.key.id command line option |
Debugging OpenDCS
To debug any of the test tasks use the stand gradle option of –debug-jvm and attached to port 5005 as appropriate to your environment.
If you have an installation of OpenDCS already it can also be debugged in a similar way. NOTE: this is known to work on linux/mac.
After you have an installation otherwise working start applications with the following:
# For testing dbedit.
DECJ_MAXHEAP="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=<port>" dbedit
# For testing dbedit, but you're trying to figured out an issue during startup.
DECJ_MAXHEAP="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=<port>" dbedit
You can then have your IDE attach to the JVM and it will stop on break points appropriately.
The following workflow can be used:
# <see issue and make tweaks to code>
./gradlew build
cp java/opendcs/build/libs/opendcs-<version>.jar <your current $DCSTOOL_HOME>/bin
DECJ_MAXHEAP="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=<port>" <app>
And repeat as required. This works for the GUI and non gui applications.
Debugging OpenDCS from the build
There is a runApp task that will allow you to run an OpenDCS application from the build environment. the “stage” directory is used as DCSTOOL_HOME and DCSTOOL_USERDIR is the same default as an install.
Warning
By using the default behavior you MAY be connecting to a live system. Consider that while manipulating any data.
If this is a major concern you should set the DCSTOOL_USERDIR for the session gradle runs in to point to a directory that only contains profiles that connect to test systems.
All of the options above can be in any combination.
The logs are set to the highest debug level and printed to stdout. You may need to add the gradle option –info to see the log information.
Note
On linux, ctrl-c of the run task will terminate the application. This does not appear to work correctly on Windows and you will likely need to close the application windows manually.
MBeans
We have started implementing JMX MBeans for components within OpenDCS. You can connect to the process using the jconsole application provided with your JDK to view the information.
CWMS
MBeans
The cwms connection pool implements the ConnectionPool Mbean. This MBean provides a view into the connections outstanding and available. Additional each Connection returned implements a WrappedConnectionMBean that shows the current lifetime and can show where the connection pool was opened from.
Connection pool
CwmsDb using a connection pool mechanism. Leaks are a concern, if you working against a CWMS system you can turn pool tracing on for an application with the following java flags:
DECJ_MAXHEAP="-Dopendcs.connection.pool.trace=true" routsched ...
With tracing on the WrappedConnectionMBean will show where a connection was created from. This useful for identifing what code to fix for connection pool leaks.
Authentication Sources
Implementation
If the simple file based, or environment variable based credential sources are insufficient it is possible to create and load a new source without additional configuration.
To do so implement the following interfaces:
org.opendcs.spi.authentication.AuthSource
org.opendcs.spi.authentication.AuthSourceProvider
AuthSource handles actually creating the credentials properties. All current implementations provide “username” and “password” as that is the only need.
AuthSourceProvider gives the source implementation a name and takes the configuration string from the user.properties or decodes.properties and instantiates the AuthSource instance.
You must also add a file:
META-INF/services/org.opendcs.spi.authentication.AuthSourceProvider
that contains the fully qualified class name of your new AuthSource.
Usage
To acquire the configured credentials the following can be used:
...
String authFileName = DecodesSettings.instance().DbAuthFile;
try
{
Properties credentials = null;
credentials = AuthSourceService.getFromString(authFileName)
.getCredentials();
// ... work using the credentials
}
catch(AuthException ex)
{
String msg = "Cannot read username and password from '"
+ authFileName + "' (run setDecodesUser first): " + ex;
System.err.println(msg);
Logger.instance().log(Logger.E_FATAL, msg);
throw new DatabaseConnectException(msg);
}
...
PropertyProvider
The PropertyProvider system as added to support EnvExpander retrieving values from sources other than the java System.properties. The mechanism uses the java ServiceProvider mechanism so downstream users can implement any custom sources they need.
To implement a custom property provider the following class org.opendcs.spi.properties.PropertyValueProvider.
1package org.opendcs.spi.properties;
2
3import java.io.IOException;
4import java.util.Map;
5import java.util.Properties;
6
7public interface PropertyValueProvider {
8 /**
9 * Determine if a given string can be processed by this provider
10 * @param value
11 * @return
12 */
13 public boolean canProcess(String value);
14
15 /**
16 * Retrieve property from the provided property or environment map.
17 *
18 * It is permissible for a given implemtation to completely ignore either the properties or
19 * environment map. However, it should be made very clear where data is coming from
20 *
21 * @param value actual value to decipher.
22 *
23 * @param properties Properties to use for the given request.
24 * @param environment Environment map to use for the given request.
25 *
26 * @return the real value, or null if not found.
27 */
28 public String processValue(String value, Properties properties, Map<String,String> env) throws IOException;
29}
Here is the EnvironmentPropertyValueProvider for an example:
1package org.opendcs.utils.properties;
2
3import java.util.Map;
4import java.util.Properties;
5
6import org.opendcs.spi.properties.PropertyValueProvider;
7
8/**
9* Get the real value of a property from the environment.
10*/
11public class EnvironmentPropertyValueProvider implements PropertyValueProvider
12{
13 private static final String prefix = "env.";
14
15 @Override
16 public boolean canProcess(String value)
17 {
18 return value.toLowerCase().startsWith(prefix);
19 }
20
21 /**
22 * Retrieve property from the provided envrionment map
23 * @param value actual value to decipher.
24 *
25 * @param properties ignored in this implementation.
26 * @param environment Environment to use for the given request.
27 *
28 * @return the real value, or null if not found.
29 */
30 @Override
31 public String processValue(String value, Properties props, Map<String,String> environment)
32 {
33 String envVar = value.substring(prefix.length());
34 return environment.get(envVar);
35 }
36
37}
The following prefixes are reserved:
<nothing> |
no prefix is used for default behavoir |
env |
Values from System.getenv |
java |
Values from System.getProperty |
file |
Values from files on the file system. |
Custom Decodes Functions
To create a custom function, implement the following interface org.opendcs.spi.decodes.DecodesFunctionProvider, and derive your actual function from decodes.decoder.DecodesFunction.
Additionally make sure your full class name is in the appropriate META-INF/services/org.opendcs.spi.decodes.DecodesFunctionProvider file.
1package org.opendcs.spi.decodes;
2
3import decodes.decoder.DecodesFunction;
4
5public interface DecodesFunctionProvider
6{
7 /**
8 * Name of the decodes function that will be used in a DecodesScript.
9 * The name is case sensitive. If you function is provided outside of the
10 * OpenDCS distribution, please prefix the name with some sort of organizational identifier.
11 * @return
12 */
13 String getName();
14
15 /**
16 * Create an actual instance of your custom decodes function.
17 * @return Valid and immediately usable instance of a DecodesFunction.
18 */
19 DecodesFunction createInstance();
20}
Decodes Function Operations
We will expand this section later. For the moment please review the existing DecodesFunction implementations to determine the most appropriate implementation details for your function.
Additional Logging
Similar to the connection pool tracing above, if you are having difficulty with a provider you can log missed results with the following feature flag.
DECJ_MAXHEAP="-Dopendcs.property.providers.trace=true" routsched ...
This will cause excessive logging and drastically slow execution. We do not recommend leaving this setting on for any length of time beyond a debugging session.
Code Analysis
Checkstyle, Spotbugs, and the PMD/CPD tools are available for anaylzing the code.
to run each do the following:
# SpotBugs
./gradlew spotbugsMain
# output will be in build/reports/spotbugs/spotbugs.html
# Checkstyle
./gradlew checkstyleMain
# output will output to the terminal
# CPD
./gradlew cpd
# output will be in build/reports/cpd.xml
Only CPD is fast. checkstyle and SpotBugs are rather slow.
Additionally SonarCloud will be used as part of the CI/CD pipeline on Github, results will be automatically linked through a comment in pull requests.
Integration Test infrastructure
OpenDCS now contains a framework for running integration tests. See the folder src/test-integration for the code. The intent is to be a simple to use “Compatibility Toolkit” where a given implementation is only responsible for identifying the OpenDCS concepts (DECODES, Timeseries, computations, etc) that it supports and handling instantiation of external resources and setting up the configuration.
Framework
There is set of code under org.opendcs.fixtures that allows configuration and setup to take place and determine if a given
test should be enabled or not and other per test tasks.
All new integration test classes should derive from org.opendcs.fixtures.ApptestBase. This class is marked with the OpenDCSTestConfigExtension
and handles determining which OpenDCS implementation to run, and performing any required “installation and setup steps” needed.
Implementations should derive from org.opendcs.fixtures.spi.configuration.Configuration and org.opendcs.spi.configuration.ConfigurationProvider
and implement any required setup. All Configurations are given a temporary directory to create the DCSTOOL_USERDIR contents.
Application logs are all written into this directory.
Currently Implemented are OpenDCS-XML and OpenDCS-Postgres. OpenDCS-Postgres uses the (Testcontainers)[https://java.testcontainers.org] library which requires docker. OpenDCS-XML only depends on the file system.
To run either use the following command:
./gradlew :testing:opendcs-test:test -Popendcs.test.engine=OpenDCS-XML
# or
./gradlew :testing:opendcs-test:test -Popendcs.test.engine=OpenDCS-Postgres
Adding tests
New classes, or methods to existing classes, should go under org.opendcs.regression_tests
Integration tests inherit from :code:AppTestBase. This simplifies access to resources, environment, properties, and methods as described below.
Member Variable |
Description |
|---|---|
@SystemStubprotected final EnvironmentVariables environment = new EnvironmentVariables(); |
variables from System.getenv that applications will see. |
@SystemStubprotected final SystemProperties properties = new SystemProperties(); |
variables from System.getProperty that applications will see. |
@SystemStubprotected final SystemExit exit = new SystemExit(); |
Used to trap System.exit calls to allow testing without aborting the test run |
@ConfiguredField protected Configuration configuration; |
Instance of the
|
At the Class and method level the following annotations are available.
Annotation |
Description |
|---|---|
DecodesConfigurationRequired |
List of database import files needed for tests to succeed. Can be set at the Class level, Method level, or both in which case the sets will be merged |
Extension and other Junit information
The OpenDCSTestConfigExtension, if it knows about a given type, will inject
an instance of any field annotated with @ConfiguredField as seen in the table
above for the configuration.
The only other injected field is a TimeSeriesDb which is Provided by the Configuration
and will already be valid and can be used directly for things like testing DaoObjects or null which
indicates the implementation under test doesn’t use the any of the timeseries database components.
A test may or may not require access to the TimeSeriesDb and so is not provided by default.
The sample :code:LoadingAppDaoTestIT uses the :code:@EnableIfSql annotation that extends from Junit’s :code:ExecutionCondition to determine if the test should be run or not.
Additional ExecutionConditions and parameter injection will be added in the future as needed and as we better identify concepts to map to vs implementation details.
Caveats
OpenDCS supports several implementations, the XML database, the baseline Postgres and Oracle database, two additional Oracle Databases: USBR’s HDB and USACE’s CWMS.
Each share the same fundamental concepts. However, portions of the implementation, like Site names and Data type parameter names (e.g. are we measuring Stage, Elevation, Precipitation, etc) are handle differently.
These tests are intended to be independent of these concerns; however, the current tests getting merged in are for the baseline implementation which was Derived from CWMS and directly shares naming and data labelling styles. Given a new implementation it is quite likely that work will be required to handle this situation. We will address this situation when it happens and you should not be afraid to reach out in discussions if you are having difficulties.
Containers
Theory of operation
Each “application” will have it’s own container, derived from a baseline image. This allows organization while also minimizing downstream disk usage. The base image layer will be shared so each application will only be a minor additional layer.
Some applications like LRGS, RoutingScheduler, CompProc will have a default CMD and parameters and be suitable for:
docker run -d ...
To run as a service.
Other applications, like importts, complocklist, etc, will have an ENTRYPOINT and a user can call it like they normally would except prefixing with:
docker run -v `pwd`/decodes.properties:/dcs_user/decodes.properties complocklist
NOTE: this is still a work in progress, we may switch or there will also be support for environment variables. However, the commandline apps will likely not see common usage in docker directly.
The build
The build is done in multiple stages.
Stage 1 Build
The build uses the openjdk:8-jdk-bullseye image as it was easier to handle some of the basic dependencies. The documentation is not generated as it wouldn’t be easily accessible anyways.
Stage 2 baseline
This setups the basic “OpenDCS” install in /opt/opendcs. We use the openjdk:8-jre-alpine to save space for the final image. We may experiment in the future with additional image reductions.
The baseline sets up the “DCSTOOL_HOME” directory in /opt/opendcs and alters the bin files with the appropriate full location.
The baseline “env.sh” script, our docker equivalent to opendcs.init, is added here. The opendcs user, to avoid running as root, and group are added as well as the default entrypoint.
The build/stage directory is copied from the build stage
Stage 3+ lrgs
LRGSHOME and LRGS_ADMIN_PASSWORD ENV variable is registered. /lrgs_home volume is registered. The default 16003 port is defined.
The runtime user is set to opendcs:opendcs
CMD is set to lrgs.sh
lrgs.sh handles first time setup, copy default config, initial admin user, and starting LRGS in the foreground.
The lrgs.lock file is currently ignored and docker just kills the process. Currently investigating better ways to handle shutdown. Will likely just add a flag to remove the lock file entirely.
The docker environment now uses the special sequence lrgsStart -F -k - to run in the foreground (-F) and use the NoOpServerLock file (-k -) which causes the applications using that Lock to assume it’s always valid for them.
Database Scripts
OpenDCS is transitioning to using Flyway to manage database schema installation and upgrades. See https://flywaydb.org for detail on the specifics. The following assumes you have read at least some of the documentation.
The following guidance MUST be observed:
DO NOT ALTER a released versioned migration file. For example src/main/resource/db/opendcs-pg/schema/V6.8__opendcs.sql is final
For each implementation the structure should be as follows:
src/main/resource/db/<implementation>/callbacks for the before/after migration handlers
src/main/resource/db/<implementation>/schema for the actual versioned migrations
src/main/resource/db/<implementation>/triggers for any triggers
and so on. A given implementation may also provide baseline/bootstrap data
Java Migrations, if any, should followed the same structure but within the src/main/java folder.
Each new change should be add to a new migration file that includes the next version number (listed in rcnum.txt).
At the time of writing that would mean V7.0.12, the next would be V7.0.13
If we end up with a large number of migration and only looking at changes becomes confusing we can create a baseline migration that gathers up all previous changes.
While the actual versioned migrations MUST stay the same, the other organization is not final; please open a pull-request if you think you have a superior organization for these data.