📄 queryimpl.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.jackrabbit.core.query;import org.apache.jackrabbit.core.ItemManager;import org.apache.jackrabbit.core.SessionImpl;import org.apache.jackrabbit.name.MalformedPathException;import org.apache.jackrabbit.name.NameException;import org.apache.jackrabbit.name.NamespaceResolver;import org.apache.jackrabbit.name.NoPrefixDeclaredException;import org.apache.jackrabbit.name.Path;import org.apache.jackrabbit.name.QName;import org.apache.jackrabbit.name.NameFormat;import org.apache.jackrabbit.name.PathFormat;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import javax.jcr.ItemExistsException;import javax.jcr.ItemNotFoundException;import javax.jcr.Node;import javax.jcr.PathNotFoundException;import javax.jcr.RepositoryException;import javax.jcr.UnsupportedRepositoryOperationException;import javax.jcr.lock.LockException;import javax.jcr.nodetype.ConstraintViolationException;import javax.jcr.query.InvalidQueryException;import javax.jcr.query.QueryResult;import javax.jcr.version.VersionException;import java.text.NumberFormat;/** * Provides the default implementation for a JCR query. */public class QueryImpl extends AbstractQueryImpl { /** * The logger instance for this class */ private static final Logger log = LoggerFactory.getLogger(QueryImpl.class); /** * The session of the user executing this query */ protected SessionImpl session; /** * The query statement */ protected String statement; /** * The syntax of the query statement */ protected String language; /** * The actual query implementation that can be executed */ protected ExecutableQuery query; /** * The node where this query is persisted. Only set when this is a persisted * query. */ protected Node node; /** * The query handler for this query. */ protected QueryHandler handler; /** * Flag indicating whether this query is initialized. */ private boolean initialized = false; /** * @inheritDoc */ public void init(SessionImpl session, ItemManager itemMgr, QueryHandler handler, String statement, String language) throws InvalidQueryException { checkNotInitialized(); this.session = session; this.statement = statement; this.language = language; this.handler = handler; this.query = handler.createExecutableQuery(session, itemMgr, statement, language); initialized = true; } /** * @inheritDoc */ public void init(SessionImpl session, ItemManager itemMgr, QueryHandler handler, Node node) throws InvalidQueryException, RepositoryException { checkNotInitialized(); this.session = session; this.node = node; this.handler = handler; if (!node.isNodeType(session.getJCRName(QName.NT_QUERY))) { throw new InvalidQueryException("node is not of type nt:query"); } statement = node.getProperty(session.getJCRName(QName.JCR_STATEMENT)).getString(); language = node.getProperty(session.getJCRName(QName.JCR_LANGUAGE)).getString(); query = handler.createExecutableQuery(session, itemMgr, statement, language); initialized = true; } /** * This method simply forwards the <code>execute</code> call to the * {@link ExecutableQuery} object returned by * {@link QueryHandler#createExecutableQuery}. * {@inheritDoc} */ public QueryResult execute() throws RepositoryException { checkInitialized(); long time = System.currentTimeMillis(); QueryResult result = query.execute(); if (log.isDebugEnabled()) { time = System.currentTimeMillis() - time; NumberFormat format = NumberFormat.getNumberInstance(); format.setMinimumFractionDigits(2); format.setMaximumFractionDigits(2); String seconds = format.format((double) time / 1000); log.debug("executed in " + seconds + " s. (" + statement + ")"); } return result; } /** * {@inheritDoc} */ public String getStatement() { checkInitialized(); return statement; } /** * {@inheritDoc} */ public String getLanguage() { checkInitialized(); return language; } /** * {@inheritDoc} */ public String getStoredQueryPath() throws ItemNotFoundException, RepositoryException { checkInitialized(); if (node == null) { throw new ItemNotFoundException("not a persistent query"); } return node.getPath(); } /** * {@inheritDoc} */ public Node storeAsNode(String absPath) throws ItemExistsException, PathNotFoundException, VersionException, ConstraintViolationException, LockException, UnsupportedRepositoryOperationException, RepositoryException { checkInitialized(); try { Path p = session.getQPath(absPath).getNormalizedPath(); if (!p.isAbsolute()) { throw new RepositoryException(absPath + " is not an absolute path"); } String relPath = session.getJCRPath(p).substring(1); Node queryNode = session.getRootNode().addNode( relPath, session.getJCRName(QName.NT_QUERY)); // set properties queryNode.setProperty(session.getJCRName(QName.JCR_LANGUAGE), language); queryNode.setProperty(session.getJCRName(QName.JCR_STATEMENT), statement); node = queryNode; return node; } catch (NameException e) { throw new RepositoryException(e.getMessage(), e); } } //-----------------------------< internal >--------------------------------- /** * Checks if this query is not yet initialized and throws an * <code>IllegalStateException</code> if it is already initialized. */ protected void checkNotInitialized() { if (initialized) { throw new IllegalStateException("already initialized"); } } /** * Checks if this query is initialized and throws an * <code>IllegalStateException</code> if it is not yet initialized. */ protected void checkInitialized() { if (!initialized) { throw new IllegalStateException("not initialized"); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -