aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/datatype/referencedatatype.cpp
blob: 8e810226b72738347d37b0493a17b12aec540ff2 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "referencedatatype.h"
#include <vespa/document/fieldvalue/referencefieldvalue.h>
#include <vespa/vespalib/util/exceptions.h>
#include <ostream>

using vespalib::make_string;
using vespalib::IllegalArgumentException;

namespace document {

ReferenceDataType::ReferenceDataType(const DocumentType& targetDocType, int id)
    : DataType(make_string("Reference<%s>", targetDocType.getName().c_str()), id),
      _targetDocType(targetDocType)
{
}

ReferenceDataType::~ReferenceDataType() = default;

std::unique_ptr<FieldValue>
ReferenceDataType::createFieldValue() const {
    return std::make_unique<ReferenceFieldValue>(*this);
}

void
ReferenceDataType::print(std::ostream& os, bool verbose, const std::string& indent) const {
    (void) verbose;
    (void) indent;
    os << "ReferenceDataType(" << _targetDocType.getName() << ", id " << getId() << ')';
}

void
ReferenceDataType::onBuildFieldPath(FieldPath &, vespalib::stringref remainingFieldName) const {
    if ( ! remainingFieldName.empty() ) {
        throw IllegalArgumentException(make_string("Reference data type does not support further field recursion: '%s'",
                                                   vespalib::string(remainingFieldName).c_str()), VESPA_STRLOC);
    }

}

bool
ReferenceDataType::equals(const DataType &rhs) const noexcept {
    const ReferenceDataType *rt = rhs.cast_reference();
    return rt && DataType::equals(rhs) && _targetDocType.equals(rt->_targetDocType);
}

} // document