blob: 033c2cb78362b2109a4c2facceea74e6bb83b494 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.directory.server.core.trigger;
import java.util.Map;
import javax.naming.NamingException;
import javax.naming.directory.Attributes;
import org.apache.directory.server.core.interceptor.context.LookupOperationContext;
import org.apache.directory.server.core.interceptor.context.ModifyOperationContext;
import org.apache.directory.server.core.interceptor.context.OperationContext;
import org.apache.directory.server.core.invocation.Invocation;
import org.apache.directory.server.core.partition.PartitionNexusProxy;
import org.apache.directory.shared.ldap.message.ModificationItemImpl;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.trigger.StoredProcedureParameter;
public class ModifyStoredProcedureParameterInjector extends AbstractStoredProcedureParameterInjector
{
private LdapDN modifiedEntryName;
private ModificationItemImpl[] modifications;
private Attributes oldEntry;
public ModifyStoredProcedureParameterInjector( Invocation invocation, OperationContext opContext ) throws NamingException
{
super( invocation );
modifiedEntryName = opContext.getDn();
modifications = ((ModifyOperationContext)opContext).getModItems();
this.oldEntry = getEntry();
Map<Class, MicroInjector> injectors = super.getInjectors();
injectors.put( StoredProcedureParameter.Modify_OBJECT.class, $objectInjector );
injectors.put( StoredProcedureParameter.Modify_MODIFICATION.class, $modificationInjector );
injectors.put( StoredProcedureParameter.Modify_OLD_ENTRY.class, $oldEntryInjector );
injectors.put( StoredProcedureParameter.Modify_NEW_ENTRY.class, $newEntryInjector );
}
MicroInjector $objectInjector = new MicroInjector()
{
public Object inject( StoredProcedureParameter param ) throws NamingException
{
// Return a safe copy constructed with user provided name.
return new LdapDN( modifiedEntryName.getUpName() );
};
};
MicroInjector $modificationInjector = new MicroInjector()
{
public Object inject( StoredProcedureParameter param ) throws NamingException
{
return modifications.clone();
};
};
MicroInjector $oldEntryInjector = new MicroInjector()
{
public Object inject( StoredProcedureParameter param ) throws NamingException
{
return oldEntry;
};
};
MicroInjector $newEntryInjector = new MicroInjector()
{
public Object inject( StoredProcedureParameter param ) throws NamingException
{
return getEntry();
};
};
private Attributes getEntry() throws NamingException
{
PartitionNexusProxy proxy = getInvocation().getProxy();
/**
* Using LOOKUP_EXCLUDING_OPR_ATTRS_BYPASS here to exclude operational attributes
* especially subentry related ones like "triggerExecutionSubentries".
*/
return proxy.lookup( new LookupOperationContext( modifiedEntryName ), PartitionNexusProxy.LOOKUP_EXCLUDING_OPR_ATTRS_BYPASS );
}
}