/*
* 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 2008-2009 Sun Microsystems, Inc.
*/
package org.nasutekds.server.extensions;
import org.nasutekds.messages.Message;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.nasutekds.server.admin.server.ConfigurationChangeListener;
import org.nasutekds.server.admin.std.server.MemberVirtualAttributeCfg;
import org.nasutekds.server.api.Group;
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.types.AttributeValue;
import org.nasutekds.server.types.AttributeValues;
import org.nasutekds.server.types.ByteString;
import org.nasutekds.server.types.ConditionResult;
import org.nasutekds.server.types.ConfigChangeResult;
import org.nasutekds.server.types.DebugLogLevel;
import org.nasutekds.server.types.DN;
import org.nasutekds.server.types.Entry;
import org.nasutekds.server.types.InitializationException;
import org.nasutekds.server.types.MemberList;
import org.nasutekds.server.types.MembershipException;
import org.nasutekds.server.types.ResultCode;
import org.nasutekds.server.types.VirtualAttributeRule;
import static org.nasutekds.server.loggers.debug.DebugLogger.*;
import org.nasutekds.server.loggers.debug.DebugTracer;
/**
* This class implements a virtual attribute provider that works in conjunction
* with virtual static groups to generate the values for the member or
* uniqueMember attribute.
*/
public class MemberVirtualAttributeProvider
extends VirtualAttributeProvider<MemberVirtualAttributeCfg>
implements ConfigurationChangeListener<MemberVirtualAttributeCfg>
{
/**
* The tracer object for the debug logger.
*/
private static final DebugTracer TRACER = getTracer();
// The current configuration for this member virtual attribute.
private MemberVirtualAttributeCfg currentConfig;
/**
* Creates a new instance of this member virtual attribute provider.
*/
public MemberVirtualAttributeProvider()
{
super();
// All initialization should be performed in the
// initializeVirtualAttributeProvider method.
}
/**
* {@inheritDoc}
*/
@Override()
public void initializeVirtualAttributeProvider(
MemberVirtualAttributeCfg configuration)
throws ConfigException, InitializationException
{
configuration.addMemberChangeListener(this);
currentConfig = configuration;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean isMultiValued()
{
return true;
}
/**
* {@inheritDoc}
*/
@Override()
public Set<AttributeValue> getValues(Entry entry,
VirtualAttributeRule rule)
{
if (! currentConfig.isAllowRetrievingMembership())
{
return Collections.emptySet();
}
Group g = DirectoryServer.getGroupManager().getGroupInstance(entry.getDN());
if (g == null)
{
return Collections.emptySet();
}
HashSet<AttributeValue> values = new HashSet<AttributeValue>();
try
{
MemberList memberList = g.getMembers();
while (memberList.hasMoreMembers())
{
try
{
DN memberDN = memberList.nextMemberDN();
if (memberDN != null)
{
values.add(AttributeValues.create(rule.getAttributeType(),
memberDN.toString()));
}
}
catch (MembershipException me)
{
if (! me.continueIterating())
{
break;
}
}
}
}
catch (Exception e)
{
if (debugEnabled())
{
TRACER.debugCaught(DebugLogLevel.ERROR, e);
}
}
return Collections.unmodifiableSet(values);
}
/**
* {@inheritDoc}
*/
@Override()
public boolean hasValue(Entry entry, VirtualAttributeRule rule)
{
Group g = DirectoryServer.getGroupManager().getGroupInstance(entry.getDN());
if (g == null)
{
return false;
}
try
{
MemberList memberList = g.getMembers();
while (memberList.hasMoreMembers())
{
try
{
DN memberDN = memberList.nextMemberDN();
if (memberDN != null)
{
memberList.close();
return true;
}
}
catch (MembershipException me)
{
if (! me.continueIterating())
{
break;
}
}
}
}
catch (Exception e)
{
if (debugEnabled())
{
TRACER.debugCaught(DebugLogLevel.ERROR, e);
}
}
return false;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean hasValue(Entry entry, VirtualAttributeRule rule,
AttributeValue value)
{
Group g = DirectoryServer.getGroupManager().getGroupInstance(entry.getDN());
if (g == null)
{
return false;
}
try
{
return g.isMember(DN.decode(value.getValue()));
}
catch (Exception e)
{
if (debugEnabled())
{
TRACER.debugCaught(DebugLogLevel.ERROR, e);
}
}
return false;
}
/**
* {@inheritDoc}
*/
@Override()
public boolean hasAnyValue(Entry entry, VirtualAttributeRule rule,
Collection<AttributeValue> values)
{
for (AttributeValue v : values)
{
if (hasValue(entry, rule, v))
{
return true;
}
}
return false;
}
/**
* {@inheritDoc}
*/
@Override()
public ConditionResult matchesSubstring(Entry entry,
VirtualAttributeRule rule,
ByteString subInitial,
List<ByteString> subAny,
ByteString subFinal)
{
// DNs cannot be used in substring matching.
return ConditionResult.UNDEFINED;
}
/**
* {@inheritDoc}
*/
@Override()
public ConditionResult greaterThanOrEqualTo(Entry entry,
VirtualAttributeRule rule,
AttributeValue value)
{
// DNs cannot be used in ordering matching.
return ConditionResult.UNDEFINED;
}
/**
* {@inheritDoc}
*/
@Override()
public ConditionResult lessThanOrEqualTo(Entry entry,
VirtualAttributeRule rule,
AttributeValue value)
{
// DNs cannot be used in ordering matching.
return ConditionResult.UNDEFINED;
}
/**
* {@inheritDoc}
*/
@Override()
public ConditionResult approximatelyEqualTo(Entry entry,
VirtualAttributeRule rule,
AttributeValue value)
{
// DNs cannot be used in approximate matching.
return ConditionResult.UNDEFINED;
}
/**
* {@inheritDoc}.
*/
@Override()
public boolean isSearchable(VirtualAttributeRule rule,
SearchOperation searchOperation)
{
return false;
}
/**
* {@inheritDoc}
*/
@Override()
public void processSearch(VirtualAttributeRule rule,
SearchOperation searchOperation)
{
searchOperation.setResultCode(ResultCode.UNWILLING_TO_PERFORM);
return;
}
/**
* {@inheritDoc}
*/
public boolean isConfigurationChangeAcceptable(
MemberVirtualAttributeCfg configuration,
List<Message> unacceptableReasons)
{
// The new configuration should always be acceptable.
return true;
}
/**
* {@inheritDoc}
*/
public ConfigChangeResult applyConfigurationChange(
MemberVirtualAttributeCfg configuration)
{
// Just accept the new configuration as-is.
currentConfig = configuration;
return new ConfigChangeResult(ResultCode.SUCCESS, false);
}
}