/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
* add the following below this CDDL HEADER, with the fields enclosed
* by brackets "[]" replaced with your own identifying information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2007-2010 Sun Microsystems, Inc.
* Portions Copyright 2013 ForgeRock AS
*/
/**
* This is an implementation of a Directory Server Backend which stores entries
* locally in a Berkeley DB JE database.
*/
public class BackendImpl
extends Backend
{
/**
* The tracer object for the debug logger.
*/
/**
* The fully-qualified name of this class.
*/
"org.opends.server.backends.jeb.BackendImpl";
/**
* The configuration of this JE backend.
*/
/**
* The root JE container to use for this backend.
*/
/**
* A count of the total operation threads currently in the backend.
*/
/**
* A count of the write operation threads currently in the backend.
*/
/**
* The base DNs defined for this backend instance.
*/
/**
* The controls supported by this backend.
*/
static
{
// Set our supported controls.
}
/**
* The features supported by this backend.
*/
static {
// Set our supported features.
//NYI
}
/**
* Begin a Backend API method that reads the database.
*/
private void readerBegin()
{
}
/**
* End a Backend API method that reads the database.
*/
private void readerEnd()
{
}
/**
* Begin a Backend API method that writes the database.
*/
private void writerBegin()
{
}
/**
* End a Backend API method that writes the database.
*/
private void writerEnd()
{
}
/**
* Wait until there are no more threads accessing the database. It is assumed
* that new threads have been prevented from entering the database at the time
* this method is called.
*/
private void waitUntilQuiescent()
{
{
// Still have threads in the database so sleep a little
try
{
}
catch (InterruptedException e)
{
if (debugEnabled())
{
}
}
}
}
/**
* This method will attempt to checksum the current JE db environment by
* computing the Adler-32 checksum on the latest JE log file available.
*
* @return The checksum of JE db environment or zero if checksum failed.
*/
private long checksumDbEnv() {
if(backendDirectory.isDirectory())
{
jdbFiles =
}
}));
}
try {
byte[] tempBuf = new byte[8192];
}
} catch (Exception e) {
if (debugEnabled())
{
}
} finally {
try {
} catch (Exception e) {
if (debugEnabled())
{
}
}
}
}
}
return 0;
}
/**
* {@inheritDoc}
*/
throws ConfigException
{
}
/**
* {@inheritDoc}
*/
@Override()
public void initializeBackend()
{
checksumDbEnv());
if(rootContainer == null)
{
}
// Preload the database cache.
try
{
// Log an informational message about the number of entries.
}
{
if (debugEnabled())
{
}
throw new InitializationException(
}
{
try
{
}
catch (Exception e)
{
if (debugEnabled())
{
}
throw new InitializationException(message, e);
}
}
// Register a monitor provider for the environment.
// Register as disk space monitor handler
//Register as an AlertGenerator.
// Register this backend as a change listener.
cfg.addLocalDBChangeListener(this);
}
/**
* {@inheritDoc}
*/
@Override()
public void finalizeBackend()
{
// Deregister as a change listener.
cfg.removeLocalDBChangeListener(this);
// Deregister our base DNs.
{
try
{
}
catch (Exception e)
{
if (debugEnabled())
{
}
}
}
// We presume the server will prevent more operations coming into this
// backend, but there may be existing operations already in the
// backend. We need to wait for them to finish.
// Close the database.
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
}
checksumDbEnv());
//Deregister the alert generator.
// Make sure the thread counts are zero for next initialization.
// Log an informational message.
}
/**
* {@inheritDoc}
*/
@Override()
public boolean isLocal()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
{
try
{
{
return false;
}
switch (indexType)
{
case PRESENCE:
case EQUALITY:
case SUBSTRING:
case SUBINITIAL:
case SUBANY:
case SUBFINAL:
case GREATER_OR_EQUAL:
case LESS_OR_EQUAL:
case APPROXIMATE:
default:
return false;
}
}
catch (Exception e)
{
if (debugEnabled())
{
}
return false;
}
}
/**
* {@inheritDoc}
*/
@Override()
public boolean supportsLDIFExport()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean supportsLDIFImport()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean supportsBackup()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean supportsRestore()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
{
return supportedFeatures;
}
/**
* {@inheritDoc}
*/
@Override()
{
return supportedControls;
}
/**
* {@inheritDoc}
*/
@Override()
{
return baseDNs;
}
/**
* {@inheritDoc}
*/
@Override()
public long getEntryCount()
{
if (rootContainer != null)
{
try
{
return rootContainer.getEntryCount();
}
catch (Exception e)
{
if (debugEnabled())
{
}
}
}
return -1;
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
if(ret < 0)
{
return ConditionResult.UNDEFINED;
}
else if(ret == 0)
{
return ConditionResult.FALSE;
}
else
{
return ConditionResult.TRUE;
}
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
if (rootContainer != null)
{
}
else
{
message);
}
{
return -1;
}
readerBegin();
try
{
{
// The index entry limit has exceeded and there is no count maintained.
return -1;
}
return count;
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
readerEnd();
}
}
/**
* {@inheritDoc}
*/
@Override()
{
readerBegin();
if (rootContainer != null)
{
}
else
{
message);
}
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
readerEnd();
}
return entry;
}
/**
* {@inheritDoc}
*/
@Override()
{
writerBegin();
if (rootContainer != null)
{
}
else
{
message);
}
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
writerEnd();
}
}
/**
* {@inheritDoc}
*/
@Override()
{
writerBegin();
if (rootContainer != null)
{
}
else
{
message);
}
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
writerEnd();
}
}
/**
* {@inheritDoc}
*/
@Override()
{
writerBegin();
if (rootContainer != null)
{
}
else
{
message);
}
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
writerEnd();
}
}
/**
* {@inheritDoc}
*/
@Override()
{
writerBegin();
if (rootContainer != null)
{
}
else
{
message);
}
if (currentContainer != container)
{
// FIXME: No reason why we cannot implement a move between containers
// since the containers share the same database environment.
msg);
}
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
writerEnd();
}
}
/**
* {@inheritDoc}
*/
@Override()
{
readerBegin();
if (rootContainer != null)
{
}
else
{
message);
}
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
finally
{
readerEnd();
}
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
// If the backend already has the root container open, we must use the same
// underlying root container
try
{
{
envConfig.setReadOnly(true);
envConfig.setAllowCreate(false);
envConfig.setTransactional(false);
}
}
catch (IOException ioe)
{
if (debugEnabled())
{
}
message);
}
catch (JebException je)
{
if (debugEnabled())
{
}
je.getMessageObject());
}
catch (DatabaseException de)
{
if (debugEnabled())
{
}
throw createDirectoryException(de);
}
catch (LDIFException e)
{
if (debugEnabled())
{
}
e.getMessageObject());
}
catch (InitializationException ie)
{
if (debugEnabled())
{
}
ie.getMessageObject());
}
catch (ConfigException ce)
{
if (debugEnabled())
{
}
ce.getMessageObject());
}
finally
{
//If a root container was opened in this method as read only, close it
//to leave the backend in the same state.
{
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
}
}
}
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
// If the backend already has the root container open, we must use the same
// underlying root container
// If the rootContainer is open, the backend is initialized by something
// else.
// We can't do import while the backend is online.
if(!openRootContainer)
{
message);
}
try
{
envConfig.setAllowCreate(true);
envConfig.setTransactional(false);
if(!importConfig.appendToExistingData()) {
// We have the writer lock on the environment, now delete the
// environment and re-open it. Only do this when we are
// importing to all the base DNs in the backend or if the backend only
// have one base DN.
// If the backend does not exist the import will create it.
if (backendDirectory.exists()) {
}
}
}
}
catch (ExecutionException execEx)
{
if (debugEnabled())
{
}
{
}
throw new DirectoryException(
}
catch (InterruptedException intEx)
{
if (debugEnabled())
{
}
message);
}
catch (JebException je)
{
if (debugEnabled())
{
}
je.getMessageObject());
}
catch (InitializationException ie)
{
if (debugEnabled())
{
}
ie.getMessageObject());
}
catch (ConfigException ce)
{
if (debugEnabled())
{
}
ce.getMessageObject());
}
finally
{
// leave the backend in the same state.
try
{
if (rootContainer != null)
{
}
// Sync the environment to disk.
if (debugEnabled())
{
}
}
catch (DatabaseException de)
{
if (debugEnabled())
{
}
}
}
}
/**
* Verify the integrity of the backend instance.
* @param verifyConfig The verify configuration.
* @param statEntry Optional entry to save stats into.
* @return The error count.
* @throws ConfigException If an unrecoverable problem arises during
* initialization.
* @throws InitializationException If a problem occurs during initialization
* that is not related to the server
* configuration.
* @throws DirectoryException If a Directory Server error occurs.
*/
{
// If the backend already has the root container open, we must use the same
// underlying root container
long errorCount = 0 ;
try
{
{
envConfig.setReadOnly(true);
envConfig.setAllowCreate(false);
envConfig.setTransactional(false);
}
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
throw createDirectoryException(e);
}
catch (JebException e)
{
if (debugEnabled())
{
}
e.getMessageObject());
}
finally
{
//If a root container was opened in this method as read only, close it
//to leave the backend in the same state.
{
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
}
}
}
return errorCount;
}
/**
* Rebuild index(es) in the backend instance. Note that the server will not
* explicitly initialize this backend before calling this method.
* @param rebuildConfig The rebuild configuration.
* @throws ConfigException If an unrecoverable problem arises during
* initialization.
* @throws InitializationException If a problem occurs during initialization
* that is not related to the server
* configuration.
* @throws DirectoryException If a Directory Server error occurs.
*/
{
// If the backend already has the root container open, we must use the same
// underlying root container
/*
* If the rootContainer is open, the backend is initialized by something
* else. We can't do any rebuild of system indexes while others are using
* this backend.
*/
{
message);
}
try
{
if (openRootContainer)
{
envConfig = new EnvironmentConfig();
envConfig.setAllowCreate(true);
envConfig.setTransactional(false);
}
else
{
}
}
catch (ExecutionException execEx)
{
if (debugEnabled())
{
}
message);
}
catch (InterruptedException intEx)
{
if (debugEnabled())
{
}
message);
}
catch (ConfigException ce)
{
if (debugEnabled())
{
}
ce.getMessageObject());
}
catch (JebException e)
{
if (debugEnabled())
{
}
e.getMessageObject());
}
catch (InitializationException e)
{
if (debugEnabled())
{
}
throw new InitializationException(e.getMessageObject());
}
finally
{
//If a root container was opened in this method as read only, close it
//to leave the backend in the same state.
{
try
{
}
catch (DatabaseException e)
{
if (debugEnabled())
{
}
}
}
}
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
new BackupManager(getBackendID());
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
new BackupManager(getBackendID());
}
/**
* {@inheritDoc}
*/
@Override()
throws DirectoryException
{
new BackupManager(getBackendID());
}
/**
* {@inheritDoc}
*/
@Override()
{
}
/**
* {@inheritDoc}
*/
public boolean isConfigurationChangeAcceptable(
{
// Make sure that the logging level value is acceptable.
try {
} catch (Exception e) {
return false;
}
return true;
}
/**
* {@inheritDoc}
*/
{
try
{
if(rootContainer != null)
{
// Check for changes to the base DNs.
{
boolean found = false;
{
{
found = true;
}
}
if (!found)
{
// The base DN was deleted.
}
}
{
{
try
{
// The base DN was added.
}
catch (Exception e)
{
if (debugEnabled())
{
}
return ccr;
}
}
}
}
{
}
// Put the new configuration in place.
}
catch (Exception e)
{
false, messages);
return ccr;
}
return ccr;
}
/**
* Returns a handle to the JE root container currently used by this backend.
* The rootContainer could be NULL if the backend is not initialized.
*
* @return The RootContainer object currently used by this backend.
*/
{
return rootContainer;
}
/**
* Returns a new read-only handle to the JE root container for this backend.
* The caller is responsible for closing the root container after use.
*
* @return The read-only RootContainer object for this backend.
*
* @throws ConfigException If an unrecoverable problem arises during
* initialization.
* @throws InitializationException If a problem occurs during initialization
* that is not related to the server
* configuration.
*/
{
envConfig.setReadOnly(true);
envConfig.setAllowCreate(false);
envConfig.setTransactional(false);
return initializeRootContainer(envConfig);
}
/**
* Clears all the entries from the backend. This method is for test cases
* that use the JE backend.
*
* @throws ConfigException If an unrecoverable problem arises in the
* process of performing the initialization.
*
* @throws JebException If an error occurs while removing the data.
*/
public void clearBackend()
throws ConfigException, JebException
{
// Determine the backend database directory.
}
/**
* Creates a customized DirectoryException from the DatabaseException thrown
* by JE backend.
*
* @param e The DatabaseException to be converted.
* @return DirectoryException created from exception.
*/
if ((e instanceof EnvironmentFailureException) &&
!rootContainer.isValid()) {
}
}
}
/**
* {@inheritDoc}
*/
return CLASS_NAME;
}
/**
* {@inheritDoc}
*/
return alerts;
}
/**
* {@inheritDoc}
*/
}
throws ConfigException, InitializationException {
// Open the database environment
try {
return rc;
}
catch (DatabaseException e) {
if (debugEnabled()) {
}
throw new InitializationException(message, e);
}
}
/**
* {@inheritDoc}
*/
public void preloadEntryCache() throws
new EntryCachePreloader(this);
}
/**
* {@inheritDoc}
*/
monitor.getFullThreshold()));
}
/**
* {@inheritDoc}
*/
monitor.getFullThreshold()));
}
/**
* {@inheritDoc}
*/
}
{
if(diskMonitor.isFullThresholdReached() ||
{
}
}
}