textX generator framework based on Jinja template engine
Project description
textX-jinja
Jinja based framework for textX generators. Use if you need to generate a set of template-based files from textX models.
How to use?
-
Create a folder containing files and folder which resemble the structure you want to generate. Each file may be a Jinja template (should end with
.jinja
extension). -
File names may contain variable parts in the form
__<varible name>__
(double underscores around the variable name). These parts of file names will be replaced by the value of the variable from the generator context. If the variable is iterable, a file will be created for each object. In that case, the value for substitution in the file name will be created by functionmap_names
(still WIP!), if given, orstr
of the object itself. The object will be available in the template context under the nameobj
. If the variable is ofbool
type the file will be skipped if the variable value isFalse
. -
In your textX project register a generator (see registration).
from textx import generator from textxjinja import textx_jinja_generator @generator('mylang', 'mytarget') def mygenerator(metamodel, model, output_path, overwrite, debug): # template directory template_folder = os.path.join(os.path.dirname(__file__), 'templates') # create context dict with all variables that should be accessible # by templates context = {'some_variable': 'some value'} # Optionally provide Jinja filters def striptabs(s): return re.sub(r'^[ \t]+', '', s, flags=re.M) filters = { 'striptabs': striptabs } # call the generator textx_jinja_generator(template_folder, output_path, context, overwrite, filters)
-
Install your project (recommended is the usage of Python virtual environment):
pip install -e <path to your project>
-
Run your textX generator as usual:
$ textx generate ...
The generator will use the template folder for rendering files using Jinja
template engine. All files from the template folder which are not Jinja
templates (don't end with .jinja
' extensions) will be copied over to the
target folder unchanged (variable substitutions in file names still apply).
As a full example of its usage see startproject generator in textX-dev
project.
Templates for the startproject
command are here.
Project details
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
Hashes for textX_jinja-0.3.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06f616cfcb98df6cc2babc4b282548ef9204a72ebaea9136f77b9edc9914e1a2 |
|
MD5 | 6773b68e547115c0937ac7e7eb6e347c |
|
BLAKE2b-256 | 00a0accbd2118aca10fbd78d65265a9e619b81d97756911985e7f40952660a47 |