Package org.neo4j.neoclipse.search

Source Code of org.neo4j.neoclipse.search.NeoSearchResult

/**
* Licensed to Neo Technology under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Neo Technology 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.neo4j.neoclipse.search;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.eclipse.core.runtime.ISafeRunnable;
import org.eclipse.core.runtime.SafeRunner;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.search.ui.ISearchQuery;
import org.eclipse.search.ui.ISearchResult;
import org.eclipse.search.ui.ISearchResultListener;
import org.neo4j.graphdb.PropertyContainer;
import org.neo4j.neoclipse.Icons;

/**
* This class represents the result of a Neo search.
*
* @author Peter Hänsgen
*/
public class NeoSearchResult implements ISearchResult
{
    /**
     * The query to which this result belongs.
     */
    private final NeoSearchQuery query;
    /**
     * The found matches.
     */
    private Iterable<PropertyContainer> matches;
    /**
     * The observers.
     */
    private final List<ISearchResultListener> listeners;

    /**
     * The constructor.
     */
    public NeoSearchResult( final NeoSearchQuery query )
    {
        this.query = query;
        // we have to initialize an empty list, as the result will already be
        // shown before
        // the search is actually started
        this.matches = Collections.emptyList();
        listeners = new ArrayList<ISearchResultListener>();
    }

    /**
     * Returns the found nodes for the search expression.
     */
    public Iterable<PropertyContainer> getMatches()
    {
        return matches;
    }

    /**
     * Sets the matches. The registered listeners will be notified.
     */
    public void setMatches( final Iterable<PropertyContainer> matches )
    {
        this.matches = matches;
        fireSearchResultEvent();
    }

    /**
     * Returns a neo image descriptor.
     */
    @Override
    public ImageDescriptor getImageDescriptor()
    {
        return Icons.NEO.descriptor();
    }

    /**
     * Returns a label for the search result, which will be shown in the search
     * history.
     */
    @Override
    public String getLabel()
    {
        return "Neo4j - '" + query.getExpression() + "'";
    }

    /**
     * Returns the query that produced this result.
     */
    @Override
    public ISearchQuery getQuery()
    {
        return query;
    }

    /**
     * Returns the tooltip.
     */
    @Override
    public String getTooltip()
    {
        return null;
    }

    /**
     * Adds a listener.
     */
    @Override
    public void addListener( final ISearchResultListener listener )
    {
        if ( !listeners.contains( listener ) )
        {
            listeners.add( listener );
        }
    }

    /**
     * Removes a listener.
     */
    @Override
    public void removeListener( final ISearchResultListener listener )
    {
        listeners.remove( listener );
    }

    /**
     * Notifies the registered listeners about changes in the search result.
     */
    protected void fireSearchResultEvent()
    {
        final NeoSearchResultEvent e = new NeoSearchResultEvent( this );
        for ( int i = 0; i < listeners.size(); i++ )
        {
            final ISearchResultListener l = listeners.get( i );
            ISafeRunnable job = new ISafeRunnable()
            {
                @Override
                public void handleException( final Throwable exception )
                {
                    // already being logged in SafeRunner#run()
                }

                @Override
                public void run() throws Exception
                {
                    l.searchResultChanged( e );
                }
            };
            SafeRunner.run( job );
        }
    }
}
TOP

Related Classes of org.neo4j.neoclipse.search.NeoSearchResult

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.