Package org.jrdf.query.expression

Source Code of org.jrdf.query.expression.SingleConstraint

/*
* $Header$
* $Revision: 3132 $
* $Date: 2009-10-04 12:20:14 +1000 (Sun, 04 Oct 2009) $
*
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2003-2009 The JRDF Project.  All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
* 3. The end-user documentation included with the redistribution, if
*    any, must include the following acknowlegement:
*       "This product includes software developed by the
*        the JRDF Project (http://jrdf.sf.net/)."
*    Alternately, this acknowlegement may appear in the software itself,
*    if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The JRDF Project" and "JRDF" must not be used to endorse
*    or promote products derived from this software without prior written
*    permission. For written permission, please contact
*    newmana@users.sourceforge.net.
*
* 5. Products derived from this software may not be called "JRDF"
*    nor may "JRDF" appear in their names without prior written
*    permission of the JRDF Project.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the JRDF Project.  For more
* information on JRDF, please see <http://jrdf.sourceforge.net/>.
*
*/

package org.jrdf.query.expression;

import static org.jrdf.graph.AnyObjectNode.ANY_OBJECT_NODE;
import static org.jrdf.graph.AnyPredicateNode.ANY_PREDICATE_NODE;
import static org.jrdf.graph.AnySubjectNode.ANY_SUBJECT_NODE;
import org.jrdf.graph.Node;
import org.jrdf.graph.URIReference;
import org.jrdf.query.relation.Attribute;
import org.jrdf.query.relation.attributename.AttributeName;
import org.jrdf.query.relation.mem.AttributeImpl;
import org.jrdf.query.relation.type.NodeType;
import static org.jrdf.util.EqualsUtil.differentClasses;
import static org.jrdf.util.EqualsUtil.isNull;
import static org.jrdf.util.EqualsUtil.sameReference;
import static org.jrdf.util.param.ParameterUtil.checkNotNull;
import org.jrdf.vocabulary.RDF;
import org.jrdf.vocabulary.RDFS;
import org.jrdf.vocabulary.XSD;

import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;

/**
* A expression expression comprising a single expression.
*
* @author Tom Adams
* @version $Revision: 3132 $
*/
public final class SingleConstraint implements Constraint {
    private static final long serialVersionUID = 4538228991602138679L;
    private static final int DUMMY_HASHCODE = 47;
    private static final String OWL_BASE_URI = "http://www.w3.org/2002/07/owl#";

    private LinkedHashMap<Attribute, Node> singleAvp;

    private SingleConstraint() {
    }

    public SingleConstraint(LinkedHashMap<Attribute, Node> newSingleAvp) {
        checkNotNull(newSingleAvp);
        this.singleAvp = newSingleAvp;
    }

    public void setAttributeValue(Attribute existingAttribute, Node newValue) {
        singleAvp.put(existingAttribute, newValue);
    }

    public Set<Attribute> getHeadings() {
        return singleAvp.keySet();
    }

    public Map<Attribute, Node> getValue() {
        return getAvo(null);
    }

    public LinkedHashMap<Attribute, Node> getAvo(Map<AttributeName, ? extends NodeType> allVariables) {
        LinkedHashMap<Attribute, Node> newAvps = new LinkedHashMap<Attribute, Node>();
        for (Attribute existingAttribute : singleAvp.keySet()) {
            Attribute newAttribute;
            if (allVariables != null) {
                newAttribute = createNewAttribute(existingAttribute, allVariables);
            } else {
                newAttribute = existingAttribute;
            }
            newAvps.put(newAttribute, singleAvp.get(existingAttribute));
        }
        return newAvps;
    }

    public int size() {
        int result = 0;
        for (Attribute attribute : singleAvp.keySet()) {
            final Node node = singleAvp.get(attribute);
            if (isAnyNode(node)) {
                result += 2;
            } else if (isBuiltinNode(node)) {
                result++;
            }
        }
        return result;
    }

    private boolean isAnyNode(Node node) {
        return ANY_SUBJECT_NODE.equals(node) || ANY_OBJECT_NODE.equals(node) || ANY_PREDICATE_NODE.equals(node);
    }

    private boolean isBuiltinNode(Node node) {
        if (URIReference.class.isAssignableFrom(node.getClass())) {
            final String uri = ((URIReference) node).getURI().toString();
            if (uri.startsWith(RDF.BASE_URI.toString()) ||
                uri.startsWith(RDFS.BASE_URI.toString()) ||
                uri.startsWith(XSD.BASE_URI.toString()) ||
                uri.startsWith(OWL_BASE_URI)) {
                return true;
            }
        }
        return false;
    }

    public <R> R accept(ExpressionVisitor<R> v) {
        return v.visitConstraint(this);
    }

    @Override
    public boolean equals(Object obj) {
        if (isNull(obj)) {
            return false;
        }
        if (sameReference(this, obj)) {
            return true;
        }
        if (differentClasses(this, obj)) {
            return false;
        }
        return determineEqualityFromFields(this, (SingleConstraint) obj);
    }

    @Override
    public int hashCode() {
        // FIXME TJA: Test drive out values of triple.hashCode()
        return DUMMY_HASHCODE + singleAvp.hashCode();
    }

    /**
     * Delegates to <code>getAvp().toString()</code>.
     */
    @Override
    public String toString() {
        return singleAvp.toString();
    }

    private boolean determineEqualityFromFields(SingleConstraint o1, SingleConstraint o2) {
        return o1.singleAvp.equals(o2.singleAvp);
    }

    private Attribute createNewAttribute(Attribute existingAttribute,
        Map<AttributeName, ? extends NodeType> allVariables) {
        AttributeName existingAttributeName = existingAttribute.getAttributeName();
        NodeType newNodeType = allVariables.get(existingAttributeName);
        if (newNodeType == null) {
            newNodeType = existingAttribute.getType();
        }
        return new AttributeImpl(existingAttributeName, newNodeType);
    }
}
TOP

Related Classes of org.jrdf.query.expression.SingleConstraint

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.