Xtext

Summary

Xtext is an open-source software framework for developing programming languages and domain-specific languages (DSLs). Unlike standard parser generators, Xtext generates not only a parser, but also a class model for the abstract syntax tree, as well as providing a fully featured, customizable Eclipse-based IDE.[2]

Eclipse Xtext
Stable release
2.31.0 / March 2, 2021; 3 years ago (2021-03-02)[1]
Repositorygithub.com/eclipse/xtext-core
TypeSoftware framework
LicenseEclipse Public License
Websitextext.org

Xtext is being developed in the Eclipse Project as part of the Eclipse Modeling Framework Project and is licensed under the Eclipse Public License.[citation needed]

History edit

The first version of Xtext was published in 2006 in the openArchitectureWare project. The last version released under the oAW project was version 4.3. Since the beginning of 2008, Xtext has been developed at Eclipse under the Eclipse Modeling Project.[3]

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.[4]

Functionality edit

To specify a language, the developer 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.

Xtext includes features which integrate well with the Eclipse-based IDE:

  • Syntax coloring
  • Code completion
  • Static analysis
  • Outline view
  • Source-code navigation
  • Indexing
  • Compare view
  • Hovers
  • Code folding
  • Rename refactoring

Xtext languages and the IDE are highly configurable, as the language infrastructure and the IDE are wired up using dependency injection and Google Guice. The default components can be easily replaced by binding customized ones instead.

Since version 2.0, Xtext has facilitated 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 within the DSL.

A code generator written in Xtend can be 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.[clarification needed]

Uses edit

At the time of writing this article[when?], the Xtext homepage listed around 40 commercial and non-commercial projects from several application domains using Xtext.[5]

  • AWK, the popular Domain Specific Language (DSL) is based on Xtext.
  • The general-purpose language Xtend is also built with Xtext.[citation needed]

Awards edit

  • Eclipse Community Awards 2010: "Most Innovative New Feature or Eclipse Project"[6]
  • Sebastian Zarnekow, commiter, Eclipse Community Awards 2011: "Top Committer"[7]
  • Sven Efftinge, project lead, Eclipse Community Awards 2012: "Top Committer"[8]

See also edit

References edit

  1. ^ "Xtext - Release Notes". eclipse.dev. Retrieved 2023-05-29.
  2. ^ github/xtext, Eclipse Foundation, 2021-02-04, retrieved 2021-02-08
  3. ^ Efftinge, Sven. "Xtext - Language Engineering Made Easy!". www.eclipse.org. Retrieved 16 February 2018.
  4. ^ itemis. Retrieved from http://www.itemis.com.
  5. ^ Retrieved from http://www.eclipse.org/Xtext/community.html.
  6. ^ Gayowski, Lynn. "Eclipse Community Awards Winners Announced". www.eclipse.org. Retrieved 16 February 2018.
  7. ^ Skerrett, Ian. "Eclipse Community Awards Winners Announced". www.eclipse.org. Retrieved 16 February 2018.
  8. ^ Guindon, Christopher. "Eclipse Community Award Winners Announced". www.eclipse.org. Retrieved 16 February 2018.

Bibliography edit

  • 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.