Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "VIATRA/Query"

(One intermediate revision by the same user not shown)
Line 38: Line 38:
 
** [[EMFIncQuery/UserDocumentation/IncQuery_Viewers|IncQuery Viewers]]
 
** [[EMFIncQuery/UserDocumentation/IncQuery_Viewers|IncQuery Viewers]]
 
* [[EMFIncQuery/UserDocumentation/Examples|Examples]]
 
* [[EMFIncQuery/UserDocumentation/Examples|Examples]]
* [[EMFIncQuery/UserDocumentation/Build|EMF-IncQuery in CI Environments (Maven artifacts]] (since 0.8.0)
+
* [[EMFIncQuery/UserDocumentation/Build|EMF-IncQuery in CI Environments (Maven artifacts)]] (since 0.8.0)
 
* Reporting bugs or requesting new features
 
* Reporting bugs or requesting new features
 
** [[EMFIncQuery/UserDocumentation/IssueTracking|Issue tracking]]
 
** [[EMFIncQuery/UserDocumentation/IssueTracking|Issue tracking]]
  
== Contributors Guide ==
+
== Contributor's Guide ==
  
 
* Developer's Documentation
 
* Developer's Documentation
Line 54: Line 54:
 
** [[EMFIncQuery/DeveloperDocumentation/Builder|Builder Architecture]]
 
** [[EMFIncQuery/DeveloperDocumentation/Builder|Builder Architecture]]
 
** [[EMFIncQuery/DeveloperDocumentation/IncQueryXcore|Notes on IncQuery & Xcore integration]]
 
** [[EMFIncQuery/DeveloperDocumentation/IncQueryXcore|Notes on IncQuery & Xcore integration]]
 +
** [[EMFIncQuery/DeveloperDocumentation/QueryProcessing|Query Processing]]
 
* Developer Meeting Minutes
 
* Developer Meeting Minutes
 
** [[EMFIncQuery/DeveloperMeetingMinutes|Meeting minutes]]
 
** [[EMFIncQuery/DeveloperMeetingMinutes|Meeting minutes]]

Revision as of 16:16, 14 January 2015

EMF-IncQuery Wiki Documentation

For the query language, we reuse the concepts of graph patterns (which is a key concept in many graph transformation tools) as a concise and easy way to specify complex structural model queries. High runtime performance is achieved by adapting incremental graph pattern matching techniques based on the Rete algorithm.

We believe the average programmer using EMF models will like EMF-IncQuery for the following reasons:

  • declarative queries can be evaluated over EMF without manually traversing the models,
  • complex interrelated constellations of EMF objects can be easily formulated as a graph pattern,
    • the language is expressive and provides powerful features such as negation or counting,
    • graph patterns are composable and reusable,
    • queries can be evaluated with great freedom, i.e. input and output parameters can be selected at run-time,
    • some frequently encountered shortcomings of EMF’s interfaces are addressed:
    • easy and efficient enumeration of all instances of a class regardless of location,
    • simple backwards navigation along all kinds of references (even without eOpposite)
    • finding objects based on attribute value,
  • the incremental query evaluation mechanism offers a significant performance boost when frequently querying complex structural patterns with a moderate amount of modifications in-between (e.g. during continuous validation),
  • from the declarative representation of queries, pattern matcher code is generated which can be distributed as Eclipse plug-ins with very few dependencies.


EMF-IncQuery User Documentation

Contributor's Guide

Releases

Back to the top