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"

(Update API/BaseIndexer)
(Update to VIATRA Query 1.2)
Line 4: Line 4:
 
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.
 
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:
+
We believe the average programmer using EMF models will like VIATRA Query for the following reasons:
  
 
* declarative queries can be evaluated over EMF without manually traversing the models,
 
* declarative queries can be evaluated over EMF without manually traversing the models,
Line 19: Line 19:
  
  
== EMF-IncQuery User Documentation ==
+
== VIATRA Query User Documentation ==
* Developing Incremental Model Queries using the EMF-IncQuery Tooling
+
* Developing Incremental Model Queries using the VIATRA Query Tooling
** [[VIATRA/Query/UserDocumentation/GettingStarted|Installing EMF-IncQuery]]
+
** [[VIATRA/Query/UserDocumentation/GettingStarted|Installing VIATRA Query]]
 
** [[VIATRA/Query/UserDocumentation/QueryLanguage|A Short Introduction to the Query Language]]
 
** [[VIATRA/Query/UserDocumentation/QueryLanguage|A Short Introduction to the Query Language]]
 
** [[VIATRA/Query/UserDocumentation/QueryDevelopment|Getting started with Query Development]]
 
** [[VIATRA/Query/UserDocumentation/QueryDevelopment|Getting started with Query Development]]
Line 27: Line 27:
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/RETE_Visualizer|RETE Visualizer]]
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/RETE_Visualizer|RETE Visualizer]]
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/LocalSearch_DebuggerTooling|Local Search Debugger Tooling]]
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/LocalSearch_DebuggerTooling|Local Search Debugger Tooling]]
*** ''TODO'' [[EMFIncQuery/UserDocumentation/DebuggerTooling|EMF-IncQuery Debugger Tooling]] (since 0.8.0)
+
*** ''TODO'' [[EMFIncQuery/UserDocumentation/DebuggerTooling|VIATRA Query Debugger Tooling]] (since 0.8.0)
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/SDK/QueryHotspotTesting|Finding query evaluation hotspots]] (since 1.0.0)
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/SDK/QueryHotspotTesting|Finding query evaluation hotspots]] (since 1.0.0)
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/PureWhitelist|Pure whitelist]] (since 1.0.0)
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/PureWhitelist|Pure whitelist]] (since 1.0.0)
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/AdvancedPatterns|Advanced pattern language constructs]]  
 
*** ''TODO'' [[EMFIncQuery/UserDocumentation/AdvancedPatterns|Advanced pattern language constructs]]  
* Using the EMF-IncQuery Runtime library
+
* Using the VIATRA Query Runtime library
** [[VIATRA/Query/UserDocumentation/HeadlessExecution|Headless (standalone) execution of EMF-IncQuery queries and unit tests]]
+
** [[VIATRA/Query/UserDocumentation/HeadlessExecution|Headless (standalone) execution of VIATRA Query queries and unit tests]]
 
** [[VIATRA/Query/UserDocumentation/API|API documentation]]
 
** [[VIATRA/Query/UserDocumentation/API|API documentation]]
 
** [[VIATRA/Query/UserDocumentation/API/Advanced|Advanced API features]]
 
** [[VIATRA/Query/UserDocumentation/API/Advanced|Advanced API features]]
 
** [[VIATRA/Query/UserDocumentation/API/RunOnce|Run once querying API documentation]]
 
** [[VIATRA/Query/UserDocumentation/API/RunOnce|Run once querying API documentation]]
** [[VIATRA/Query/UserDocumentation/API/BaseIndexer|IncQuery Base Indexer]]
+
** [[VIATRA/Query/UserDocumentation/API/BaseIndexer|VIATRA Query Base Indexer]]
 
* ''TODO'' [[EMFIncQuery/UserDocumentation/Examples|Examples]]
 
* ''TODO'' [[EMFIncQuery/UserDocumentation/Examples|Examples]]
* ''TODO'' [[EMFIncQuery/UserDocumentation/Build|EMF-IncQuery in CI Environments (Maven artifacts)]] (since 0.8.0)
+
* ''TODO'' [[EMFIncQuery/UserDocumentation/Build|VIATRA Query in CI Environments (Maven artifacts)]] (since 0.8.0)
 
* Reporting bugs or requesting new features
 
* Reporting bugs or requesting new features
 
** ''TODO'' [[EMFIncQuery/UserDocumentation/IssueTracking|Issue tracking]]
 
** ''TODO'' [[EMFIncQuery/UserDocumentation/IssueTracking|Issue tracking]]
 
* Frequently Asked Questions
 
* Frequently Asked Questions
 
** ''TODO'' [[EMFIncQuery/FAQ|FAQ]]
 
** ''TODO'' [[EMFIncQuery/FAQ|FAQ]]

Revision as of 11:39, 21 March 2016

VIATRA Incremental Query 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 VIATRA Query 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.


VIATRA Query User Documentation

Back to the top