/* * Copyright 2004-2009 the original author or authors. * * Licensed 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.compass.core; import org.compass.core.config.CompassSettings; /** * A specialized interface that provides only search and read capabilities. * * <p>Using the session depends on how transaction managemnet should be done (also see * {@link Compass#openSearchSession()}. The simplest form looks like this: * * <pre> * CompassSearchSession session = compass.openSearchSession(); * try { * // do search operations * } finally { * session.close(); * } * </pre> * * @author kimchy */ public interface CompassSearchSession { /** * Runtimes settings that apply on the session level. * * @return Runtime settings applies on the session level */ CompassSettings getSettings(); /** * When not using the {@link org.compass.core.CompassTransaction} interface, will begin a local transaction * instead of the configured transaction. */ CompassSearchSession useLocalTransaction(); /** * Returns a Resource that match the mapping specified for the defined class * type, and specified id. The id can be an object of the class (with the id * attributes set), an array of id objects, or the actual id object. Returns * <code>null</code> if the object is not found. * * @param clazz The class that represents the required mapping * @param id The id that identifies the resource * @return The resource, returns <code>null</code> if not found * @throws CompassException */ Resource getResource(Class clazz, Object id) throws CompassException; /** * Returns a Resource that match the mapping specified for the defined class * type, and specified ids. * * @param clazz The class that represents the required mapping * @param ids The ids that identifies the resource * @return The resource, returns <code>null</code> if not found * @throws CompassException */ Resource getResource(Class clazz, Object... ids) throws CompassException; /** * Returns a Resource that match the mapping specified for the defined alias * (possibley different object types), and matches the specified id. The id * can be an object of the class (with the id attributes set), an array of * id objects, or the actual id object. Returns <code>null</code> if the * object is not found. * * @param alias The alias that represents the required mapping * @param id The id that identifies the resource * @return The resource * @throws CompassException */ Resource getResource(String alias, Object id) throws CompassException; /** * Returns a Resource that match the mapping specified for the defined alias * (possibley different object types), and matches the specified ids. Returns * <code>null</code> if the object is not found. * * @param alias The alias that represents the required mapping * @param ids The ids that identifies the resource * @return The resource * @throws CompassException */ Resource getResource(String alias, Object... ids) throws CompassException; /** * Loads and returns a Resource that match the mapping specified for the * defined class, and matches the specified id. The id can be an object of * the class (with the id attributes set), an array of id objects, or the * actual id object. Throws an exception if the resource is not found. * * @param clazz The class that represents the required mapping * @param id The id that identifies the resource * @return The resource * @throws CompassException */ Resource loadResource(Class clazz, Object id) throws CompassException; /** * Loads and returns a Resource that match the mapping specified for the * defined class, and matches the specified ids. Throws an exception if * the resource is not found. * * @param clazz The class that represents the required mapping * @param ids The ids that identifies the resource * @return The resource * @throws CompassException */ Resource loadResource(Class clazz, Object... ids) throws CompassException; /** * Loads and returns a Resource that match the mapping specified for the * defined alias, and matches the specified id. The id can be an object of * the class (with the id attributes set), an array of id objects, or the * actual id object. Throws an exception if the resource is not found. * * @param alias The alias that represents the required mapping * @param id The id that identifies the resource * @return The resource * @throws CompassException */ Resource loadResource(String alias, Object id) throws CompassException; /** * Loads and returns a Resource that match the mapping specified for the * defined alias, and matches the specified ids. Throws an exception if * the resource is not found. * * @param alias The alias that represents the required mapping * @param ids The ids that identifies the resource * @return The resource * @throws CompassException */ Resource loadResource(String alias, Object... ids) throws CompassException; /** * Returns an object that match the mapping specified for the defined class, * and matches the specified id. The id can be an object of the class (with * the id attributes set), an array of id objects, or the actual id object. * Returns <code>null</code> if the object is not found. * * @param clazz The class that represents the required mapping * @param id The id that identifies the resource * @return The object, returns <code>null</code> if not found * @throws CompassException */ <T> T get(Class<T> clazz, Object id) throws CompassException; /** * Returns an object that match the mapping specified for the defined class, * and matches the specified ids. Returns <code>null</code> if the object * is not found. * * @param clazz The class that represents the required mapping * @param ids The ids that identifies the resource * @return The object, returns <code>null</code> if not found * @throws CompassException */ <T> T get(Class<T> clazz, Object... ids) throws CompassException; /** * Returns an object that match the mapping specified for the defined alias, * and matches the specified id. The id can be an object of the class (with * the id attributes set), an array of id objects, or the actual id object. * Returns <code>null</code> if the object is not found. * * @param alias The alias that represents the required mapping * @param id The id that identifies the resource * @return The object, returns <code>null</code> if not found * @throws CompassException */ Object get(String alias, Object id) throws CompassException; /** * Returns an object that match the mapping specified for the defined alias, * and matches the specified ids. Returns <code>null</code> if the object is * not found. * * @param alias The alias that represents the required mapping * @param ids The ids that identifies the resource * @return The object, returns <code>null</code> if not found * @throws CompassException */ Object get(String alias, Object... ids) throws CompassException; /** * Loads and returns an object that match the mapping specified for the * defined class, and matches the specified id. The id can be an object of * the class (with the id attributes set), an array of id objects, or the * actual id object. Throws an exception if the resource is not found. * * @param clazz The class that represents the required mapping * @param id The id that identifies the resource * @return The object * @throws CompassException */ <T> T load(Class<T> clazz, Object id) throws CompassException; /** * Loads and returns an object that match the mapping specified for the * defined class, and matches the specified ids. * * @param clazz The class that represents the required mapping * @param ids The ids that identifies the resource * @return The object * @throws CompassException */ <T> T load(Class<T> clazz, Object... ids) throws CompassException; /** * Loads and returns an object that match the mapping specified for the * defined class, and matches the specified id. The id can be an object of * the class (with the id attributes set), an array of id objects, or the * actual id object. Throws an exception if the resource is not found. * * @param alias The alias that represents the required mapping * @param id The id that identifies the resource * @return The object * @throws CompassException */ Object load(String alias, Object id) throws CompassException; /** * Loads and returns an object that match the mapping specified for the * defined class, and matches the specified ids. * * @param alias The alias that represents the required mapping * @param ids The ids that identifies the resource * @return The object * @throws CompassException */ Object load(String alias, Object... ids) throws CompassException; /** * Finds a list of objects that match the specified query. The query syntax * is a search engine format query. For detailed description of the query * syntax please visit the site. * <p> * Several examples are: * <ul> * <li>A set of words - i.e. "Jack London". Compass will search the default * property (usually ALL properties, specified in CompassEnvironment).</li> * <li>A set of words prefixed by meta data name - i.e. author:"Jack * London". Compass will search only meta data name author matching keywords * Jack London. * <li>Multiple meta data names - i.e. author:"Jack London" AND book:Fang*. * Compass will search both meta data name author matching keywords Jack * London and meta data name book matching wildcard Fang*</li> * </ul> * </p> * <p> * Note that the list may contains several object types (classes) with no * relation between them (except for the semantic relation). * </p> * * @param query The query string to search by * @return A hits of objects that matches the query string * @throws CompassException */ CompassHits find(String query) throws CompassException; /** * Creats a new query builder, used to build queries programmatically. * * @return The query builder. */ CompassQueryBuilder queryBuilder() throws CompassException; /** * Creats a new query filter builder, used to build filters of queries * programmatically. * * @return The query filter builder. */ CompassQueryFilterBuilder queryFilterBuilder() throws CompassException; /** * Creates a new terms frequencies builder used to get terms names and * freqs for a list of property names. * * <p>Note, term frequencies are updated to reflect latest changes to the index * only after an optimization has taken place (note, calling optimize might not * cause optimization). * * @param names The property names * @return A term freqs builder * @throws CompassException */ CompassTermFreqsBuilder termFreqsBuilder(String... names) throws CompassException; /** * Returns an Analyzer helper. Can be used to help analyze given texts. * * @return the analyzer helper * @throws CompassException */ CompassAnalyzerHelper analyzerHelper() throws CompassException; /** * Closes the search session. */ void close(); }