Package org.apache.slide.search.basic.sample

Source Code of org.apache.slide.search.basic.sample.BasicExpressionSample

/*
* $Header: /home/cvs/jakarta-slide/src/stores/org/apache/slide/search/basic/sample/BasicExpressionSample.java,v 1.2.2.1 2004/02/05 16:07:52 mholz Exp $
* $Revision: 1.2.2.1 $
* $Date: 2004/02/05 16:07:52 $
*
* ====================================================================
*
* Copyright 1999-2002 The Apache Software Foundation
*
* Licensed 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.slide.search.basic.sample;

import org.apache.slide.search.basic.*;

import java.util.Collection;
import java.util.Iterator;
import org.apache.slide.common.SlideException;
import org.apache.slide.search.BadQueryException;
import org.apache.slide.search.RequestedResource;
import org.apache.slide.search.SearchException;
import org.apache.slide.structure.ObjectNode;
import org.apache.slide.structure.SubjectNode;

/**
* A very basic sample for a store specific Expression. Depending on the
* complexity of the concrete store specific implementation, iut might be
* a good idea to have an Expression class for each DAV: expression
* (SQLEqExpression, SQLOrExpression, ...)
*
* @author <a href="mailto:martin.wallmer@softwareag.com">Martin Wallmer</a>
* @version $Revision: 1.2.2.1 $
*/
public class BasicExpressionSample implements IBasicExpression {


    /** an example for an executable command */
    String theExecutableCommand;

    /** backptr to the factory */
    IBasicExpressionFactory factory;

    /**
     * constructor for a compare expression like gt, eq, ...
     * For your concrete implementation you are free, which parameters have to
     * be passed, let the factory give you everything you need.
     */
    BasicExpressionSample (String command, IBasicExpressionFactory factory){
        theExecutableCommand = command;
        this.factory = factory;
    }

    /**
     * contructor for a merge expression
     */
    BasicExpressionSample (String mergeOperator,
                           Collection children,
                           IBasicExpressionFactory factory)
        throws BadQueryException
    {
        this.factory = factory;
        Iterator it = children.iterator();
        BasicExpressionSample firstChild = (BasicExpressionSample)it.next();

        if (firstChild == null)
            throw new BadQueryException (mergeOperator + " needs at least one nested element");

        theExecutableCommand = firstChild.theExecutableCommand;

        // create the executable command
        while (it.hasNext()) {
            BasicExpressionSample exp = (BasicExpressionSample)it.next();
            theExecutableCommand += " " + mergeOperator + " " + exp.theExecutableCommand;
        }
    }

    /**
     * fake executer. The executable command is printed and a fake result is created.
     *
     * @return   an IBasicResultSet
     *
     * @throws   SearchException
     *
     */
    public IBasicResultSet execute() throws SearchException {

        IBasicResultSet result = new BasicResultSetImpl (true);

        // here the miracle happens. The command is executed, and ObjectNodes
        // are created from all results, that match the query.
        System.out.println("now execute: " + theExecutableCommand);

        //
        // fake one result
        //
        ObjectNode node = new SubjectNode("/"); // this will return the root folder
        RequestedResource resource = null;
        IBasicQuery query = factory.getQuery();

        try {
            resource = new ComparableResourceImpl
                (node, query.getSearchToken(), query.getScope(),
                 factory.getPropertyProvider());
        }
        catch (SlideException e) {
            throw new SearchException (e);
        }

        result.add (resource);


        return  result;
    }
}

TOP

Related Classes of org.apache.slide.search.basic.sample.BasicExpressionSample

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.