aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/data/slime/array_value.cpp
blob: 9505742dd2506fec51f5bcbb0342320c384ff587 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "array_value.h"
#include "array_traverser.h"
#include "empty_value_factory.h"
#include "symbol_table.h"

namespace vespalib::slime {

ArrayValue::ArrayValue(SymbolTable &table, Stash & stash)
    : _symbolTable(table),
      _stash(stash),
      _values()
{}

ArrayValue::~ArrayValue() = default;

void
ArrayValue::traverse(ArrayTraverser &at) const {
    for (size_t i = 0; i < _values.size(); ++i) {
        at.entry(i, *_values[i]);
    }
}


Cursor &
ArrayValue::addArray(size_t reserve) {
    return addLeaf(ArrayValueFactory(_symbolTable, reserve));
}

Cursor &
ArrayValue::addObject() {
    return addLeaf(ObjectValueFactory(_symbolTable));
}

Symbol
ArrayValue::resolve(Memory symbol_name) { return _symbolTable.insert(symbol_name); }

} // namespace vespalib::slime