use of com.yahoo.document.datatypes.IntegerFieldValue in project vespa by vespa-engine.
the class GetSearcherTestCase method testDocumentHitWithPopulatedHitFields.
@Test
public void testDocumentHitWithPopulatedHitFields() throws Exception {
Document doc1 = new Document(docType, new DocumentId("userdoc:kittens:1234:foo"));
doc1.setFieldValue("name", new StringFieldValue("megacat"));
doc1.setFieldValue("description", new StringFieldValue("supercat"));
doc1.setFieldValue("fluffiness", new IntegerFieldValue(10000));
GetDocumentReply[] replies = new GetDocumentReply[] { new GetDocumentReply(doc1) };
// Use a predefined reply list to ensure messages are answered out of order
Chain<Searcher> searchChain = createSearcherChain(replies);
Result result = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id=userdoc:kittens:1234:foo&populatehitfields=true"));
assertEquals(1, result.hits().size());
assertHits(result.hits(), "userdoc:kittens:1234:foo");
DocumentHit hit = (DocumentHit) result.hits().get(0);
Iterator<Map.Entry<String, Object>> iter = hit.fieldIterator();
Set<String> fieldSet = new TreeSet<>();
while (iter.hasNext()) {
Map.Entry<String, Object> kv = iter.next();
StringBuilder field = new StringBuilder();
field.append(kv.getKey()).append(" -> ").append(kv.getValue());
fieldSet.add(field.toString());
}
StringBuilder fields = new StringBuilder();
for (String s : fieldSet) {
fields.append(s).append("\n");
}
assertEquals("description -> supercat\n" + "documentid -> userdoc:kittens:1234:foo\n" + "fluffiness -> 10000\n" + "name -> megacat\n", fields.toString());
}
use of com.yahoo.document.datatypes.IntegerFieldValue in project vespa by vespa-engine.
the class GetSearcherTestCase method testDefaultDocumentHitRendering.
@Test
public void testDefaultDocumentHitRendering() throws Exception {
Document doc1 = new Document(docType, new DocumentId("userdoc:kittens:3:4"));
doc1.setFieldValue("name", new StringFieldValue("mittens"));
doc1.setFieldValue("description", new StringFieldValue("it's a cat"));
doc1.setFieldValue("fluffiness", new IntegerFieldValue(8));
Document doc2 = new Document(docType, new DocumentId("userdoc:kittens:1:2"));
doc2.setFieldValue("name", new StringFieldValue("garfield"));
doc2.setFieldValue("description", new StringFieldValue("preliminary research indicates <em>hatred</em> of mondays. caution advised"));
doc2.setFieldValue("fluffiness", new IntegerFieldValue(2));
Document doc3 = new Document(docType, new DocumentId("userdoc:kittens:77:88"));
GetDocumentReply errorReply = new GetDocumentReply(doc3);
errorReply.addError(new com.yahoo.messagebus.Error(123, "userdoc:kittens:77:88 had fleas."));
GetDocumentReply[] replies = new GetDocumentReply[] { new GetDocumentReply(doc1), new GetDocumentReply(doc2), errorReply };
// Use a predefined reply list to ensure messages are answered out of order
Chain<Searcher> searchChain = createSearcherChain(replies);
Result xmlResult = new Execution(searchChain, Execution.Context.createContextStub()).search(newQuery("?id[0]=userdoc:kittens:77:88&id[1]=userdoc:kittens:1:2&id[2]=userdoc:kittens:3:4"));
assertRendered("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<result>\n" + "<errors>\n" + "<error type=\"messagebus\" code=\"123\" message=\"userdoc:kittens:77:88 had fleas.\"/>\n" + "</errors>\n" + "<document documenttype=\"kittens\" documentid=\"userdoc:kittens:1:2\">\n" + " <name>garfield</name>\n" + " <description>preliminary research indicates <em>hatred</em> of mondays. caution advised</description>\n" + " <fluffiness>2</fluffiness>\n" + "</document>\n" + "<document documenttype=\"kittens\" documentid=\"userdoc:kittens:3:4\">\n" + " <name>mittens</name>\n" + " <description>it's a cat</description>\n" + " <fluffiness>8</fluffiness>\n" + "</document>\n" + "</result>\n", xmlResult);
}
use of com.yahoo.document.datatypes.IntegerFieldValue in project vespa by vespa-engine.
the class SchemaMappingAndAccessesTest method getDoc.
private Document getDoc() {
DocumentType type = new DocumentType("album");
AnnotationType personType = new AnnotationType("person");
Annotation person = new Annotation(personType);
type.addField("title", DataType.STRING);
type.addField("artist", DataType.STRING);
type.addField("guitarist", DataType.STRING);
type.addField("year", DataType.INT);
type.addField("labels", DataType.getArray(DataType.STRING));
Document doc = new Document(type, new DocumentId("doc:map:test:1"));
doc.setFieldValue("title", new StringFieldValue("Black Rock"));
StringFieldValue joe = new StringFieldValue("Joe Bonamassa");
joe.setSpanTree(new SpanTree("mytree").annotate(person));
doc.setFieldValue("artist", joe);
doc.setFieldValue("year", new IntegerFieldValue(2010));
Array<StringFieldValue> labels = new Array<>(type.getField("labels").getDataType());
labels.add(new StringFieldValue("audun"));
labels.add(new StringFieldValue("tylden"));
doc.setFieldValue("labels", labels);
StructDataType personStructType = new StructDataType("artist");
personStructType.addField(new com.yahoo.document.Field("firstname", DataType.STRING));
personStructType.addField(new com.yahoo.document.Field("lastname", DataType.STRING));
type.addField("listeners", DataType.getArray(personStructType));
Array<Struct> listeners = new Array<>(type.getField("listeners").getDataType());
Struct listenerOne = new Struct(personStructType);
listenerOne.setFieldValue("firstname", new StringFieldValue("per"));
listenerOne.setFieldValue("lastname", new StringFieldValue("olsen"));
Struct listenerTwo = new Struct(personStructType);
listenerTwo.setFieldValue("firstname", new StringFieldValue("anders"));
listenerTwo.setFieldValue("lastname", new StringFieldValue("and"));
listeners.add(listenerOne);
listeners.add(listenerTwo);
doc.setFieldValue("listeners", listeners);
return doc;
}
use of com.yahoo.document.datatypes.IntegerFieldValue in project vespa by vespa-engine.
the class PositionDataType method valueOf.
public static Struct valueOf(Integer x, Integer y) {
Struct ret = new Struct(INSTANCE);
ret.setFieldValue(FIELD_X, x != null ? new IntegerFieldValue(x) : null);
ret.setFieldValue(FIELD_Y, y != null ? new IntegerFieldValue(y) : null);
return ret;
}
use of com.yahoo.document.datatypes.IntegerFieldValue in project vespa by vespa-engine.
the class ExactExpression method doExecute.
@Override
protected void doExecute(ExecutionContext ctx) {
StringFieldValue input = (StringFieldValue) ctx.getValue();
if (input.getString().isEmpty()) {
return;
}
StringFieldValue output = input.clone();
ctx.setValue(output);
String prev = output.getString();
String next = toLowerCase(prev);
SpanList root = new SpanList();
SpanTree tree = new SpanTree(SpanTrees.LINGUISTICS, root);
SpanNode node = new Span(0, prev.length());
tree.annotate(node, new Annotation(AnnotationTypes.TERM, next.equals(prev) ? null : new StringFieldValue(next)));
tree.annotate(node, new Annotation(AnnotationTypes.TOKEN_TYPE, new IntegerFieldValue(TokenType.ALPHABETIC.getValue())));
root.add(node);
output.setSpanTree(tree);
}
Aggregations