Release | Development | |
---|---|---|
Version | N.A. | 1.0.0-SNAPSHOT |
Java | 17 | 17 |
This projects contains the following major building blocks of BDSL, the Bigraphical Domain-specific Language:
- Grammar, Parser, Validation, ...
- Language Server Protocol for language support in any IDE
- Unit tests
The grammar is implemented using Xtext and Xtend. Xtext is a language development framework, and Xtend is a language that compiles into idiomatic Java source code.
IDE support is provided for the following platforms to be more productive when experimenting with BDSL:
- Eclipse, IntelliJ, Visual Code, ... by utilizing the Language Server Protocol
This framework provides the core elements, which may be used in other Java frameworks, libraries and applications. For instance, refer to https://git-st.inf.tu-dresden.de/bigraphs/bigraph-algebraic-interpreter, where an interpreter for BDSL is implemented.
Use the following dependency within a Maven-based project.
Replace ${version}
with the current version.
<!-- BDSL Grammar -->
<dependency>
<groupId>org.bigraphs.dsl</groupId>
<artifactId>bdsl-grammar</artifactId>
<version>${version}</version>
<exclusions>
<exclusion>
<groupId>org.bigraphs.dsl</groupId>
<artifactId>BigraphBaseModel</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.xtext</groupId>
<artifactId>xtext-dev-bom</artifactId>
</exclusion>
</exclusions>
</dependency>
For SNAPSHOT releases also add the following repository to you project's pom.xml
:
<!-- Additional Repository for SNAPSHOT Releases -->
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
Requirements
- Java >= 17
- Gradle >= 7.4.2
- Check that the environment variable
JAVA_HOME
is pointing to the correct JDKupdate-java-alternatives --list
export JAVA_HOME=...
First, clone this repository:
git clone --recursive https://github.com/bigraph-toolkit-suite/bigraphs.bdsl-core-elements
This project includes Ecore Bigraph Metamodel as git submodule. The main branch of the repository Ecore Bigraph Metamodel will also be pulled. This dependency includes the Ecore metamodels of bigraphs that is used by the Xtext-based BDSL grammar to represent bigraphical structures.
To update the submodule (i.e., the Bigraph Ecore Metamodel) later at any time to the latest tagged version, run the following command:
git submodule update --recursive --remote
This command builds everything:
# Except tests
gradle clean build -x test
# Specific module
# gradle clean :org.bigraphs.dsl:build
# gradle clean :org.bigraphs.dsl.ide:build
gradle clean generateXtextLanguage # this fires the code generation
# Specific module
# gradle clean :org.bigraphs.dsl:generateXtext
# gradle clean :org.bigraphs.dsl:generateXtextLanguage
gradle shadowJar
# Specific module
gradle clean :org.bigraphs.dsl.ide:shadowJar
The build depends on shadowJar task.
Note: The language server protocol
*.jar
is located underorg.bigraphs.dsl.ide/build/libs/
.
The following commands show how to run various kinds of tests:
# Run all test cases
gradle :org.bigraphs.dsl.tests:test -PwithTests
# All tests within a package
gradle test --tests org.bigraphs.dsl.tests.ide.validation* -PwithTests
# All tests within a class
gradle test --tests *BdslAffectionUnitTest -PwithTests
# Only a specific test method
gradle test --tests *testSignatureMatchOnAssignment_01 -PwithTests
Test report is written to org.bigraphs.dsl.tests/build/reports/tests/test/index.html
.
If you want to use the BDSL grammar artifact in your Java projects for testing and development purposes, you can install the compiled JARs into your local Maven repository (usually located at ~/.m2/
).
Then it can be conveniently used by other Java projects.
Run the following command:
gradle publishToMavenLocal
gradle :org.bigraphs.dsl:publishToMavenLocal
gradle :org.bigraphs.dsl.ide:publishToMavenLocal
This publishes only the bdsl-grammar
module containing the BDSL.
Arguments
Every of the following gradle commands accept some arguments:
- The arguments
sonatypeUsername
andsonatypePassword
are the JIRA account details from https://issues.sonatype.org/ signing.keyId
,signing.password
andsigning.secretKeyRingFile
must also be configured ingradle.properties
within the user's home directory.- secret key ring file usually at
~/.gnupg/secring.gpg
- Otherwise, generate it:
gpg --export-secret-keys > ~/.gnupg/secring.gpg
- secret key ring file usually at
- Arguments can be passed in several ways: https://docs.gradle.org/current/userguide/build_environment.html
The Gradle GPG signing plugin is used to sign the components for the deployment. It relies on the gpg command being installed:
sudo apt install gnupg2
and the GPG credentials being available e.g. from gradle.properties
within the user's home directory.
More information can be found here.
Execute the following goal to deploy the bdsl-grammar
module to the Central Repository:
gradle publishToSonatype -PsonatypeUsername=username -PsonatypePassword=password
- The
version
element inbuild.gradle
of the parent project must contain the classifierSNAPSHOT
.
Execute the following command to manually release the artifacts placed in the closed staging repository in Nexus UI. The staging repository might be dropped (if needed) or manually released from the Nexus UI.
gradle publishToSonatype closeSonatypeStagingRepository
gradle :org.bigraphs.dsl:publishToSonatype closeSonatypeStagingRepository
Call the following to publish all publications to Sonatype's OSSRH Nexus and subsequently close and release the corresponding staging repository:
gradle publishToSonatype closeAndReleaseSonatypeStagingRepository
Note: This is not recommended!
This project is best worked with Eclipse. Import everything into a new Eclipse workspace:
org.bigraphs.dsl.parent
bigraphs.bigraph-ecore-metamodel
(the cloned Git submodule is also contained after following the Project Setup instructions)
You may need to re-generate the model code of the bigraphs.bigraph-ecore-metamodel
project as this process is not currently handled by the gradle script.
You may then be able to run the "MWE2 workflow" and to generate "Xtext artifacts" via the Eclipse IDE inside the org.bigraphs.dsl
project, or call the appropriate gradle command as shown above.
- gradle-based Project
- Language infrastructure for Bigraph DSL (BDSL) based on Xtext is located under
org.bigraphs.dsl
- Language Server Protocol Implementation is located under
org.bigraphs.dsl.ide
- Test classes are located under
./org.bigraphs.dsl.tests/
- Requires modules
org.bigraphs.dsl
andorg.bigraphs.dsl.ide
- Requires modules
- (!) Note that the required CDO/EMF/Ecore dependencies are stored separately inside the
./etc/libs
folder. The reason is that there is currently no easy way on how to resolve Eclipse dependencies from P2 repositories in gradle. To clarify: Updating the versions means replacing the files. These dependencies are shadowed in the bdsl-grammar JAR