View Javadoc

1   /**
2    * This file Copyright (c) 2003-2011 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.cms.util;
35  
36  import info.magnolia.cms.core.Content;
37  import info.magnolia.cms.core.ItemType;
38  import info.magnolia.context.MgnlContext;
39  import info.magnolia.jcr.util.NodeUtil;
40  
41  import org.apache.commons.lang.StringUtils;
42  import org.apache.commons.lang.time.DateUtils;
43  import org.slf4j.Logger;
44  import org.slf4j.LoggerFactory;
45  
46  import javax.jcr.LoginException;
47  import javax.jcr.NodeIterator;
48  import javax.jcr.RepositoryException;
49  import javax.jcr.Session;
50  import javax.jcr.query.InvalidQueryException;
51  import javax.jcr.query.Query;
52  import javax.jcr.query.QueryManager;
53  import javax.jcr.query.qom.QueryObjectModel;
54  
55  import java.util.ArrayList;
56  import java.util.Arrays;
57  import java.util.Calendar;
58  import java.util.Collection;
59  import java.util.Collections;
60  import java.util.HashSet;
61  import java.util.Iterator;
62  import java.util.Set;
63  
64  /**
65   * Util to execute queries as simple as possible.
66   * @version $Id$
67   *
68   */
69  public class QueryUtil {
70  
71      private static Logger log = LoggerFactory.getLogger(QueryUtil.class);
72  
73      /**
74       * Executes a query.
75       * @deprecated Since 4.5.4 use search methods.
76       */
77      public static Collection<Content> query(String repository, String statement) {
78          return query(repository, statement, "sql");
79      }
80  
81      /**
82       * Executes a query.
83       * @deprecated Since 4.5.4 use search methods.
84       */
85      public static Collection<Content> query(String repository, String statement, String language) {
86          return query(repository, statement, language, ItemType.NT_BASE);
87      }
88  
89      /**
90      * @deprecated Since 4.5.4 use search methods.
91      */
92      public static Collection<Content> exceptionThrowingQuery(String repository, String statement, String language, String returnItemType) throws RepositoryException {
93          return exceptionThrowingQuery(repository, statement, language, returnItemType, Long.MAX_VALUE);
94      }
95  
96      /**
97       * Executes a query, throwing any exceptions that arise as a result.
98       * @deprecated Since 4.5.4 use search methods.
99       */
100     public static Collection<Content> exceptionThrowingQuery(String repository, String statement, String language, String returnItemType,
101         long maxResultSize) throws RepositoryException {
102         Collection<Content> results = new ArrayList<Content>();
103         if(maxResultSize <= 0){
104             maxResultSize = Long.MAX_VALUE;
105         }
106         NodeIterator iterator = search(repository, statement, language, returnItemType);
107 
108         long count = 1;
109         while(iterator.hasNext() && count <= maxResultSize){
110             results.add(ContentUtil.getContent(repository, iterator.nextNode().getPath()));
111             count++;
112         }
113         return results;
114     }
115 
116     /**
117      * @deprecated Since 4.5.4 use search methods.
118      */
119     public static Collection<Content> query(String repository, String statement, String language, String returnItemType) {
120         return query(repository, statement, language, returnItemType, Long.MAX_VALUE);
121     }
122 
123     /**
124      * Executes a query - if an exception is thrown, it is logged and an empty collection is
125      * returned.
126      * @deprecated Since 4.5.4 use search methods.
127      */
128     @SuppressWarnings("unchecked")
129     // Collections.EMPTY_LIST;
130     public static Collection<Content> query(String repository, String statement, String language, String returnItemType, long maxResultSize) {
131         try {
132             return exceptionThrowingQuery(repository, statement, language, returnItemType, maxResultSize);
133         }
134         catch (Exception e) {
135             log.error("can't execute query [" + statement + "], will return empty collection", e);
136         }
137         return Collections.EMPTY_LIST;
138     }
139 
140     /**
141      * @param month 1-12 (as opposed to java.util.Calendar 0-11 notation)
142      * @deprecated
143      */
144     public static String createDateExpression(int year, int month, int day) {
145         Calendar cal = Calendar.getInstance();
146         cal.set(year, month - 1, day);
147         return createDateExpression(cal);
148     }
149 
150     /**
151      * Expression representing a date.
152      * @deprecated since 4.5.4 use info.magnolia.cms.util.DateUtil.createDateExpression(calendar)
153      */
154     public static String createDateExpression(Calendar calendar) {
155         return DateUtil.createDateExpression(calendar);
156     }
157 
158     /**
159      * @param month 1-12 (as opposed to java.util.Calendar 0-11 notation)
160      * @deprecated
161      */
162     public static String createDateTimeExpression(int year, int month, int day, int hour, int minutes, int seconds) {
163         Calendar cal = Calendar.getInstance();
164         cal.set(year, month - 1, day, hour, minutes, seconds);
165         return createDateTimeExpression(cal);
166     }
167 
168     /**
169      * Expression representing a date and time.
170      * @deprecated since 4.5.4 use info.magnolia.cms.util.DateUtil.createDateTimeExpression(calendar)
171      */
172     public static String createDateTimeExpression(Calendar calendar) {
173         return DateUtil.createDateTimeExpression(calendar);
174     }
175 
176     /**
177      * @param month 1-12 (as opposed to java.util.Calendar 0-11 notation)
178      * @deprecated
179      */
180     public static String createDateTimeExpressionIgnoreTimeZone(int year, int month, int day, int hour, int minutes, int seconds) {
181         Calendar cal = Calendar.getInstance(DateUtils.UTC_TIME_ZONE);
182         cal.set(year, month - 1, day, hour, minutes, seconds);
183         return createDateTimeExpression(cal);
184     }
185 
186     /**
187      * Do not consider the timezone.
188      * @deprecated since 4.5.4 use info.magnolia.cms.util.DateUtil.createDateTimeExpressionIgnoreTimeZone(calendar)
189      */
190     public static String createDateTimeExpressionIgnoreTimeZone(Calendar calendar) {
191         return DateUtil.createDateTimeExpressionIgnoreTimeZone(calendar);
192     }
193     
194     /**
195      * Executes the query based on QOM and then pops-up in the node hierarchy until returnItemType is found. If the result
196      * is not returnItemType or none of its parents are then next node in result is checked.
197      * Duplicate nodes are removed from result.
198      * For date/time expressions use <code>DateUtil.create*Expression()</code> methods.
199      * @param model
200      * @param returnItemType
201      * @return Result as NodeIterator
202      * @throws InvalidQueryException
203      * @throws RepositoryException
204      */
205     public static NodeIterator search(QueryObjectModel model, String returnItemType) throws InvalidQueryException, RepositoryException{
206         return NodeUtil.filterDuplicates(NodeUtil.filterParentNodeType(model.execute().getNodes(), returnItemType));
207     }
208 
209     /**
210      * Executes the query with given language.Unlike in the old API item type has to be specified in query itself.
211      * <code>SELECT * FROM [mgnl:page]</code> example for selecting just pages in JCR SQL2 language.
212      * Duplicate nodes are removed from result.
213      * For date/time expressions use <code>DateUtil.create*Expression()</code> methods.
214      * @param workspace
215      * @param statement
216      * @param language
217      * @return Result as NodeIterator
218      * @throws InvalidQueryException
219      * @throws RepositoryException
220      */
221     public static NodeIterator search(String workspace, String statement, String language) throws InvalidQueryException, RepositoryException{
222         Session session = MgnlContext.getJCRSession(workspace);
223         QueryManager manager = session.getWorkspace().getQueryManager();
224         Query query = manager.createQuery(statement, language);
225 
226         return NodeUtil.filterDuplicates(query.execute().getNodes());
227     }
228 
229     /**
230      * Executes the query using JCR SQL2 language. Unlike in the old API item type has to be specified in query itself.
231      * <code>SELECT * FROM [mgnl:page]</code> example for selecting just pages.
232      * For executing old query use info.magnolia.cms.util.QueryUtil.search(String workspace, String statement, String language)
233      * where you specify <code>Query.SQL</code> as the language.
234      * For date/time expressions use <code>DateUtil.create*Expression()</code> methods.
235      * @param workspace
236      * @param statement
237      * @return Result as NodeIterator
238      * @throws InvalidQueryException
239      * @throws RepositoryException
240      */
241     public static NodeIterator search(String workspace, String statement) throws InvalidQueryException, RepositoryException{
242         return search(workspace, statement, javax.jcr.query.Query.JCR_SQL2);
243     }
244 
245     /**
246      * Searches for statement and then pops-up in the node hierarchy until returnItemType is found. If the result
247      * is not returnItemType or none of its parents are then next node in result is checked. Duplicate nodes are
248      * removed from result.
249      * For date/time expressions use <code>DateUtil.create*Expression()</code> methods.
250      * @param workspace
251      * @param statement
252      * @param language
253      * @param returnItemType
254      * @return query result as collection of nodes
255      * @throws LoginException
256      * @throws RepositoryException
257      */
258     public static NodeIterator search(String workspace, String statement, String language, String returnItemType) throws LoginException, RepositoryException{
259         NodeIterator resultIterator = search(workspace, statement, language);
260 
261         return NodeUtil.filterDuplicates(NodeUtil.filterParentNodeType(resultIterator, returnItemType));
262     }
263     
264     /**
265      * Creates a simple SQL2 query statement.
266      * 
267      * @param statement
268      * @param startPath
269      */
270     public static String buildQuery (String statement, String startPath){
271         Set<String> arguments = new HashSet<String>(Arrays.asList(StringUtils.splitByWholeSeparator(statement, ",")));
272 
273         Iterator<String> argIt = arguments.iterator();
274         String queryString = "select * from [nt:base] as t where ISDESCENDANTNODE(["+startPath+"])";
275         while(argIt.hasNext()){
276             queryString = queryString + " AND contains(t.*, '"+argIt.next()+"')";
277         }
278         log.debug("query string: " + queryString);
279         return queryString;
280     }
281 }