OTP Sandbox Extensions
- The sandbox is a place to test and implement new "experimental" features.
- This should not be used for bug fixes and smaller changes.
- Consider forking if the feature is valuable to one deployment only.
Available extensions
Here is a list of features implemented as OTP Sandbox Extensions. The Sandbox extensions are provided "as is".
- Google Cloud Storage - Enable Google Cloud Storage as a OTP Data Source
- Actuator API - API used to check the health status of the OTP instance.
- Geocoder API - Adds an API to search for corners, stops and stations.
- Transfer analyser - Module used for analyzing the transfers between nearby stops generated by routing via OSM data.
- HSL Legacy GraphQL API - HSL's GraphQL API used by the Digitransit project.
- Transmodel API - Enturs GraphQL Transmodel API.
- SIRI updator - Update OTP with realtime information from a Transmodel SIRI data source.
- SIRI Azure Updater - fetch SIRI realtime data through Azure Service Bus
- VehicleRentalServiceDirectory - GBFS service directory endpoint.
- Smoove Bike Rental Updator Support - Smoove Bike Rental Updator(HSL)
- Mapbox Vector Tiles API - Mapbox Vector Tiles API
- Flex Routing - Flexible transit routing for GTFS and Netex data sources
- Park and Ride API - Park and Ride API
- Data Overlay - StreetEdge grid data populating affecting the route planning
- Vehicle Parking - Vehicle Parking updaters
- Vehicle-to-stop heuristics - Speeding up Park+Ride, Bike+Ride and Bike+Transit searches
- Travel Time (Isochrone & Surface) API - Travel Time API
- IBI accessibility score - IBI accessibility score
- Fares - Fare calculation
Terminology
Main/core -- All OTP code and additional files, NOT part of the sandbox.
(docs
, src/main
, src/test
and so on)
Extensions -- All features implemented in the OTP Sandbox, provided with no guarantees.
(src/ext
, src/ext-test
)
Sandbox Goals
- Reduce work for PR approval
- Allow experimental code to evolve (in a Sandbox)
- Encourage refactoring and creation of extension points in the main code.
- Increase visibility and cooperation of development of new features.
- Feature toggle
- Sandbox features should use the OTPFeature to enable the code. Sandbox features are by default off. To toggle features on/off se the configuration documentation.
Contract
- Give your feature a name:
<extension name>
- A new feature is isolated from the rest of the code by putting it in the directory
src/ext
. Java code should have package prefixorg.opentripplanner.ext.<extension name>
. Unit tests should be added in the test directory:src/ext-test
- To integrate the new feature into OTP you may have to create new extension points in the main/core code. Changes to the core OTP are subject to normal a review process.
- Create a readme file (
docs/sandbox/<Extension Name>.md
package including:- Extension Name
- Contact info
- Change log
- Documentation of the feature (optional)
- List your extension in the Available extensions section and in the mkdocs config file.
- Use feature toggling to enable a feature at runtime. The feature must be disabled by default. A feature is toggled on using the config files.
- Only code modifying the main code(
src/main
, notsrc/ext
) is reviewed. The current coding standard apply to the extension code as well - but the code is not necessarily reviewed. - There are no grantees - the authors of an extension can change its API any time they want.
- Anyone can request the feature to be merged into the main code. An approval from the PLC and a new review is then required. The reviewers may request any changes, including API changes.
- If an extension is taken into the core/main OTP code, any API included may change, no BACKWARD compatibility is guaranteed. I.e. the reviewers may require changes before it is merged.
- The feature submitters is responsible for maintaining and testing the extension code, but do not need to provide any guarantees or support. If the extension is merged into the main code the author will in fact need to provide support and maintenance.
- When someone at a later point in time want to change the main code the only thing they are
responsible for - with regard to the extension code - is:
- that it compiles.
- that the unit tests run. If a test is not easy to fix, it can be tagged with @Ignore. If ignored it would be polite to notify the author.
- Changes to the main OTP API that cannot be toggled in must be clearly marked/tagged as part of an experimental feature and documented - This code is subject to review.
- If a feature is old and not maintained it can be removed 1 month after notifying the submitter (using contact info in README file).
- Introducing new dependencies needs approval. They are NOT approved if they are likely to be a maintenance challenge (many transitive dependencies or potential conflicts with other versions/libraries).