/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002, 2010 Oracle and/or its affiliates. All rights reserved. * */ package com.sleepycat.persist; import java.util.Set; import com.sleepycat.db.Database; // for javadoc import com.sleepycat.db.DatabaseConfig; import com.sleepycat.db.DatabaseException; import com.sleepycat.db.Environment; import com.sleepycat.db.SecondaryConfig; import com.sleepycat.db.Sequence; import com.sleepycat.db.SequenceConfig; import com.sleepycat.db.Transaction; import com.sleepycat.persist.evolve.EvolveConfig; import com.sleepycat.persist.evolve.EvolveStats; import com.sleepycat.persist.evolve.IncompatibleClassException; import com.sleepycat.persist.evolve.Mutations; import com.sleepycat.persist.impl.Store; import com.sleepycat.persist.model.DeleteAction; import com.sleepycat.persist.model.Entity; // for javadoc import com.sleepycat.persist.model.EntityModel; import com.sleepycat.persist.model.PrimaryKey; import com.sleepycat.persist.model.SecondaryKey; /** * A store for managing persistent entity objects. * *
{@code EntityStore} objects are thread-safe. Multiple threads may safely * call the methods of a shared {@code EntityStore} object.
* *See the {@link package * summary example} for an example of using an {@code EntityStore}.
* *Before creating an EntityStore
you must create an {@link
* Environment} object using the Berkeley DB engine API. The environment may
* contain any number of entity stores and their associated databases, as well
* as other databases not associated with an entity store.
An entity store is based on an {@link EntityModel}: a data model which * defines persistent classes (entity classes), primary keys, * secondary keys, and relationships between entities. A primary index is * created for each entity class. An associated secondary index is created for * each secondary key. The {@link Entity}, {@link PrimaryKey} and {@link * SecondaryKey} annotations may be used to define entities and keys.
* *To use an EntityStore
, first obtain {@link PrimaryIndex} and
* {@link SecondaryIndex} objects by calling {@link #getPrimaryIndex
* getPrimaryIndex} and {@link #getSecondaryIndex getSecondaryIndex}. Then use
* these indices to store and access entity records by key.
Although not normally needed, you can also use the entity store along * with the {@link com.sleepycat.db Base API}. Methods in the {@link * PrimaryIndex} and {@link SecondaryIndex} classes may be used to obtain * databases and bindings. The databases may be used directly for accessing * entity records. The bindings should be called explicitly to translate * between {@link com.sleepycat.db.DatabaseEntry} objects and entity model * objects.
* *Each primary and secondary index is associated internally with a {@link * Database}. With any of the above mentioned use cases, methods are provided * that may be used for database performance tuning. The {@link * #setPrimaryConfig setPrimaryConfig} and {@link #setSecondaryConfig * setSecondaryConfig} methods may be called anytime before a database is * opened via {@link #getPrimaryIndex getPrimaryIndex} or {@link * #getSecondaryIndex getSecondaryIndex}. The {@link #setSequenceConfig * setSequenceConfig} method may be called anytime before {@link #getSequence * getSequence} is called or {@link #getPrimaryIndex getPrimaryIndex} is called * for a primary index associated with that sequence.
* * * @author Mark Hayes */ public class EntityStore { private Store store; /** * Opens an entity store in a given environment. * * @param env an open Berkeley DB Environment. * * @param storeName the name of the entity store within the given * environment. An empty string is allowed. Named stores may be used to * distinguish multiple sets of persistent entities for the same entity * classes in a single environment. Underlying database names are prefixed * with the store name. * * @param config the entity store configuration, or null to use default * configuration properties. * * @throws IncompatibleClassException if an incompatible class change has * been made and mutations are not configured for handling the change. See * {@link com.sleepycat.persist.evolve Class Evolution} for more * information. * * * @throws DatabaseException the base class for all BDB exceptions. */ public EntityStore(Environment env, String storeName, StoreConfig config) throws StoreExistsException, StoreNotFoundException, IncompatibleClassException, DatabaseException { store = new Store(env, storeName, config, false /*rawAccess*/); } /** * Returns the environment associated with this store. * * @return the environment. */ public Environment getEnvironment() { return store.getEnvironment(); } /** * Returns a copy of the entity store configuration. * * @return the config. */ public StoreConfig getConfig() { return store.getConfig(); } /** * Returns the name of this store. * * @return the name. */ public String getStoreName() { return store.getStoreName(); } /** * Returns the current entity model for this store. The current model is * derived from the configured entity model and the live entity class * definitions. * * @return the model. */ public EntityModel getModel() { return store.getModel(); } /** * Returns the set of mutations that were configured when the store was * opened, or if none were configured, the set of mutations that were * configured and stored previously. * * @return the mutations. */ public Mutations getMutations() { return store.getMutations(); } /** * Returns the primary index for a given entity class, opening it if * necessary. * *If they are not already open, the primary and secondary databases for * the entity class are created/opened together in a single internal * transaction. When the secondary indices are opened, that can cascade to * open other related primary indices.
* * @param primaryKeyClass the class of the entity's primary key field, or * the corresponding primitive wrapper class if the primary key field type * is a primitive. * * @param entityClass the entity class for which to open the primary index. * * @return the primary index. * * @throws IllegalArgumentException if the entity class or classes * referenced by it are not persistent, or the primary key class does not * match the entity's primary key field, or if metadata for the entity or * primary key is invalid. * * * @throws DatabaseException the base class for all BDB exceptions. */ publicNOTE: If the secondary key field is declared in a subclass * of the entity class, use {@link #getSubclassIndex} instead.
* *If a {@link SecondaryKey#relatedEntity} is used and the primary index * for the related entity is not already open, it will be opened by this * method. That will, in turn, open its secondary indices, which can * cascade to open other primary indices.
* * @param primaryIndex the primary index associated with the returned * secondary index. The entity class of the primary index, or one of its * superclasses, must contain a secondary key with the given secondary key * class and key name. * * @param keyClass the class of the secondary key field, or the * corresponding primitive wrapper class if the secondary key field type is * a primitive. * * @param keyName the name of the secondary key field, or the {@link * SecondaryKey#name} if this name annotation property was specified. * * @return the secondary index. * * @throws IllegalArgumentException if the entity class or one of its * superclasses does not contain a key field of the given key class and key * name, or if the metadata for the secondary key is invalid. * * * @throws DatabaseException the base class for all BDB exceptions. */ publicIf a {@link SecondaryKey#relatedEntity} is used and the primary index * for the related entity is not already open, it will be opened by this * method. That will, in turn, open its secondary indices, which can * cascade to open other primary indices.
* * @param primaryIndex the primary index associated with the returned * secondary index. The entity class of the primary index, or one of its * superclasses, must contain a secondary key with the given secondary key * class and key name. * * @param entitySubclass a subclass of the entity class for the primary * index. The entity subclass must contain a secondary key with the given * secondary key class and key name. * * @param keyClass the class of the secondary key field, or the * corresponding primitive wrapper class if the secondary key field type is * a primitive. * * @param keyName the name of the secondary key field, or the {@link * SecondaryKey#name} if this name annotation property was specified. * * @return the secondary index. * * @throws IllegalArgumentException if the given entity subclass does not * contain a key field of the given key class and key name, or if the * metadata for the secondary key is invalid. * * * @throws DatabaseException the base class for all BDB exceptions. */ publicConversion is performed one entity class at a time. An entity class * is converted only if it has {@link Mutations} associated with it via * {@link StoreConfig#setMutations StoreConfig.setMutations}.
* *Conversion of an entity class is performed by reading each entity, * converting it if necessary, and updating it if conversion was performed. * When all instances of an entity class are converted, references to the * appropriate {@link Mutations} are deleted. Therefore, if this method is * called twice successfully without changing class definitions, the second * call will do nothing.
* * * @throws DatabaseException the base class for all BDB exceptions. * * @see com.sleepycat.persist.evolve Class Evolution */ public EvolveStats evolve(EvolveConfig config) throws DatabaseException { return store.evolve(config); } /** * Deletes all instances of this entity class and its (non-entity) * subclasses. * *The primary database for the given entity class will be truncated and * all secondary databases will be removed. The primary and secondary * databases associated with the entity class must not be open except by * this store, since database truncation/removal is only possible when the * database is not open. The databases to be truncated/removed will be * closed before performing this operation, if they were previously opened * by this store.
* *Auto-commit is used implicitly if the store is transactional.
* * @param entityClass the entity class whose instances are to be deleted. * * * @throws DatabaseException the base class for all BDB exceptions. */ public void truncateClass(Class entityClass) throws DatabaseException { store.truncateClass(null, entityClass); } /** * Deletes all instances of this entity class and its (non-entity) * subclasses. * *The primary database for the given entity class will be truncated and * all secondary databases will be removed. The primary and secondary * databases associated with the entity class must not be open except by * this store, since database truncation/removal is only possible when the * database is not open. The databases to be truncated/removed will be * closed before performing this operation, if they were previously opened * by this store.
* * @param txn the transaction used to protect this operation, null to use * auto-commit, or null if the store is non-transactional. * * @param entityClass the entity class whose instances are to be deleted. * * * @throws DatabaseException the base class for all BDB exceptions. */ public void truncateClass(Transaction txn, Class entityClass) throws DatabaseException { store.truncateClass(txn, entityClass); } /** * Closes the primary and secondary databases for the given entity class * that were opened via this store. The caller must ensure that the * primary and secondary indices obtained from this store are no longer in * use. * * @param entityClass the entity class whose databases are to be closed. * * @throws DatabaseException the base class for all BDB exceptions. */ public void closeClass(Class entityClass) throws DatabaseException { store.closeClass(entityClass); } /** * Closes all databases and sequences that were opened via this store. The * caller must ensure that no databases opened via this store are in use. * * @throws DatabaseException the base class for all BDB exceptions. */ public void close() throws DatabaseException { store.close(); } /** * Returns a named sequence for using Berkeley DB engine API directly, * opening it if necessary. * * @param name the sequence name, which is normally defined using the * {@link PrimaryKey#sequence} annotation property. * * @return the open sequence for the given sequence name. * * @throws DatabaseException the base class for all BDB exceptions. */ public Sequence getSequence(String name) throws DatabaseException { return store.getSequence(name); } /** * Returns the default Berkeley DB engine API configuration for a named key * sequence. * * The returned configuration is as follows. All other properties have * default values. *To be compatible with the entity model and the Direct Persistence * Layer, the configuration should be retrieved using {@link * #getSequenceConfig getSequenceConfig}, modified, and then passed to this * method. The following configuration properties may not be changed:
*In addition, {@link SequenceConfig#setAllowCreate AllowCreate} must be * the inverse of {@code ReadOnly}
* *If the range is changed to include the value zero, see {@link * PrimaryKey} for restrictions.
* * @param name the sequence name, which is normally defined using the * {@link PrimaryKey#sequence} annotation property. * * @param config the configuration to use for the given sequence name. * * @throws IllegalArgumentException if the configuration is incompatible * with the entity model or the Direct Persistence Layer. * * @throws IllegalStateException if the sequence has already been opened. */ public void setSequenceConfig(String name, SequenceConfig config) { store.setSequenceConfig(name, config); } /** * Returns the default primary database Berkeley DB engine API * configuration for an entity class. * * The returned configuration is as follows. All other properties have * default values. *To be compatible with the entity model and the Direct Persistence * Layer, the configuration should be retrieved using {@link * #getPrimaryConfig getPrimaryConfig}, modified, and then passed to this * method. The following configuration properties may not be changed:
*In addition, {@link DatabaseConfig#setAllowCreate AllowCreate} must be * the inverse of {@code ReadOnly}
* * @param entityClass the entity class identifying the primary database. * * @param config the configuration to use for the given entity class. * * @throws IllegalArgumentException if the configuration is incompatible * with the entity model or the Direct Persistence Layer. * * @throws IllegalStateException if the database has already been opened. */ public void setPrimaryConfig(Class entityClass, DatabaseConfig config) { store.setPrimaryConfig(entityClass, config); } /** * Returns the default secondary database Berkeley DB engine API * configuration for an entity class and key name. * * The returned configuration is as follows. All other properties have * default values. *To be compatible with the entity model and the Direct Persistence * Layer, the configuration should be retrieved using {@link * #getSecondaryConfig getSecondaryConfig}, modified, and then passed to * this method. The following configuration properties may not be * changed:
*In addition, {@link DatabaseConfig#setAllowCreate AllowCreate} must be * the inverse of {@code ReadOnly}
* * @param entityClass the entity class containing the given secondary key * name. * * @param keyName the name of the secondary key field, or the {@link * SecondaryKey#name} if this name annotation property was specified. * * @param config the configuration to use for the given secondary key. * * @throws IllegalArgumentException if the configuration is incompatible * with the entity model or the Direct Persistence Layer. * * @throws IllegalStateException if the database has already been opened. */ public void setSecondaryConfig(Class entityClass, String keyName, SecondaryConfig config) { store.setSecondaryConfig(entityClass, keyName, config); } }