Xtext
Stable release | 2.7.0 / September 2, 2014 |
---|---|
Platform | Eclipse / Java |
Type | Framework |
Licence | Eclipse Public License |
Website | xtext.org |
Xtext is an open-source framework for developing programming languages and domain-specific languages (DSLs). Unlike standard parser generators, Xtext not only generates a parser, but also a class model for the Abstract Syntax Tree and a fully featured, customizable Eclipse-based IDE.
Xtext is being developed in the Eclipse Project as part of the Eclipse Modeling Framework Project and is licensed under the Eclipse Public License.
History
The first version of Xtext was published in 2006 in the openArchitectureWare project. The last version released under the oAW project is version 4.3. Since the beginning of 2008, Xtext is developed at Eclipse under the Eclipse Modeling Project.[1] Joining Eclipse's annual simultaneous release, Xtext released version 0.7.0 (June 2009), 1.0 (June 2010), 2.0 (June 2011), 2.3 (June 2012), 2.5 (December 2013), 2.6 (May 2014) and 2.7 (September 2014). The framework is mainly developed by the German company Itemis.[2]
Functionality
To specify a language, a user has to write a grammar in Xtext's grammar language. This grammar describes how an Ecore model is derived from a textual notation. From that definition, a code generator derives an ANTLR parser and the classes for the object model. Both can be used independently of Eclipse.
Into the bargain, Eclipse-based IDE integration is generated. That IDE offers e.g.
- Syntax coloring,
- Code completion,
- Static analysis,
- Outline view,
- Source-code navigation,
- Indexing,
- Compare view,
- Hovers,
- Code folding and
- Rename refactoring.
Xtext languages and the IDE are highly configurable, as the language infrastructure and the IDE are wired up using dependency injection and Guice. The default components can be easily replaced by binding customized ones instead.
Since version 2.0, Xtext facilitates the development of domain-specific languages for the Java Virtual Machine, referring to and compiling to Java artifacts with tight integration into Eclipse's Java Development Toolkit. A reusable expression languages library enables rich behavior right within the DSL.
A code generator written in Xtend can be easily hooked in for any language. For JVM languages, it is enough to map the DSL concepts to Java artifacts to get holistic Java integration. An alternative interpreter is also available.
Uses
At the time of writing this article, the Xtext homepage lists around 40 commercial and non-commercial projects from several application domains using Xtext.[3]
The general-purpose language Xtend is also built with Xtext.
Awards
- Eclipse Community Awards 2010: "Most Innovative New Feature or Eclipse Project"[4]
- Sebastian Zarnekow, commiter, Eclipse Community Awards 2011: "Top Committer"[5]
- Sven Efftinge, project lead, Eclipse Community Awards 2012: "Top Committer"[6]
References
- ↑ http://www.eclipse.org/Xtext
- ↑ itemis
- ↑ http://www.eclipse.org/Xtext/community.html
- ↑ http://www.eclipse.org/org/press-release/20100322_awardswinners.php
- ↑ http://www.eclipse.org/org/press-release/20110321_awardwinners.php
- ↑ http://www.eclipse.org/org/press-release/20120326_awardwinners.php
Resources
- Sven Efftinge, Jan Köhnlein, Peter Friese. "Build your own textual DSL with Tools from the Eclipse Modeling Project". Eclipse Foundation. Retrieved 2012-07-03.
- Sven Efftinge. "Fowler's DSL example with Xtext". sven efftinge's blog. Retrieved 2012-07-03.