Query Module
Allows querying the XWiki Model using a variety of query languages |
Type | JAR |
Category | |
Developed by | |
Rating | |
License | GNU Lesser General Public License 2.1 |
Bundled With | XWiki Enterprise |
Table of contents
Description
All data making up the XWiki application can be queried using one of the supported Query languages. Right now we support 3 languages:
- XWiki Query Language (XWQL)
- Hibernate Query Language (HQL)
- Solr Query Langage (SOLR)
Historically XWiki was only supporting HQL but that lead to complex queries in some instances and thus we've introduced XWQL which is a JPQL superset and which makes it much easier to write queries for the XWiki model, as you can see in the examples below.
Query Language Examples
Query Description | XWQL | HQL | |
---|---|---|---|
Query listing all documents | <empty query> | <empty query> | |
Query listing all documents created after a given date | where doc.creationDate > :date Full example: $services.query.xwql("where doc.creationDate > :date").bindValue('date', $datetool.toDate('yyyy-MM-dd', '2008-01-01')).execute() | where doc.creationDate > :date Full example: $services.query.hql("where doc.creationDate > :date").bindValue('date', $datetool.toDate('yyyy-MM-dd', '2008-01-01')).execute() | |
Query listing all documents last updated by a given user | where doc.author = 'XWiki.LudovicDubost' | where doc.author = 'XWiki.LudovicDubost' | |
Query listing all documents containing XWiki Objects (XObject) of a given XWiki Class (XClass) | from doc.object(XWiki.XWikiUsers) as user | , BaseObject as obj where doc.fullName = obj.name and obj.className = 'XWiki.XWikiUsers' | |
Query on XObjects and filtering on XObject property value | where doc.author = 'XWiki.LudovicDubost' and doc.object(XWiki.XWikiUsers).email like '%xwiki.com' | , BaseObject as obj, StringProperty as prop where doc.fullName = obj.name and obj.className = 'XWiki.XWikiUsers' and obj.id=prop.id.id and prop.id.name='email' and prop.value like '%xwiki.com' and doc.author ='XWiki.LudovicDubost' | |
Query on 2 XObjects | where doc.object(XWiki.XWikiUsers).email like '%xwiki.com' and doc.object(XWiki.ArticleClass).content like '%ludovic%' | , BaseObject as obj, StringProperty as prop, BaseObject as obj2, LargeStringProperty as contentprop where doc.fullName = obj.name and obj.className = 'XWiki.XWikiUsers' and obj.id=prop.id.id and prop.id.name='email' and prop.value like '%xwiki.com' and doc.fullName=obj2.name and obj2.className='XWiki.ArticleClass' and obj2.id=contentprop.id.id and contentprop.id.name='content' and contentprop.value like '%ludovic%' | |
Search blogs per category (MyCategory) | where doc.fullName <> 'XWiki.ArticleClassTemplate' and :category member of doc.object(Blog.BlogPostClass).category | #set ($category = "blog.MyCategory") , BaseObject as obj, DBStringListProperty as prop join prop.list list where obj.name=doc.fullName and obj.className='Blog.BlogPostClass' and obj.name<>'Blog.BlogPostTemplate' and obj.id=prop.id.id and prop.id.name='category' and list='${category}' order by doc.creationDate desc | |
List all tags | select distinct obj.tags from Document doc, doc.object(XWiki.TagClass) as obj | select distinct tag from BaseObject as obj, DBStringListProperty as prop join prop.list as tag where obj.className='XWiki.TagClass' and obj.id=prop.id.id and prop.id.name='tags' | |
List all blog posts, published and not hidden (filter by multiple properties of an object) | from doc.object(Blog.BlogPostClass) as blog where blog.published = '1' and :category member of blog.category and blog.hidden = '0' and doc.web = 'Blog' order by blog.publishDate desc | , BaseObject as obj, IntegerProperty publishedProp, IntegerProperty hiddenProp, DateProperty publishDateProp, DBStringListProperty as categoryProp join categoryProp.list list where obj.name=doc.fullName and obj.className='Blog.BlogPostClass' and doc.space = 'Blog' and obj.id=categoryProp.id.id and categoryProp.id.name='category' and list='$category' and publishedProp.id.id = obj.id and publishedProp.id.name = 'published' and publishedProp.value = '1' and hiddenProp.id.id = obj.id and hiddenProp.id.name='hidden' and hiddenProp.value = '0' and publishDateProp.id.id = obj.id and publishDateProp.id.name='publishDate' order by publishDateProp.value desc | |
List documents having at least tags tag1 and tag2 | from doc.object(XWiki.TagClass) as tag where 'tag1' member of tag.tags and 'tag2' member of tag.tags | , BaseObject as obj, DBStringListProperty as prop join prop.list item where obj.className='XWiki.TagClass' and obj.name=doc.fullName and obj.id=prop.id.id and prop.id.name='tags' and (lower(item)=lower('tag1') and (lower(item)=lower('tag2')) | |
Make a join between two objects that are not on the same document and are bound by a property | from doc.object('Space.Class') as obj, Document doc1, doc1.object('Space.Class1') obj1 where obj.prop1 = doc1.fullName and obj1.prop2 like '%text%' order by obj1.prop3 | ||
List child spaces (7.2+) | select space.name from XWikiSpace as space where space.parent = 'Parent Space' | same | |
List the nested documents that contain 'wiki' in their name (7.2+) | from XWikiSpace as space where doc.space = space.reference and ((doc.name <> 'WebHome' and lower(doc.name) like '%wiki%') or (doc.name = 'WebHome' and lower(space.name) like '%wiki%')) | , XWikiSpace as space where doc.space = space.reference and ((doc.name <> 'WebHome' and lower(doc.name) like '%wiki%') or (doc.name = 'WebHome' and lower(space.name) like '%wiki%')) | |
List all nested documents in the space "Space" | where doc.space like 'Space' or doc.space like 'Space.%' | same |
Performing Queries
The principle is to get a reference to the Query Manager, then call a method on it to create a Query for a given Query language. Then on the Query object you can set some behaviors (limit the number of returned result, bind variables, set the offset, set the wiki on which to execute the query) and then execute it.
From Velocity
For XWQL:
- Return all the results matching the XWQL statement:$services.query.xwql("xwqlstatement").execute()
- Return only 5 results at most:$services.query.xwql("xwqlstatement").setLimit(5).execute()
- Set the starting offset (starts at result number 5 and beyond):$services.query.xwql("xwqlstatement").setOffset(5).execute()
- Set the wiki on which to run the query (requires Programming Rights before XWiki 4.1):$services.query.xwql("xwqlstatement").setWiki("mywiki").execute()
- You can add filters to apply to the query and multiple filters can be added to a query.
- The hidden filter will exclude documents marked as hidden from the query results, except if the user has chosen to see hidden documents in his profile preferences:$services.query.xwql("xwqlstatement").addFilter("hidden").execute()
- The unique filter will make sure you don't get duplicate results with a short-form query:$services.query.xwql("xwqlstatement").addFilter("unique").execute()
- The count filter allows to transform a short-form query into a count of the distinct results it would return. Unfortunately this doesn't work with XWQL on versions older than 4.4.1:$services.query.xwql("xwqlstatement").addFilter("count").execute()
## You can also use the following shortcut
$services.query.xwql("xwqlstatement").count() - The language filter will transform the query to also return document languages (the result you'll get is List<Object[]> with Object[0] being the document name and Object[1] being the document language, e.g. en, fr, fr_FR, etc): $services.query.xwql("xwqlstatement").addFilter("language").execute()
- The currentlanguage filter will only return documents in the current language: $services.query.xwql("xwqlstatement").addFilter("currentlanguage").execute()
- The hidden filter will exclude documents marked as hidden from the query results, except if the user has chosen to see hidden documents in his profile preferences:
- Binding a LIKE value
You need to be careful about 2 things:
- Define which part of the parameter you wish to escape. For example if you have a parameter representing a Document reference and you wish to find all children, you'll want to escape the % and _ characters (and even the [ character since on some DB the constructs [specifier] and [^specifier] have a special meaning) from the Document reference but end the parameter value with a % that you don't want to escape.
- If you wish that your query works on MySQL then you need to be careful to also have the \ character escaped since MySQL considers it as its escape character by default.
Thus the recommended approach is to do the following:
$services.query.xwql("xwqlstatement like :ref").bindValue("ref").literal("${documentReference}.").anyChars().query().execute()The full API is:
- literal(): Represents characters on which to perform escaping.
- anyChar(): Represents the _ character in SQL (i.e. any single character).
- anyChars(): Represents the % character in SQL (i.e. one or several characters).
If you wish to bind several parameters at once you should write something like:
#set ($queryParams = [])
...
#set ($discard = $queryParams.add($services.query.parameter().literal($request.space)))
...
$query.bindValues($queryParams)... : - Bind a non-LIKE value:$services.query.xwql("xwqlstatement containing :var").bindValue("var", "value").execute()
Specific example that will return all documents that have comments containing the test string:
$services.query.xwql("select doc.fullName from Document doc, doc.object(XWiki.XWikiComments) com WHERE doc.translation = 0 and com.comment LIKE :value").bindValue("value", "%test%").execute()You can also bind a list or an array to a query parameter:
#set ($query = $services.query.xwql('where doc.name in (:myList)'))
$query.bindValue('myList', ['Activity', 'BlogPostClass', 'Welcome']).execute() - Behaviors can be chained:$services.query.xwql("xwqlstatement").setWiki("mywiki").setOffset(2).setLimit(5).execute()
For HQL:
From other Scripting languages
For XWQL (example with Groovy):
For HQL:
From Java components
Get a QueryManager injected. For example :
private QueryManager queryManager;
Obtain and execute a query :
Example:
List<Object[]> results = (List<Object[]>) (List) q.execute();
for (Object[] wikiMacroDocumentData : results) {
String space = (String) wikiMacroDocumentData[0];
String name = (String) wikiMacroDocumentData[1];
String author = (String) wikiMacroDocumentData[2];
...
}
Pitfalls
Finding pages under nested pages
You may be tempted to write:
#set ($query = $query.bindValue('space', "space1.space2With\.Dot.%")
$query.execute()
However this will fail under MySQL (it'll work under HSQLDB though)! The reason is that MySQL considers the \ character as an escape character.
To make this query work on all DBs you need to write:
#set ($spaceReferenceString = "space1.space2With\.Dot")
#set ($spaceLike = $spaceReferenceString.replaceAll('([%_!])', '!$1').concat('.%'))
#set ($query = $query.bindValue('space', $spaceLike))
$query.execute()
Note that % and _ are special LIKE characters (means any characters for the former and one character for the latter).
XWQL Implementation Details
The XWQL grammar is defined here.
Note that currently the XWQL implementation translates queries into HQL which are then executed using Hibernate against the RDBMS.
XWiki-specific extensions in XWQL over JPQL
- Short form queries:
- where <expr> means select doc.fullName where <expr>
- from <fromlist> [where <expr>] means select doc.fullName from Document as doc, <fromlist> [where <expr>]
- Special syntax for XWiki objects in from and where clauses:
- from doc.object(Class) as obj
- where doc.object(Class).prop = 'something'
The class name must be quoted if it contains special characters (e.g. Unicode). Both single and double quotes can be used.
Note that any JPQL query is a correct XWQL query. This also means almost any HQL query (HQL is a JPQL superset) will work with XWQL (when executed on the XWiki Hibernate store).
Noteworthy differences between XWQL and HQL
Description | XWQL | HQL | Details |
---|---|---|---|
Like statement can't be transformed in XWQL | where upper(doc.name) like 'WEBHOME' | where upper(doc.name) like upper('webhome') | The string_expression must have a string value. The pattern_value is a string literal or a string-valued input parameter |
Using the XWiki object (Deprecated)
See the Velocity HQL Guide (till we incorporate it back in this guide).
For Developers
Query Filters
It's possible to write code to filter queries. By filtering, we mean the ability to perform modifications on the query statement, parameters and even the returned results from the store.
To write a query filter, create a Component implementing the QueryFilter interface role.
For example:
* Query filter adding a select clause to also return the document's language. This is useful if you need to adapt
* your display based on the document's language (for example in search results).
*
* @version $Id: d8e8ad0d6721f23c6a34dd209d4a7940c98a02fc $
* @since 5.1M2
*/
@Component
@Named("language")
@Singleton
public class LanguageQueryFilter implements QueryFilter
{
/**
* The select clause to extend in order to also return the document's language.
*/
private static final String SELECT_CLAUSE_TO_EXTEND = "select doc.fullName";
/**
* @param statement statement to filter.
* @return true if the filter can be applied to the passed statement, false otherwise.
*/
private boolean isFilterable(String statement)
{
return statement.startsWith(SELECT_CLAUSE_TO_EXTEND);
}
@Override
public String filterStatement(String statement, String language)
{
String result = statement.trim();
if (Query.HQL.equals(language) && isFilterable(result)) {
result = SELECT_CLAUSE_TO_EXTEND + ", doc.language" + result.substring(SELECT_CLAUSE_TO_EXTEND.length());
}
return result;
}
@Override
public List filterResults(List results)
{
return results;
}
@Override
public Query filterQuery(Query query)
{
return query;
}
}
filterQuery() method now allows to completely configure any part of the Query and since it's more generic it can be used as a replacement for the filterStatement() method.
TheHere's an example of how to use it to modify the statement passed:
public Query filterQuery(Query query)
{
return new WrappingQuery(query)
{
@Override
public String getStatement()
{
return ... modified statement here...
}
};
}