Skip to main content

A Python(ic) Implementation of the Eclipse Modeling Framework (EMF/Ecore)

Project description

pypi-version master-build coverage code-quality license

PyEcore is a Model Driven Engineering (MDE) framework written for Python. Precisely, it is an implementation of EMF/Ecore for Python, and it tries to give an API which is compatible with the original EMF Java implementation.

PyEcore allows you to handle models and metamodels (structured data model), and gives the key you need for building MDE-based tools and other applications based on a structured data model. It supports out-of-the-box:

  • Data inheritance,

  • Two-ways relationship management (opposite references),

  • XMI (de)serialization,

  • JSON (de)serialization,

  • Notification system,

  • Reflexive API…

Let see how to create on a very simple “dynamic” metamodel (in opposite to static ones, see the documentation for more details):

>>> from pyecore.ecore import EClass, EAttribute, EString, EObject
>>> Graph = EClass('Graph')  # We create a 'Graph' concept
>>> Node = EClass('Node')  # We create a 'Node' concept
>>>
>>> # We add a "name" attribute to the Graph concept
>>> Graph.eStructuralFeatures.append(EAttribute('name', EString,
                                                default_value='new_name'))
>>> # And one on the 'Node' concept
>>> Node.eStructuralFeatures.append(EAttribute('name', EString))
>>>
>>> # We now introduce a containment relation between Graph and Node
>>> contains_nodes = EReference('nodes', Node, upper=-1, containment=True)
>>> Graph.eStructuralFeatures.append(contains_nodes)
>>> # We add an opposite relation between Graph and Node
>>> Node.eStructuralFeatures.append(EReference('owned_by', Graph, eOpposite=contains_nodes))

With this code, we have defined two concepts: Graph and Node. Both have a name, and it exists a containment relationship between them. This relation is bi-directionnal, which means that each time a Node object is added to the nodes relationship of a Graph, the owned_by relation of the Node is updated also (it also work in the other way).

Let’s create some instances of our freshly created metamodel:

>>> # We create a Graph
>>> g1 = Graph(name='Graph 1')
>>> g1
<pyecore.ecore.Graph at 0x7f0055554dd8>
>>>
>>> # And two node instances
>>> n1 = Node(name='Node 1')
>>> n2 = Node(name='Node 2')
>>> n1, n2
(<pyecore.ecore.Node at 0x7f0055550588>,
 <pyecore.ecore.Node at 0x7f00555502b0>)
>>>
>>> # We add them to the Graph
>>> g1.nodes.extend([n1, n2])
>>> g1.nodes
EOrderedSet([<pyecore.ecore.Node object at 0x7f0055550588>,
             <pyecore.ecore.Node object at 0x7f00555502b0>])
>>>
>>> # bi-directional references are updated
>>> n1.owned_by
<pyecore.ecore.Graph at 0x7f0055554dd8>

This example gives a quick overview of some of the features you get for free when using PyEcore.

The project slowly grows and it still requires more love.

Installation

PyEcore is available on pypi, you can simply install it using pip:

$ pip install pyecore

The installation can also be performed manually (better in a virtualenv):

$ python setup.py install

Documentation

You can read the documentation at this address:

https://pyecore.readthedocs.io/en/latest/

Dependencies

The dependencies required by pyecore are:

  • ordered-set which is used for the ordered and unique collections expressed in the metamodel,

  • lxml which is used for the XMI parsing.

These dependencies are directly installed if you choose to use pip.

Run the Tests

Tests uses py.test and ‘coverage’. Everything is driven by Tox, so in order to run the tests simply run:

$ tox

Liberty Regarding the Java EMF Implementation

  • There is some meta-property that could be missing inside PyEcore. If you see one missing, please open a new ticket!

  • Proxies are not “removed” once resolved as in the the Java version, instead they acts as transparent proxies and redirect each calls to the ‘proxied’ object.

  • PyEcore is able to automatically load some model/metamodel dependencies on its own.

State

In the current state, the project implements:

  • the dynamic/static metamodel definitions,

  • reflexive API,

  • inheritance,

  • enumerations,

  • abstract metaclasses,

  • runtime typechecking,

  • attribute/reference creations,

  • collections (attribute/references with upper bound set to -1),

  • reference eopposite,

  • containment reference,

  • introspection,

  • select/reject on collections,

  • Eclipse XMI import (partially, only single root models),

  • Eclipse XMI export (partially, only single root models),

  • simple notification/Event system,

  • EOperations support,

  • code generator for the static part,

  • EMF proxies (first version),

  • object deletion (first version),

  • EMF commands (first version),

  • EMF basic command stack,

  • EMF very basic Editing Domain,

  • JSON import (simple JSON format),

  • JSON export (simple JSON format),

  • introduce behavior @runtime,

  • resources auto-load for some cross-references,

  • derived collections,

  • multiple roots ressources,

  • xsi:schemaLocation support for XMI resources,

  • URI mapper like,

  • EGeneric support (first simple version),

  • URI converter like

The things that are in the roadmap:

  • new implementation of EOrderedSet, EList, ESet and EBag,

  • new implementation of EStringToStringMapEntry and EFeatureMapEntry,

  • improve documentation,

  • copy/paste (?).

Existing Projects

There is not so much projects proposing to handle model and metamodel in Python. The only projects I found are:

PyEMOF proposes an implementation of the OMG’s EMOF in Python. The project targets Python2, only supports Class/Primitive Types (no Enumeration), XMI import/export and does not provide a reflexion layer. The project didn’t move since 2005.

EMF4CPP proposes a C++ implementation of EMF. This implementation also introduces Python scripts to call the generated C++ code from a Python environment. It seems that the EMF4CPP does not provide a reflexive layer either.

PyEMOFUC proposes, like PyEMOF, a pure Python implementation of the OMG’s EMOF. If we stick to a kind of EMF terminology, PyEMOFUC only supports dynamic metamodels and seems to provide a reflexive layer. The project does not appear seems to have moved since a while.

Contributors

Thanks for making PyEcore better!

Additional Resources

  • This article on the blog of the Professor Jordi Cabot gives more information and implementations details about PyEcore.

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

pyecore-0.11.0.tar.gz (53.0 kB view details)

Uploaded Source

Built Distribution

pyecore-0.11.0-py3-none-any.whl (40.4 kB view details)

Uploaded Python 3

File details

Details for the file pyecore-0.11.0.tar.gz.

File metadata

  • Download URL: pyecore-0.11.0.tar.gz
  • Upload date:
  • Size: 53.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyecore-0.11.0.tar.gz
Algorithm Hash digest
SHA256 205c7ae92fba357f4dacbf04cbd8bf5502c18a74553f537663b3a76eeb6d285a
MD5 4c94fdb08ec51d2ac66b34a5196657fb
BLAKE2b-256 aa21a984f19cdceec0b12fc671c02f435401d07fa056ec43b4d66767ad140572

See more details on using hashes here.

File details

Details for the file pyecore-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: pyecore-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyecore-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f6c8f8fa028c4f870185f6b026e1084ed58dfc217c4c01f93b174e98e2307d36
MD5 9895478194c5a7341d391e8938c83c12
BLAKE2b-256 d046322b050e8c2cb6d9b4c858e99cc30e5b7989e88ef3e69d063395e602b34e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page