ANTLR4 grammars for McStas and McXtrace
Project description
mccode-antlr
ANTLR4-based compiler and Python API for the McStas and McXtrace Monte Carlo particle ray-tracing languages.
Documentation · PyPI · conda-forge · Issues
Quick start
Command line
pip install mccode_antlr
mcstas-antlr my_instrument.instr # translate to C
mcrun-antlr my_instrument.instr -n 1e6 E_i=5.0 # compile & run
Python API
from mccode_antlr import Flavor
from mccode_antlr.assembler import Assembler
a = Assembler("BrillouinSpec", flavor=Flavor.MCSTAS)
a.parameter("double E_i = 5.0") # meV
src = a.component("Source", "Source_simple",
at=(0, 0, 0),
parameters={"E0": "E_i", "radius": 0.05})
instr = a.instrument()
instr.to_file("BrillouinSpec.instr")
# In Jupyter: just put `instr` on the last line of a cell for an interactive view
Installation
# pip
pip install mccode_antlr # latest release
pip install "mccode_antlr[hdf5]" # with HDF5 output
pip install "mccode_antlr[mcpl]" # with MCPL file support
pip install "mccode_antlr[ipython]" # with IPython/Jupyter matcher support
# conda / mamba (conda-forge)
conda install conda-forge::mccode-antlr
mamba install -c conda-forge mccode-antlr
# development version
pip install git+https://github.com/mccode-dev/mccode-antlr.git
Documentation
Full documentation — including a getting-started guide, core concepts, how-to guides, and API reference — is at:
https://mccode-dev.github.io/mccode-antlr/
IPython / Jupyter completions
mccode_antlr can register an IPython matcher for Python authoring with
Assembler and Simulation objects:
from mccode_antlr.integrations.ipython import register_ipython_matcher
register_ipython_matcher()
Or in IPython / Jupyter:
%load_ext mccode_antlr.integrations.ipython
This matcher is intended for Python-side completions such as component names,
component parameter names, and simulation parameter names. It does not provide
raw McCode DSL completion inside notebook cells. The %load_ext path is the
recommended automatic registration mechanism; importing the module alone does
not register the matcher as a side effect.
Why ANTLR4?
included in-rule code to implement some language features and called the code-generator to construct the intermediate instrument source file. The mixture of language parsing and multiple layers of generated functionality made understanding the program operation, and debugging introduced errors, difficult. Worst of all, there is no easy-to-use tooling available to help the programmer identify syntax errors on-the-fly.
This project reimplements the McCode languages using ANTLR4
which both tokenizes and parses the language into a recursive descent parse tree.
ANTLR can include extra in-rule parsing code, but since it can produce output
suited for multiple languages (and the extra code must be in the targeted language)
this feature is not implemented in this project.
Other benefits of ANTLR4 include integration with Integrated Development Environments,
including the freely available Community edition of PyCharm from JetBrains.
IDE integration can identify syntax mistakes in the language grammar files,
plus help to understand and debug language parsing.
McCode languages
Traditionally, McCode identifies as a single language able to read, parse, and construct
programs to perform single particle statistical ray tracing.
While McCode-3 uses a single language.l and language.y file pair for lexing and parsing,
it actually implemented at least two related languages: one for component definitions in .comp files,
one for instrument definitions in .instr files,
plus arguably more for other specialised tasks.
Notably the mcdisplay utilities of McCode make use of a special runtime output mode
to identify the positions and shapes of components, and the paths of particles, which
is then read by an independent ply parser to generated visualizations.
This project makes use of ANTLR's language dependency feature to separate the languages
into McComp for components and McInstr for instruments, with common language features
defined in a McCommon grammar.
Language translation
For use with the McCode runtimes (McStas and McXtrace), the input languages must be
translated to C following the C99 standard.
This translation was previously performed in C since the lex|flex, yacc|bison
workflow produced programs written in C.
The C programming language is a very good choice where execution speed is important,
as in the McCode runtimes, but less so if speed is not the main goal and memory safety
or cross-platform development is important.
The McCode-3 translators do not always deallocate memory used in their runtime,
and newly developed features are likely to introduce unallocated, out-of-bounds, or double-free
memory errors which are then difficult to track down.
ANTLR4 is a Java program, but produces parse-trees in multiple languages.
This project uses the Python target so that language-translation can proceed in a language
which is well suited to new-feature development, while removing memory handling issues and
making cross-platform development significantly easier.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mccode_antlr-0.20.0.tar.gz.
File metadata
- Download URL: mccode_antlr-0.20.0.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0ba7eb73d606fa7e3f53f3400f51c76e9409e5a34d137f4aae061e74ce60bd2
|
|
| MD5 |
b0b7eaacae92d0078ac2158e138e78bf
|
|
| BLAKE2b-256 |
f5a9a27f3e4ea0f9db1bdac5c7134b613950ae0ed73ef27435b38da72cfd202e
|
Provenance
The following attestation bundles were made for mccode_antlr-0.20.0.tar.gz:
Publisher:
wheels.yml on mccode-dev/mccode-antlr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mccode_antlr-0.20.0.tar.gz -
Subject digest:
f0ba7eb73d606fa7e3f53f3400f51c76e9409e5a34d137f4aae061e74ce60bd2 - Sigstore transparency entry: 1109766635
- Sigstore integration time:
-
Permalink:
mccode-dev/mccode-antlr@b0e89a55ae46fbd634bbd40c1da32cba63cc146d -
Branch / Tag:
refs/tags/v0.20.0 - Owner: https://github.com/mccode-dev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@b0e89a55ae46fbd634bbd40c1da32cba63cc146d -
Trigger Event:
release
-
Statement type:
File details
Details for the file mccode_antlr-0.20.0-py3-none-any.whl.
File metadata
- Download URL: mccode_antlr-0.20.0-py3-none-any.whl
- Upload date:
- Size: 455.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40482a90c05cfb29e203ae1ecfb1ba1870e4644d7ab8e6d80289395d25c1e6ce
|
|
| MD5 |
c9f5c1f6e04b4790f3cf69d11a6680f5
|
|
| BLAKE2b-256 |
a05de22d2ae548381fd13dbf813e523e64defe6d6aee6e51f019d173f07dce15
|
Provenance
The following attestation bundles were made for mccode_antlr-0.20.0-py3-none-any.whl:
Publisher:
wheels.yml on mccode-dev/mccode-antlr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mccode_antlr-0.20.0-py3-none-any.whl -
Subject digest:
40482a90c05cfb29e203ae1ecfb1ba1870e4644d7ab8e6d80289395d25c1e6ce - Sigstore transparency entry: 1109766638
- Sigstore integration time:
-
Permalink:
mccode-dev/mccode-antlr@b0e89a55ae46fbd634bbd40c1da32cba63cc146d -
Branch / Tag:
refs/tags/v0.20.0 - Owner: https://github.com/mccode-dev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@b0e89a55ae46fbd634bbd40c1da32cba63cc146d -
Trigger Event:
release
-
Statement type: