org.apache.jackrabbit.spi2dav.QueryResultRowImpl Maven / Gradle / Ivy
/*
* 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.spi2dav;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import javax.jcr.RepositoryException;
import javax.jcr.Value;
import javax.jcr.ValueFactory;
import org.apache.jackrabbit.commons.webdav.JcrRemotingConstants;
import org.apache.jackrabbit.commons.webdav.QueryUtil;
import org.apache.jackrabbit.spi.QueryResultRow;
import org.apache.jackrabbit.spi.NodeId;
import org.apache.jackrabbit.spi.QValue;
import org.apache.jackrabbit.spi.QValueFactory;
import org.apache.jackrabbit.spi.IdFactory;
import org.apache.jackrabbit.spi.commons.value.ValueFormat;
import org.apache.jackrabbit.spi.commons.conversion.NamePathResolver;
import org.apache.jackrabbit.spi.commons.name.NameConstants;
import org.apache.jackrabbit.webdav.property.DavPropertyName;
import org.apache.jackrabbit.webdav.property.DavPropertySet;
import org.apache.jackrabbit.webdav.property.DavProperty;
import org.apache.jackrabbit.webdav.DavServletResponse;
import org.apache.jackrabbit.webdav.MultiStatusResponse;
import org.slf4j.LoggerFactory;
import org.slf4j.Logger;
/**
* QueryResultRowImpl
implements a QueryResultRow that is
* initialized from a multistatus response.
*/
public class QueryResultRowImpl implements QueryResultRow {
private static final Logger log = LoggerFactory.getLogger(QueryResultRowImpl.class);
private static final DavPropertyName SEARCH_RESULT_PROPERTY = DavPropertyName.create(JcrRemotingConstants.JCR_QUERY_RESULT_LN, ItemResourceConstants.NAMESPACE);
private final Map nodeIds = new HashMap();
private final Map scores = new HashMap();
private final Map qValues = new HashMap();
private final String[] columnNames;
public QueryResultRowImpl(MultiStatusResponse response,
String[] columnNames,
NamePathResolver resolver,
QValueFactory qValueFactory,
ValueFactory valueFactory,
IdFactory idFactory)
throws RepositoryException {
this.columnNames = columnNames;
DavPropertySet okSet = response.getProperties(DavServletResponse.SC_OK);
String jcrPath = resolver.getJCRName(NameConstants.JCR_PATH);
String jcrScore = resolver.getJCRName(NameConstants.JCR_SCORE);
DavProperty> davProp = okSet.get(SEARCH_RESULT_PROPERTY);
List colList = new ArrayList();
List selList = new ArrayList();
List valList = new ArrayList();
QueryUtil.parseResultPropertyValue(davProp.getValue(), colList, selList, valList, valueFactory);
String[] names = colList.toArray(new String[colList.size()]);
Value[] values = valList.toArray(new Value[valList.size()]);
for (int i = 0; i < values.length; i++) {
try {
String selectorName = selList.get(i);
QValue v = (values[i] == null) ? null : ValueFormat.getQValue(values[i], resolver, qValueFactory);
if (jcrScore.equals(names[i])) {
Double score = 0.0;
if (v != null) {
score = v.getDouble();
}
scores.put(selectorName, score);
} else if (jcrPath.equals(names[i])) {
NodeId id = null;
if (v != null) {
id = idFactory.createNodeId((String) null, v.getPath());
}
nodeIds.put(selectorName, id);
}
qValues.put(names[i], v);
} catch (RepositoryException e) {
// should not occur
log.error("Malformed value: " + values[i].toString());
}
}
}
public NodeId getNodeId(String selectorName) {
if (selectorName == null && scores.size() == 1) {
return nodeIds.values().iterator().next();
}
NodeId id = nodeIds.get(selectorName);
if (id == null && !nodeIds.containsKey(selectorName)) {
throw new IllegalArgumentException(selectorName + " is not a valid selectorName");
}
return id;
}
public double getScore(String selectorName) {
if (selectorName == null && scores.size() == 1) {
return scores.values().iterator().next();
}
Double score = scores.get(selectorName);
if (score == null && !nodeIds.containsKey(selectorName)) {
throw new IllegalArgumentException(selectorName + " is not a valid selectorName");
}
return score;
}
public QValue[] getValues() {
QValue[] values = new QValue[columnNames.length];
for (int i = 0; i < columnNames.length; i++) {
values[i] = qValues.get(columnNames[i]);
}
return values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy