mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			165 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			165 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * #%L
 | |
|  * Alfresco Repository
 | |
|  * %%
 | |
|  * Copyright (C) 2005 - 2016 Alfresco Software Limited
 | |
|  * %%
 | |
|  * This file is part of the Alfresco software. 
 | |
|  * If the software was purchased under a paid Alfresco license, the terms of 
 | |
|  * the paid license agreement will prevail.  Otherwise, the software is 
 | |
|  * provided under the following open source license terms:
 | |
|  * 
 | |
|  * Alfresco is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Lesser General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  * 
 | |
|  * Alfresco is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Lesser General Public License for more details.
 | |
|  * 
 | |
|  * You should have received a copy of the GNU Lesser General Public License
 | |
|  * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
 | |
|  * #L%
 | |
|  */
 | |
| package org.alfresco.repo.search;
 | |
| 
 | |
| import java.util.HashMap;
 | |
| import java.util.Iterator;
 | |
| import java.util.List;
 | |
| import java.util.Map;
 | |
| 
 | |
| import org.alfresco.service.cmr.dictionary.DictionaryService;
 | |
| import org.alfresco.service.cmr.search.QueryParameterDefinition;
 | |
| import org.alfresco.service.namespace.DynamicNamespacePrefixResolver;
 | |
| import org.alfresco.service.namespace.NamespacePrefixResolver;
 | |
| import org.alfresco.service.namespace.NamespaceService;
 | |
| import org.alfresco.service.namespace.QName;
 | |
| import org.dom4j.Element;
 | |
| import org.dom4j.Namespace;
 | |
| 
 | |
| public class QueryCollectionImpl implements QueryCollection
 | |
| {
 | |
|     private static final org.dom4j.QName ELEMENT_QNAME = new org.dom4j.QName("query-register", new Namespace(NamespaceService.ALFRESCO_PREFIX, NamespaceService.ALFRESCO_URI));
 | |
| 
 | |
|     private static final org.dom4j.QName NAME = new org.dom4j.QName("name", new Namespace(NamespaceService.ALFRESCO_PREFIX, NamespaceService.ALFRESCO_URI));
 | |
| 
 | |
|     private static final org.dom4j.QName NAMESPACES = new org.dom4j.QName("namespaces", new Namespace(NamespaceService.ALFRESCO_PREFIX, NamespaceService.ALFRESCO_URI));
 | |
| 
 | |
|     private static final org.dom4j.QName NAMESPACE = new org.dom4j.QName("namespace", new Namespace(NamespaceService.ALFRESCO_PREFIX, NamespaceService.ALFRESCO_URI));
 | |
| 
 | |
|     private static final org.dom4j.QName PREFIX = new org.dom4j.QName("prefix", new Namespace(NamespaceService.ALFRESCO_PREFIX, NamespaceService.ALFRESCO_URI));
 | |
| 
 | |
|     private static final org.dom4j.QName URI = new org.dom4j.QName("uri", new Namespace(NamespaceService.ALFRESCO_PREFIX, NamespaceService.ALFRESCO_URI));
 | |
|     
 | |
|     private String name;
 | |
|     
 | |
|     private Map<QName, QueryParameterDefinition> parameters = new HashMap<QName, QueryParameterDefinition>();
 | |
|     
 | |
|     private Map<QName, CannedQueryDef> queries = new HashMap<QName, CannedQueryDef>();
 | |
|     
 | |
|     NamespacePrefixResolver namespacePrefixResolver;
 | |
| 
 | |
|     public QueryCollectionImpl(String name, Map<QName, QueryParameterDefinition> parameters, NamespacePrefixResolver namespacePrefixResolver)
 | |
|     {
 | |
|         super();
 | |
|         this.name = name;
 | |
|         this.parameters = parameters;
 | |
|         this.namespacePrefixResolver = namespacePrefixResolver;
 | |
|     }
 | |
| 
 | |
|     public String getName()
 | |
|     {
 | |
|        return name;
 | |
|     }
 | |
| 
 | |
|     public boolean containsQueryDefinition(QName qName)
 | |
|     {
 | |
|         return queries.containsKey(qName);
 | |
|     }
 | |
| 
 | |
|     private void addQueryDefinition(CannedQueryDef queryDefinition)
 | |
|     {
 | |
|         queries.put(queryDefinition.getQname(), queryDefinition);
 | |
|     }
 | |
|     
 | |
|     public CannedQueryDef getQueryDefinition(QName qName)
 | |
|     {
 | |
|         return queries.get(qName);
 | |
|     }
 | |
| 
 | |
|     public boolean containsParameterDefinition(QName qName)
 | |
|     {
 | |
|         return parameters.containsKey(qName);
 | |
|     }
 | |
| 
 | |
|     public QueryParameterDefinition getParameterDefinition(QName qName)
 | |
|     {
 | |
|         return parameters.get(qName);
 | |
|     }
 | |
| 
 | |
|     public NamespacePrefixResolver getNamespacePrefixResolver()
 | |
|     {
 | |
|         return namespacePrefixResolver;
 | |
|     }
 | |
| 
 | |
|     
 | |
|     public static QueryCollection createQueryCollection(Element element, DictionaryService dictionaryService, NamespacePrefixResolver nspr)
 | |
|     {
 | |
|         DynamicNamespacePrefixResolver dnpr = new DynamicNamespacePrefixResolver(nspr);
 | |
|         if (element.getName().equals(ELEMENT_QNAME.getName()))
 | |
|         {
 | |
|             String name = null;
 | |
|             Element nameElement = element.element(NAME.getName());
 | |
|             if(nameElement != null)
 | |
|             {
 | |
|                name = nameElement.getText();
 | |
|             } 
 | |
|             
 | |
|             Element nameSpaces = element.element(NAMESPACES.getName());
 | |
|             if(nameSpaces != null)
 | |
|             {
 | |
|                 List ns = nameSpaces.elements(NAMESPACE.getName());
 | |
|                 for(Iterator it = ns.iterator(); it.hasNext(); /**/)
 | |
|                 {
 | |
|                     Element nsElement = (Element)it.next();
 | |
|                     Element prefixElement = nsElement.element(PREFIX.getName());
 | |
|                     Element uriElement = nsElement.element(URI.getName());
 | |
|                     if((prefixElement != null) && (nsElement != null))
 | |
|                     {
 | |
|                         dnpr.registerNamespace(prefixElement.getText(), uriElement.getText());
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             // Do property definitions so they are available to query defintions
 | |
|             
 | |
|             Map<QName, QueryParameterDefinition> parameters = new HashMap<QName, QueryParameterDefinition>();
 | |
|             List list = element.elements(QueryParameterDefImpl.getElementQName().getName());
 | |
|             for(Iterator it = list.iterator(); it.hasNext(); /**/)
 | |
|             {
 | |
|                 Element defElement = (Element) it.next();
 | |
|                 QueryParameterDefinition paramDef = QueryParameterDefImpl.createParameterDefinition(defElement, dictionaryService, nspr);
 | |
|                 parameters.put(paramDef.getQName(), paramDef);
 | |
|             }
 | |
|             
 | |
|             QueryCollectionImpl collection = new QueryCollectionImpl(name, parameters, dnpr);
 | |
|             
 | |
|             list = element.elements(CannedQueryDefImpl.getElementQName().getName());
 | |
|             for(Iterator it = list.iterator(); it.hasNext(); /**/)
 | |
|             {
 | |
|                 Element defElement = (Element) it.next();
 | |
|                 CannedQueryDefImpl queryDef = CannedQueryDefImpl.createCannedQuery(defElement, dictionaryService, collection, nspr);
 | |
|                 collection.addQueryDefinition(queryDef);
 | |
|             }
 | |
|             
 | |
|             return collection;
 | |
|         }
 | |
|         else
 | |
|         {
 | |
|             return null;
 | |
|         }
 | |
|     }
 | |
| }
 |