aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/datatype/annotationtype.cpp
blob: d4ac202ed7aabe7d662891acb1832a728daba388 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "annotationtype.h"
#include "numericdatatype.h"
#include "primitivedatatype.h"
#include <vespa/vespalib/stllike/string.h>
#include <vespa/vespalib/stllike/asciistream.h>

using std::vector;
using vespalib::string;

namespace document {
namespace {
AnnotationType makeType(int id, string name, const DataType &type) {
    AnnotationType annotation_type(id, name);
    annotation_type.setDataType(type);
    return annotation_type;
}

const PrimitiveDataType STRING_OBJ(DataType::T_STRING);
const NumericDataType INT_OBJ(DataType::T_INT);

const AnnotationType TERM_OBJ(makeType(1, "term", STRING_OBJ));
const AnnotationType TOKEN_TYPE_OBJ(makeType(2, "token_type", INT_OBJ));

}  // namespace

const AnnotationType *const AnnotationType::TERM(&TERM_OBJ);
const AnnotationType *const AnnotationType::TOKEN_TYPE(&TOKEN_TYPE_OBJ);

vector<const AnnotationType *> AnnotationType::getDefaultAnnotationTypes() {
    vector<const AnnotationType *> types;
    types.push_back(TERM);
    types.push_back(TOKEN_TYPE);
    return types;
}

vespalib::string
AnnotationType::toString() const {
    vespalib::asciistream os;
    os << *this;
    return os.str();
}

vespalib::asciistream &
operator << (vespalib::asciistream & os, const AnnotationType & a) {
    return os << "AnnotationType(" << a.getId() << ", " << a.getName() << ")";
}

}  // namespace document