All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.webdav.jcr.search.SearchResultProperty Maven / Gradle / Ivy

There is a newer version: 2.23.0-beta
Show newest version
/*
 * 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.jackrabbit.webdav.jcr.search;

import org.apache.jackrabbit.commons.webdav.QueryUtil;
import org.apache.jackrabbit.value.ValueHelper;
import org.apache.jackrabbit.webdav.jcr.ItemResourceConstants;
import org.apache.jackrabbit.webdav.property.AbstractDavProperty;
import org.apache.jackrabbit.webdav.property.DavProperty;
import org.apache.jackrabbit.webdav.property.DavPropertyName;
import org.apache.jackrabbit.webdav.xml.DomUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

import javax.jcr.PropertyType;
import javax.jcr.RepositoryException;
import javax.jcr.Value;
import javax.jcr.ValueFactory;
import java.util.ArrayList;
import java.util.List;

/**
 * SearchResultProperty...
 */
// todo: find proper solution for transporting search results...
public class SearchResultProperty extends AbstractDavProperty implements ItemResourceConstants {

    private static Logger log = LoggerFactory.getLogger(SearchResultProperty.class);

    private static final DavPropertyName SEARCH_RESULT_PROPERTY = DavPropertyName.create(JCR_QUERY_RESULT_LN, ItemResourceConstants.NAMESPACE);

    private final String[] columnNames;
    private final String[] selectorNames;
    private final Value[] values;

    /**
     * Creates a new SearchResultProperty.
     *
     * @param columnNames   the column names of the search row represented by
     *                      this dav property.
     * @param selectorNames the selecotr names of the row represented by this
     *                      dav property.
     * @param values        the values present in the columns
     */
    public SearchResultProperty(String[] columnNames,
                                String[] selectorNames,
                                Value[] values) {
        super(SEARCH_RESULT_PROPERTY, true);
        this.columnNames = columnNames;
        this.selectorNames = selectorNames;
        this.values = values;
    }

    /**
     * Wrap the specified DavProperty in a new SearchResultProperty.
     *
     * @param property
     * @param valueFactory factory used to deserialize the xml value to a JCR value.
     * @throws RepositoryException if an error occurs while build the property value
     * @throws IllegalArgumentException if the specified property does have the
     * required form.
     * @see #getValues()
     */
    public SearchResultProperty(DavProperty property, ValueFactory valueFactory) throws RepositoryException {
        super(property.getName(), true);
        if (!SEARCH_RESULT_PROPERTY.equals(getName())) {
            throw new IllegalArgumentException("SearchResultProperty may only be created from a property named " + SEARCH_RESULT_PROPERTY.toString());
        }

        List colList = new ArrayList();
        List selList = new ArrayList();
        List valList = new ArrayList();

        QueryUtil.parseResultPropertyValue(property.getValue(), colList, selList, valList, valueFactory);

        columnNames = colList.toArray(new String[colList.size()]);
        selectorNames = selList.toArray(new String[selList.size()]);
        values = valList.toArray(new Value[valList.size()]);
    }

    /**
     * Return the column names representing the names of the properties present
     * in the {@link #getValues() values}.
     *
     * @return columnNames
     */
    public String[] getColumnNames() {
        return columnNames;
    }

    /**
     * @return the selector name for each of the columns in the result property.
     */
    public String[] getSelectorNames() {
        return selectorNames;
    }

    /**
     * Return the values representing the values of that row in the search
     * result table.
     *
     * @return values
     * @see javax.jcr.query.Row#getValues()
     */
    public Value[] getValues() {
        return values;
    }


    /**
     * Same as {@link #getValues()}
     *
     * @return Array of JCR Value object
     */
    public Value[] getValue() {
        return values;
    }

    /**
     * Return the xml representation of this webdav property. For every value in
     * the query result row a dcr:name, dcr:value, dcr:type and an optional
     * dcr:selectorName element is created.
     * Example:
     * 
     * -----------------------------------------------------------
     *   col-name  |   bla   |   bli   |  jcr:path  |  jcr:score
     * -----------------------------------------------------------
     *   value     |   xxx   |   111   |  /aNode    |    1
     *   type      |    1    |    3    |     8      |    3
     *   sel-name  |         |         |     S      |    S
     * -----------------------------------------------------------
     * 
* results in: *
     * <dcr:search-result-property xmlns:dcr="http://www.day.com/jcr/webdav/1.0">
     *    <dcr:column>
     *       <dcr:name>bla<dcr:name/>
     *       <dcr:value dcr:type="String">xxx<dcr:value/>
     *    </dcr:column>
     *    <dcr:column>
     *       <dcr:name>bli<dcr:name/>
     *       <dcr:value dcr:type="Long">111<dcr:value/>
     *    </dcr:column>
     *    <dcr:column>
     *       <dcr:name>jcr:path<dcr:name/>
     *       <dcr:value dcr:type="Path">/aNode<dcr:value/>
     *       <dcr:selectorName>S<dcr:selectorName/>
     *    </dcr:column>
     *    <dcr:column>
     *       <dcr:name>jcr:score<dcr:name/>
     *       <dcr:value dcr:type="Long">1<dcr:value/>
     *       <dcr:selectorName>S<dcr:selectorName/>
     *    </dcr:column>
     * </dcr:search-result-property>
     * 
* * @see org.apache.jackrabbit.webdav.xml.XmlSerializable#toXml(org.w3c.dom.Document) */ @Override public Element toXml(Document document) { Element elem = getName().toXml(document); for (int i = 0; i < columnNames.length; i++) { String propertyName = columnNames[i]; String selectorName = selectorNames[i]; Value propertyValue = values[i]; Element columnEl = DomUtil.addChildElement(elem, XML_QUERY_RESULT_COLUMN, ItemResourceConstants.NAMESPACE); DomUtil.addChildElement(columnEl, JCR_NAME.getName(), JCR_NAME.getNamespace(), propertyName); if (propertyValue != null) { try { String serializedValue = ValueHelper.serialize(propertyValue, true); Element xmlValue = DomUtil.addChildElement(columnEl, XML_VALUE, ItemResourceConstants.NAMESPACE, serializedValue); String type = PropertyType.nameFromValue(propertyValue.getType()); DomUtil.setAttribute(xmlValue, ATTR_VALUE_TYPE, ItemResourceConstants.NAMESPACE, type); } catch (RepositoryException e) { log.error(e.toString()); } } if (selectorName != null) { DomUtil.addChildElement(columnEl, JCR_SELECTOR_NAME.getName(), JCR_SELECTOR_NAME.getNamespace(), selectorName); } } return elem; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy