C code generator for the Asychronous Management Protocol
Project description
CAmpPython
This is the C code generator for the DTN Management Architecture (DTNMA). It is part of the larger Asynchronous Network Managment System (ANMS) managed for NASA AMMOS.
( ,&&&.
) .,.&&
( ( \=__/
) ,'-'.
( ( ,, _.__|/ /|
) /\ -((------((_|___/ |
( // | (`' (( `'--|
_ -.;_/ \\--._ \\ \-._/.
(_;-// | \ \-'.\ <_,\_\`--'|
( `.__ _ ___,') <_,-'__,'
`'(_ )_)(_)_)'
This tool uses the JSON representation of an Application Data Model (ADM) to generate code for various purposes. CAmp generates:
- C code for usage in NASA ION (Interplanetary Overlay Network)
- This generation can also carry over custom functions in existing C files for the ADM, if indicated appropriately in the existing code (see the Round-tripping Section).
- SQL code, also for usage in NASA ION
Additional generators may be added to account for use cases outside of the reference DTNMA Agent. Please contact the developers for more information or suggestions. The Architecture Section also provides some explanation of the components of CAmp, and how to incorporate additional generators.
NOTE CAmp largely assumes that the ADM JSON input can be trusted (i.e., CAmp does not go to great lengths to fully sanitize all strings found within the ADM). CAmp does properly escape necessary sequences found in the ADMs tested during development (e.g., apostrophes in object descriptions).
Development
To install development and test dependencies for this project, run from the root directory (possibly under sudo if installing to the system path):
pip3 install -r <(python3 -m piptools compile --extra test pyproject.toml 2>&1)
To install the project itself from source run:
pip3 install .
View Usage Options for CAmp
camp -h
Basic Usage
The camp tool takes a JSON representation of an ADM for a network protocol as input and calls each of the included generators to generate files for the ADM.
The included
template.json
provides an example of how a JSON ADM should be formatted. For more information on this data model, please consult the AMA Application Data Model IETF draft.
Given the JSON representation of the ADM, run camp with:
camp <adm.json>
Name Registry
If you're generating files for a new ADM, you may see an error similar to the following:
[Error] this ADM is not present in the name registry. Pass integer value via
command line or set manually in name_registry.cfg
This is because the name of the ADM is not yet present in the camp Name
Registry. To solve this, pass the nickname value for the ADM to camp via the
-n
command line option:
camp <adm.json> -n <value>
You can also use the -n
option to make camp use a different nickname for an
ADM that is present in the camp Name Registry. For example,
camp bp_agent.json -n 23
Will generate bp_agent files with a nickname of 23
instead of the registered
value of 2
. To make these changes permanent (or to add a new ADM to the
name registry), pass the -u
flag to camp:
camp <adm.json> -n <value> -u
Output
During a successful camp execution, output similar to the following will be printed to STDOUT.
Loading <path_to_json_file>/<adm.json> ...
[ DONE ]
Generating files ...
Working on .//agent/adm_<adm>_impl.h [ DONE ]
Working on .//agent/adm_<adm>_impl.c [ DONE ]
Working on .//adm_<adm>.sql [ DONE ]
Working on .//shared/adm_<adm>.h [ DONE ]
Working on .//mgr/adm_<adm>_mgr.c [ DONE ]
Working on .//agent/adm_<adm>_agent.c [ DONE ]
[ End of CAmpPython Execution ]
This output shows that camp completed a successful generation of each of the files listed. If they don't already exist, camp will create the following directories in the current directory:
- agent
- shared
- mgr
and put generated files into the appropriate created directory. Use the -o
flag with camp to redirect output to a different directory.
camp <adm.json> -o <output_directory>
If the path at <output_directory> does not already exist, camp will create it, and will create the directories listed above within <output_directory>.
Camp will not delete any existing directory structure, but files present in the output directories with the same name as generated files will be overwritten.
Custom Code and Round-tripping
The adm_<adm>_impl.c
and adm_<adm>_impl.h
files generated for NASA ION
contain functions whose bodies cannot be automatically generated with knowledge
of the ADM alone. When generated, these fuctions are marked with tags similar to
the following:
/*
* +----------------------------------------------------------------------+
* |START CUSTOM FUNCTION <function_name> BODY
* +----------------------------------------------------------------------+
*/
/*
* +----------------------------------------------------------------------+
* |STOP CUSTOM FUNCTION <function_name> BODY
* +----------------------------------------------------------------------+
*/
Additionally, the user may wish to add additional custom functions and/or header files to these generated files. To allow re-generation of camp files with minimal re-work for custom code in these files, camp has a 'roundtripping' feature that allows preservation of these custom additions in subsequent file generations.
The roundtripping feature in camp will save any code in the file that falls between camp custom tags, and will add it to the newly-generated version of the file. Example usage:
camp <adm.json> -c <path_to_existing_impl.c> -h <path_to_existing_impl.h>
The resulting generated impl.c and impl.h files will contain the custom code from the impl.c and impl.h files passed to camp.
Current acceptable custom tags are:
- custom function body (example above)
- custom includes (
/* [START|STOP] CUSTOM INCLUDES HERE */
) - custom functions (
/* [START|STOP] CUSTOM FUNCTIONS HERE */
)
For custom function bodies, the <function_name> included in the custom function tag must be the same as the one used in the ADM for the custom function to be copied over to the correct area of the new file.
CAmp Architecture
- template.json - Example JSON ADM template
- src/camp/ - contains all of the source code for camp
- tools/camp.py - Main script of camp. This script calls all necessary generators and handles user input
- data/name_registry.cfg - Initial name registry configuration file installed with camp.
- generators/ - All generator scripts and their utility functions
- create_agent_c.py - Generates agent file (C code) for usage in NASA ION
- create_gen_h.py - Generates the shared header file needed for NASA ION
- create_impl_c.py - Generates the implementation file (C code) for usage in NASA ION
- create_impl_h.py - Generates the header file for the implementation file created by create_impl_c.py
- create_mgr_c.py - Generates the manager file for usage in NASA ION
- create_sql.py - Generates an SQL file for usage with NASA ION stored procedures
- lib/ - Library functions for generating commonly-used patterns and
accessing portions of the ADM.
- campch.py - library functions commonly needed specifically for C code generators.
- campch_roundtrip.py - round-tripping functions
- common/ - Library functions helpful to all generators.
- campsettings.py - initializes various global variables for camp (enumerations for portions of the ADM, etc.)
- camputil.py - utility functions for parsing the JSON input file and creating ARIs. Contains the Retriever class, which is used by all generators to access ADM data
- jsonutil.py - utility functions to validate JSON input.
Adding Generators
To add a new generator to camp, create a python script that creates the file
and add it to the CAmpPython/generators/
directory. Then, in CAmpPython.py,
import the new generator and add it to the file generation code of the main()
function (starting at line 105).
All generators should:
- define a
create()
method as their main function, which takes as its first and second argument:- a Retriever object (pre-populated with the ADM passed to camp)
- a string that represents the path to the output directory
- utilize the Retriever object to access fields of the JSON ADM
- place generated file(s) in the output directory passed as the second argument
to the
create()
function (the generator may choose to make a sub-directory in the output directory)
Contributing
To contribute to this project, through issue reporting or change requests, see the CONTRIBUTING document.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file anms_camp-2.1.0.tar.gz
.
File metadata
- Download URL: anms_camp-2.1.0.tar.gz
- Upload date:
- Size: 42.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | feead3c4f1ebbf93cedbbc7aa8c8142aba2e675113140bddccc0f5b7e1e5b3b1 |
|
MD5 | b75138a7ea7b94ff4ee7015db7a06b0c |
|
BLAKE2b-256 | c696fc3350577022ae83c24e671d03492aaadf4322a89e86c6eb55a912226a53 |
File details
Details for the file anms_CAmp-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: anms_CAmp-2.1.0-py3-none-any.whl
- Upload date:
- Size: 53.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99a249a01076ba8154b25c2b26068130508c7c023d8c97b7b5f016356520b004 |
|
MD5 | 2536455218397ed2e71430d0b9711f0c |
|
BLAKE2b-256 | 6fa36dc591194a831706e91b5823b4cabc5bf9932f5d5f9e31370d8fccd99156 |