blob: 5d8eaddd3fcc171c37a194aefa2a259b9a605dd7 [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.studio.ldapbrowser.core.jobs;
import java.util.ArrayList;
import java.util.List;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.message.Control;
import org.apache.directory.studio.common.core.jobs.StudioProgressMonitor;
import org.apache.directory.studio.connection.core.Connection;
import org.apache.directory.studio.connection.core.Controls;
import org.apache.directory.studio.connection.core.jobs.StudioConnectionBulkRunnableWithProgress;
import org.apache.directory.studio.ldapbrowser.core.BrowserCoreMessages;
import org.apache.directory.studio.ldapbrowser.core.events.EntryAddedEvent;
import org.apache.directory.studio.ldapbrowser.core.events.EventRegistry;
import org.apache.directory.studio.ldapbrowser.core.model.IBrowserConnection;
import org.apache.directory.studio.ldapbrowser.core.model.IEntry;
import org.apache.directory.studio.ldapbrowser.core.utils.ModelConverter;
/**
* Runnable to create an entry.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class CreateEntryRunnable implements StudioConnectionBulkRunnableWithProgress
{
/** The entry to create. */
private IEntry entryToCreate;
/** The browser connection. */
private IBrowserConnection browserConnection;
/** The created entry. */
private IEntry createdEntry;
/**
* Creates a new instance of CreateEntryRunnable.
*
* @param entryToCreate the entry to create
* @param browserConnection the browser connection
*/
public CreateEntryRunnable( IEntry entryToCreate, IBrowserConnection browserConnection )
{
this.entryToCreate = entryToCreate;
this.browserConnection = browserConnection;
this.createdEntry = null;
}
/**
* {@inheritDoc}
*/
public Connection[] getConnections()
{
return new Connection[]
{ browserConnection.getConnection() };
}
/**
* {@inheritDoc}
*/
public String getName()
{
return BrowserCoreMessages.jobs__create_entry_name_1;
}
/**
* {@inheritDoc}
*/
public Object[] getLockedObjects()
{
return new Object[]
{ browserConnection };
}
/**
* {@inheritDoc}
*/
public String getErrorMessage()
{
return BrowserCoreMessages.jobs__create_entry_error_1;
}
/**
* {@inheritDoc}
*/
public void run( StudioProgressMonitor monitor )
{
monitor.beginTask( BrowserCoreMessages.bind( BrowserCoreMessages.jobs__create_entry_task_1, new String[]
{ entryToCreate.getDn().getName() } ), 2 + 1 );
monitor.reportProgress( " " ); //$NON-NLS-1$
monitor.worked( 1 );
try
{
createEntry( browserConnection, entryToCreate, monitor );
}
catch ( LdapException e )
{
monitor.reportError( e );
}
if ( !monitor.errorsReported() && !monitor.isCanceled() )
{
List<org.apache.directory.api.ldap.model.message.Control> controls = new ArrayList<>();
if ( entryToCreate.isReferral() )
{
controls.add( Controls.MANAGEDSAIT_CONTROL );
}
// Here we try to read the created entry to be able to send the right event notification.
// In some cases that doesn't work:
// - if there was a referral and the entry was created on another (master) server and not yet sync'ed to the current server
// So we use a dummy monitor to no bother the user with an error message.
StudioProgressMonitor dummyMonitor = new StudioProgressMonitor( monitor );
createdEntry = ReadEntryRunnable
.getEntry( browserConnection, entryToCreate.getDn(), controls, dummyMonitor );
dummyMonitor.done();
if ( createdEntry != null )
{
createdEntry.setHasChildrenHint( false );
// set some flags at the parent
if ( createdEntry.hasParententry() )
{
if ( createdEntry.isAlias() )
{
createdEntry.getParententry().setFetchAliases( true );
}
if ( createdEntry.isReferral() )
{
createdEntry.getParententry().setFetchReferrals( true );
}
if ( createdEntry.isSubentry() )
{
createdEntry.getParententry().setFetchSubentries( true );
}
}
}
}
monitor.reportProgress( " " ); //$NON-NLS-1$
monitor.worked( 1 );
}
/**
* {@inheritDoc}
*/
public void runNotification( StudioProgressMonitor monitor )
{
if ( createdEntry != null )
{
EventRegistry.fireEntryUpdated( new EntryAddedEvent( browserConnection, createdEntry ), this );
}
}
/**
* Creates the entry using the underlying connection wrapper.
*
* @param browserConnection the browser connection
* @param entryToCreate the entry to create
* @param monitor the monitor
*/
static void createEntry( IBrowserConnection browserConnection, IEntry entryToCreate, StudioProgressMonitor monitor ) throws LdapException
{
Entry entry = ModelConverter.toLdapApiEntry( entryToCreate );
// ManageDsaIT control
Control[] controls = null;
if ( entryToCreate.isReferral() )
{
controls = new Control[]
{ Controls.MANAGEDSAIT_CONTROL };
}
browserConnection.getConnection().getConnectionWrapper()
.createEntry( entry, controls, monitor, null );
}
}