/* * 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.common.dnd; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.directory.api.ldap.model.name.Dn; import org.apache.directory.studio.ldapbrowser.common.BrowserCommonConstants; import org.apache.directory.studio.ldapbrowser.core.BrowserConnectionManager; import org.apache.directory.studio.ldapbrowser.core.BrowserCorePlugin; import org.apache.directory.studio.ldapbrowser.core.model.IBrowserConnection; import org.apache.directory.studio.ldapbrowser.core.model.IEntry; import org.eclipse.swt.dnd.ByteArrayTransfer; import org.eclipse.swt.dnd.Transfer; import org.eclipse.swt.dnd.TransferData; /** * A {@link Transfer} that could be used to transfer {@link IEntry} objects. * Note that only the connection id and entry's Dn is converted to a platform specific * representation, not the complete object. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class EntryTransfer extends ByteArrayTransfer { /** The Constant TYPENAME. */ private static final String TYPENAME = BrowserCommonConstants.DND_ENTRY_TRANSFER; /** The Constant TYPEID. */ private static final int TYPEID = registerType( TYPENAME ); /** The instance. */ private static EntryTransfer instance = new EntryTransfer(); /** * Gets the instance. * * @return the instance */ public static EntryTransfer getInstance() { return instance; } /** * Creates a new instance of EntryTransfer. */ private EntryTransfer() { } /** * {@inheritDoc} * * This implementation only accepts {@link IEntry} objects. * It just converts the id of the connection and the entry's Dn * to the platform specific representation. */ public void javaToNative( Object object, TransferData transferData ) { if ( !( object instanceof IEntry[] ) ) { return; } if ( isSupportedType( transferData ) ) { IEntry[] entries = ( IEntry[] ) object; try { ByteArrayOutputStream out = new ByteArrayOutputStream(); DataOutputStream writeOut = new DataOutputStream( out ); for ( int i = 0; i < entries.length; i++ ) { byte[] connectionId = entries[i].getBrowserConnection().getConnection().getId().getBytes( "UTF-8" ); //$NON-NLS-1$ writeOut.writeInt( connectionId.length ); writeOut.write( connectionId ); byte[] dn = entries[i].getDn().getName().getBytes( "UTF-8" ); //$NON-NLS-1$ writeOut.writeInt( dn.length ); writeOut.write( dn ); } byte[] buffer = out.toByteArray(); writeOut.close(); super.javaToNative( buffer, transferData ); } catch ( IOException e ) { } } } /** * {@inheritDoc} * * This implementation just converts the platform specific representation * to the connection id and entry Dn and invokes * {@link BrowserConnectionManager#getBrowserConnectionById(String)} to get the * {@link IBrowserConnection} object and {@link IBrowserConnection#getEntryFromCache(org.apache.directory.api.ldap.model.name.Dn)} * to get the {@link IEntry} object. */ public Object nativeToJava( TransferData transferData ) { try { if ( isSupportedType( transferData ) ) { byte[] buffer = ( byte[] ) super.nativeToJava( transferData ); if ( buffer == null ) { return null; } List<IEntry> entryList = new ArrayList<IEntry>(); try { IBrowserConnection connection = null; ByteArrayInputStream in = new ByteArrayInputStream( buffer ); DataInputStream readIn = new DataInputStream( in ); do { if ( readIn.available() > 1 ) { int size = readIn.readInt(); byte[] connectionId = new byte[size]; readIn.read( connectionId ); connection = BrowserCorePlugin.getDefault().getConnectionManager() .getBrowserConnectionById( new String( connectionId, "UTF-8" ) ); //$NON-NLS-1$ } IEntry entry = null; if ( readIn.available() > 1 && connection != null ) { int size = readIn.readInt(); byte[] dn = new byte[size]; readIn.read( dn ); entry = connection.getEntryFromCache( new Dn( new String( dn, "UTF-8" ) ) ); //$NON-NLS-1$ } else { return null; } if ( entry != null ) { entryList.add( entry ); } } while ( readIn.available() > 1 ); readIn.close(); } catch ( IOException ex ) { return null; } return entryList.isEmpty() ? null : entryList.toArray( new IEntry[0] ); } } catch ( Exception e ) { e.printStackTrace(); } return null; } /** * {@inheritDoc} */ protected String[] getTypeNames() { return new String[] { TYPENAME }; } /** * {@inheritDoc} */ protected int[] getTypeIds() { return new int[] { TYPEID }; } }