/*
* 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
* trunk/nasutekds/resource/legal-notices/NasuTekDS.LICENSE
* or https://NasuTekDS.dev.java.net/NasuTekDS.LICENSE.
* 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/nasutekds/resource/legal-notices/NasuTekDS.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 2009 Sun Microsystems, Inc.
*/
package org.nasutekds.server.replication.common;
import static org.nasutekds.server.loggers.debug.DebugLogger.getTracer;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.nasutekds.messages.Message;
import org.nasutekds.server.admin.server.ConfigurationChangeListener;
import org.nasutekds.server.admin.std.server.UserDefinedVirtualAttributeCfg;
import org.nasutekds.server.api.VirtualAttributeProvider;
import org.nasutekds.server.config.ConfigException;
import org.nasutekds.server.core.DirectoryServer;
import org.nasutekds.server.core.SearchOperation;
import org.nasutekds.server.loggers.debug.DebugTracer;
import org.nasutekds.server.replication.plugin.MultimasterReplication;
import org.nasutekds.server.replication.server.ReplicationServer;
import org.nasutekds.server.types.AttributeValue;
import org.nasutekds.server.types.AttributeValues;
import org.nasutekds.server.types.ByteString;
import org.nasutekds.server.types.ConfigChangeResult;
import org.nasutekds.server.types.DN;
import org.nasutekds.server.types.DebugLogLevel;
import org.nasutekds.server.types.Entry;
import org.nasutekds.server.types.InitializationException;
import org.nasutekds.server.types.ResultCode;
import org.nasutekds.server.types.VirtualAttributeRule;
import org.nasutekds.server.util.ServerConstants;
import org.nasutekds.server.workflowelement.externalchangelog.ECLWorkflowElement;
/**
* This class implements a virtual attribute provider that allows administrators
* to define their own values that will be inserted into any entry that matches
* the criteria defined in the virtual attribute rule. This can be used to
* provide functionality like Class of Service (CoS) in the Sun Java System
* Directory Server.
*/
public class FirstChangeNumberVirtualAttributeProvider
extends VirtualAttributeProvider<UserDefinedVirtualAttributeCfg>
implements ConfigurationChangeListener<UserDefinedVirtualAttributeCfg>
{
// The tracer object for the debug logger.
private static final DebugTracer TRACER = getTracer();
/**
* Creates a new instance of this member virtual attribute provider.
*/
public FirstChangeNumberVirtualAttributeProvider()
{
super();
// All initialization should be performed in the
// initializeVirtualAttributeProvider method.
}
/**
* {@inheritDoc}
*/
@Override()
public void initializeVirtualAttributeProvider(
UserDefinedVirtualAttributeCfg configuration)
throws ConfigException, InitializationException
{
// No initialization required
}
/**
* {@inheritDoc}
*/
@Override()
public void finalizeVirtualAttributeProvider()
{
//
}
/**
* {@inheritDoc}
*/
@Override()
public boolean isMultiValued()
{
return false;
}
/**
* {@inheritDoc}
*/
@Override()
public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule)
{
Set<AttributeValue> values = new HashSet<AttributeValue>();
String first="0";
try
{
if (!entry.getDN().equals(DN.decode("")))
{
return values;
}
ECLWorkflowElement eclwe = (ECLWorkflowElement)
DirectoryServer.getWorkflowElement("EXTERNAL CHANGE LOG");
if (eclwe!=null)
{
// Set a list of excluded domains (also exclude 'cn=changelog' itself)
ArrayList<String> excludedDomains =
MultimasterReplication.getECLDisabledDomains();
if (!excludedDomains.contains(
ServerConstants.DN_EXTERNAL_CHANGELOG_ROOT))
excludedDomains.add(ServerConstants.DN_EXTERNAL_CHANGELOG_ROOT);
ReplicationServer rs = eclwe.getReplicationServer();
rs.disableEligibility(excludedDomains);
int[] limits = rs.getECLDraftCNLimits(
rs.getEligibleCN(), excludedDomains);
first = String.valueOf(limits[0]);
}
}
catch(Exception e)
{
TRACER.debugCaught(DebugLogLevel.ERROR, e);
}
AttributeValue value =
AttributeValues.create(
ByteString.valueOf(first),
ByteString.valueOf(first));
values=Collections.singleton(value);
return values;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean isSearchable(VirtualAttributeRule rule,
SearchOperation searchOperation)
{
// We will not allow searches based only on user-defined virtual attributes.
return false;
}
/**
* {@inheritDoc}
*/
@Override()
public void processSearch(VirtualAttributeRule rule,
SearchOperation searchOperation)
{
searchOperation.setResultCode(ResultCode.UNWILLING_TO_PERFORM);
return;
}
/**
* {@inheritDoc}
*/
public boolean isConfigurationChangeAcceptable(
UserDefinedVirtualAttributeCfg configuration,
List<Message> unacceptableReasons)
{
return false;
}
/**
* {@inheritDoc}
*/
public ConfigChangeResult applyConfigurationChange(
UserDefinedVirtualAttributeCfg configuration)
{
return new ConfigChangeResult(ResultCode.OTHER, false);
}
}