| /* |
| * 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.valueeditors; |
| |
| |
| import java.util.ArrayList; |
| import java.util.Arrays; |
| import java.util.List; |
| |
| import org.apache.directory.studio.ldapbrowser.common.wizards.EditEntryWizard; |
| import org.apache.directory.studio.ldapbrowser.core.model.AttributeHierarchy; |
| import org.apache.directory.studio.ldapbrowser.core.model.IAttribute; |
| import org.apache.directory.studio.ldapbrowser.core.model.IEntry; |
| import org.apache.directory.studio.ldapbrowser.core.model.IValue; |
| import org.eclipse.jface.resource.ImageDescriptor; |
| import org.eclipse.jface.viewers.CellEditor; |
| import org.eclipse.jface.wizard.WizardDialog; |
| import org.eclipse.osgi.util.NLS; |
| import org.eclipse.swt.widgets.Composite; |
| import org.eclipse.swt.widgets.Control; |
| |
| |
| /** |
| * Special ValueEditor to edit an entry off-line in the {@link EditEntryWizard}. |
| * |
| * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> |
| */ |
| public class EntryValueEditor extends CellEditor implements IValueEditor |
| { |
| /** The value to handle */ |
| private Object value; |
| |
| /** The parent composite, used to instantiate a new control */ |
| private Composite parent; |
| |
| /** The name of this value editor */ |
| private String name; |
| |
| /** The image of this value editor */ |
| private ImageDescriptor imageDescriptor; |
| |
| /** The value editor manager, used to get proper value editors */ |
| protected ValueEditorManager valueEditorManager; |
| |
| |
| /** |
| * Creates a new instance of EntryValueEditor. |
| * |
| * @param parent the parent composite |
| * @param valueEditorManager the value editor manager, used to get |
| * proper value editors |
| */ |
| public EntryValueEditor( Composite parent, ValueEditorManager valueEditorManager ) |
| { |
| super( parent ); |
| this.parent = parent; |
| this.valueEditorManager = valueEditorManager; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * This is a dialog editor, it doesn't create a control. |
| */ |
| protected Control createControl( Composite parent ) |
| { |
| return null; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Returns the value object stored in a member. |
| */ |
| protected final Object doGetValue() |
| { |
| return value; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * This is a dialog editor, doesn't set focus. |
| */ |
| protected void doSetFocus() |
| { |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Stores the value object in a member. |
| */ |
| protected void doSetValue( Object value ) |
| { |
| this.value = value; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Opens the EditEntryWizard. Expects that an IEntry |
| * object is in value member. |
| */ |
| public void activate() |
| { |
| Object value = getValue(); |
| |
| if ( value instanceof IEntry ) |
| { |
| IEntry entry = ( IEntry ) value; |
| |
| if ( entry != null ) |
| { |
| EditEntryWizard wizard = new EditEntryWizard( entry ); |
| WizardDialog dialog = new WizardDialog( parent.getShell(), wizard ); |
| dialog.setBlockOnOpen( true ); |
| dialog.create(); |
| dialog.open(); |
| } |
| } |
| |
| fireCancelEditor(); |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Returns this. |
| */ |
| public CellEditor getCellEditor() |
| { |
| return this; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * This implementation of getDisplayValue() returns a |
| * comma-separated list of all values. |
| */ |
| public String getDisplayValue( AttributeHierarchy attributeHierarchy ) |
| { |
| List<IValue> valueList = new ArrayList<IValue>(); |
| |
| for ( IAttribute attribute : attributeHierarchy ) |
| { |
| valueList.addAll( Arrays.asList( attribute.getValues() ) ); |
| } |
| |
| StringBuffer sb = new StringBuffer(); |
| |
| if ( valueList.size() > 1 ) |
| { |
| sb.append( NLS.bind( Messages.getString( "EntryValueEditor.n_values" ), valueList.size() ) ); //$NON-NLS-1$ |
| } |
| |
| boolean isFirst = true; |
| |
| for ( IValue value : valueList ) |
| { |
| if ( isFirst ) |
| { |
| isFirst = false; |
| } |
| else |
| { |
| sb.append( ", " ); |
| } |
| |
| IValueEditor vp = getValueEditor( value ); |
| sb.append( vp.getDisplayValue( value ) ); |
| } |
| |
| return sb.toString(); |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * This implementation gets the display value of the real value editor. |
| */ |
| public String getDisplayValue( IValue value ) |
| { |
| IValueEditor vp = getValueEditor( value ); |
| |
| return vp.getDisplayValue( value ); |
| } |
| |
| |
| private IValueEditor getValueEditor( IValue value ) |
| { |
| IValueEditor vp = valueEditorManager.getCurrentValueEditor( value.getAttribute().getEntry(), value |
| .getAttribute().getDescription() ); |
| |
| // avoid recursion: unset the user selected value editor |
| if ( vp instanceof EntryValueEditor ) |
| { |
| IValueEditor userSelectedValueEditor = valueEditorManager.getUserSelectedValueEditor(); |
| valueEditorManager.setUserSelectedValueEditor( null ); |
| vp = valueEditorManager.getCurrentValueEditor( value.getAttribute().getEntry(), value.getAttribute() |
| .getDescription() ); |
| valueEditorManager.setUserSelectedValueEditor( userSelectedValueEditor ); |
| } |
| |
| return vp; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Returns the entry. |
| */ |
| public Object getRawValue( AttributeHierarchy attributeHierarchy ) |
| { |
| return attributeHierarchy.getEntry(); |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * @return |
| */ |
| public boolean hasValue( IValue value ) |
| { |
| return value.getAttribute().getEntry() != null; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Returns the entry. |
| */ |
| public Object getRawValue( IValue value ) |
| { |
| return value.getAttribute().getEntry(); |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| * |
| * Modification is performed by the wizard. No need to return a value. |
| */ |
| public Object getStringOrBinaryValue( Object rawValue ) |
| { |
| return null; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| */ |
| public void setValueEditorName( String name ) |
| { |
| this.name = name; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| */ |
| public String getValueEditorName() |
| { |
| return name; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| */ |
| public void setValueEditorImageDescriptor( ImageDescriptor imageDescriptor ) |
| { |
| this.imageDescriptor = imageDescriptor; |
| } |
| |
| |
| /** |
| * {@inheritDoc} |
| */ |
| public ImageDescriptor getValueEditorImageDescriptor() |
| { |
| return imageDescriptor; |
| } |
| } |