
com.marklogic.client.io.ValuesHandle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-client-api Show documentation
Show all versions of marklogic-client-api Show documentation
The official MarkLogic Java client API.
The newest version!
/*
* Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
*/
package com.marklogic.client.io;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Unmarshaller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.marklogic.client.MarkLogicBindingException;
import com.marklogic.client.MarkLogicIOException;
import com.marklogic.client.impl.ValuesBuilder;
import com.marklogic.client.io.marker.OperationNotSupported;
import com.marklogic.client.io.marker.ValuesReadHandle;
import com.marklogic.client.query.AggregateResult;
import com.marklogic.client.query.CountedDistinctValue;
import com.marklogic.client.query.ValuesDefinition;
import com.marklogic.client.query.ValuesMetrics;
import com.marklogic.client.query.ValuesResults;
import java.util.Map;
/**
* A ValuesHandle represents a list of values or of tuples
* (combination of values for the same document) retrieved
* from the indexes.
*/
public class ValuesHandle
extends BaseHandle
implements ValuesReadHandle, ValuesResults
{
static final private Logger logger = LoggerFactory.getLogger(DOMHandle.class);
private ValuesBuilder.Values valuesHolder;
private Unmarshaller unmarshaller;
private Map hashedAggregates = null;
private ValuesDefinition valuesdef = null;
/**
* Zero-argument constructor.
*/
public ValuesHandle() {
super();
super.setFormat(Format.XML);
try {
JAXBContext jc = JaxbContextLoader.CACHED_CONTEXT;
unmarshaller = jc.createUnmarshaller();
} catch (JAXBException e) {
throw new MarkLogicBindingException(e);
} catch (NoClassDefFoundError ncdfe) {
throw new MarkLogicBindingException(new JAXBException("JAXB context initialization failed"));
}
}
/**
* Sets the format associated with this handle.
*
* This handle only supports XML.
*
* @param format The format, which must be Format.XML or an exception will be raised.
*/
@Override
public void setFormat(Format format) {
if (format != Format.XML)
throw new IllegalArgumentException("ValuesHandle supports the XML format only");
}
/**
* Fluent setter for the format associated with this handle.
*
* This handle only supports XML.
*
* @param format The format, which must be Format.XML or an exception will be raised.
* @return The SearchHandle instance on which this method was called.
*/
public ValuesHandle withFormat(Format format) {
setFormat(format);
return this;
}
@Override
protected Class receiveAs() {
return InputStream.class;
}
@Override
protected void receiveContent(InputStream content) {
try {
valuesHolder = (ValuesBuilder.Values) unmarshaller.unmarshal(
new InputStreamReader(content, StandardCharsets.UTF_8)
);
} catch (JAXBException e) {
logger.error("Failed to unmarshall values",e);
throw new MarkLogicIOException(e);
} finally {
try {
content.close();
} catch (IOException e) {
// ignore.
}
}
}
/**
* Sets the query definition used when retrieving values.
*
* Calling this method always deletes any cached values.
*
* @param vdef The new ValuesDefinition
*/
public void setQueryCriteria(ValuesDefinition vdef) {
valuesdef = vdef;
}
@Override
public ValuesDefinition getQueryCriteria() {
return valuesdef;
}
@Override
public String getName() {
return valuesHolder.getName();
}
@Override
public String getType() {
return valuesHolder.getType();
}
@Override
public CountedDistinctValue[] getValues() {
return valuesHolder.getValues();
}
@Override
public AggregateResult[] getAggregates() {
return valuesHolder.getAggregates();
}
@Override
public AggregateResult getAggregate(String name) {
if (hashedAggregates == null) {
hashedAggregates = new HashMap<> ();
for (AggregateResult aggregate : valuesHolder.getAggregates()) {
hashedAggregates.put(aggregate.getName(), aggregate);
}
}
if (hashedAggregates.containsKey(name)) {
return hashedAggregates.get(name);
} else {
return null;
}
}
@Override
public ValuesMetrics getMetrics() {
return valuesHolder.getMetrics();
}
/**
* Initialization-on-demand holder for {@link ValuesHandle}'s JAXB context.
*/
private static class JaxbContextLoader {
private static final JAXBContext CACHED_CONTEXT;
static {
try {
CACHED_CONTEXT = JAXBContext.newInstance(ValuesBuilder.Values.class);
} catch (JAXBException e) {
throw new MarkLogicBindingException(e);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy