/* * 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.schemaeditor.view.dialogs; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.directory.api.ldap.model.schema.ObjectClass; import org.apache.directory.studio.schemaeditor.Activator; import org.apache.directory.studio.schemaeditor.controller.SchemaHandler; import org.eclipse.jface.viewers.IStructuredContentProvider; import org.eclipse.jface.viewers.Viewer; /** * This class is the Content Provider for the Object Class Selection Dialog. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class ObjectClassSelectionDialogContentProvider implements IStructuredContentProvider { /** The schema handler */ private SchemaHandler schemaHandler; /** The hidden object classes */ private List<ObjectClass> hiddenObjectClasses; /** * Creates a new instance of ObjectClassSelectionDialogContentProvider. */ public ObjectClassSelectionDialogContentProvider( List<ObjectClass> hiddenObjectClasses ) { schemaHandler = Activator.getDefault().getSchemaHandler(); this.hiddenObjectClasses = hiddenObjectClasses; } /** * {@inheritDoc} */ public Object[] getElements( Object inputElement ) { if ( inputElement instanceof String ) { ArrayList<ObjectClass> results = new ArrayList<ObjectClass>(); String searchText = ( String ) inputElement; String searchRegexp; searchText += "*"; //$NON-NLS-1$ searchRegexp = searchText.replaceAll( "\\*", "[\\\\S]*" ); //$NON-NLS-1$ //$NON-NLS-2$ searchRegexp = searchRegexp.replaceAll( "\\?", "[\\\\S]" ); //$NON-NLS-1$ //$NON-NLS-2$ Pattern pattern = Pattern.compile( searchRegexp, Pattern.CASE_INSENSITIVE ); List<ObjectClass> ocList = schemaHandler.getObjectClasses(); // Sorting the list Collections.sort( ocList, new Comparator<ObjectClass>() { public int compare( ObjectClass oc1, ObjectClass oc2 ) { List<String> oc1Names = ( ( ObjectClass ) oc1 ).getNames(); List<String> oc2Names = ( ( ObjectClass ) oc2 ).getNames(); if ( ( oc1Names == null || oc1Names.size() == 0 ) && ( oc2Names == null || oc2Names.size() == 0 ) ) { return 0; } else if ( ( oc1Names == null || oc1Names.size() == 0 ) && ( oc2Names != null && oc2Names.size() > 0 ) ) { return "".compareToIgnoreCase( oc2Names.get( 0 ) ); //$NON-NLS-1$ } else if ( ( oc1Names != null && oc1Names.size() > 0 ) && ( oc2Names == null || oc2Names.size() == 0 ) ) { return oc1Names.get( 0 ).compareToIgnoreCase( "" ); //$NON-NLS-1$ } else { return oc1Names.get( 0 ).compareToIgnoreCase( oc2Names.get( 0 ) ); } } } ); // Searching for all matching elements for ( ObjectClass oc : ocList ) { for ( String name : oc.getNames() ) { Matcher m = pattern.matcher( name ); if ( m.matches() ) { if ( !hiddenObjectClasses.contains( oc ) ) { if ( !results.contains( oc ) ) { results.add( oc ); } } break; } } Matcher m = pattern.matcher( oc.getOid() ); if ( m.matches() ) { if ( !hiddenObjectClasses.contains( oc ) ) { if ( !results.contains( oc ) ) { results.add( oc ); } } } } // Returns the results return results.toArray(); } // Default return new Object[0]; } /** * {@inheritDoc} */ public void dispose() { } /** * {@inheritDoc} */ public void inputChanged( Viewer viewer, Object oldInput, Object newInput ) { } }