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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/*
Copyright(C) 2011-2016 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
// See base.hpp and check.hpp for details.
#include "base.hpp"
#include "check.hpp"
namespace grn {
namespace dat {
class GRN_DAT_API Node {
public:
Node() : base_(), check_() {}
Base base() const {
return base_;
}
bool is_linker() const {
GRN_DAT_DEBUG_THROW_IF(is_phantom());
return base_.is_linker();
}
UInt32 offset() const {
GRN_DAT_DEBUG_THROW_IF(is_phantom());
return base_.offset();
}
UInt32 key_pos() const {
GRN_DAT_DEBUG_THROW_IF(is_phantom());
return base_.key_pos();
}
Check check() const {
return check_;
}
bool is_offset() const {
return check_.is_offset();
}
UInt32 except_is_offset() const {
return check_.except_is_offset();
}
bool is_phantom() const {
return check_.is_phantom();
}
UInt32 next() const {
return check_.next();
}
UInt32 prev() const {
return check_.prev();
}
UInt32 label() const {
return check_.label();
}
UInt32 child() const {
return check_.child();
}
UInt32 sibling() const {
return check_.sibling();
}
void set_base(Base x) {
GRN_DAT_DEBUG_THROW_IF(is_phantom());
base_ = x;
}
void set_offset(UInt32 x) {
GRN_DAT_DEBUG_THROW_IF(is_phantom());
base_.set_offset(x);
}
void set_key_pos(UInt32 x) {
GRN_DAT_DEBUG_THROW_IF(is_phantom());
base_.set_key_pos(x);
}
void set_check(Check x) {
check_ = x;
}
void set_is_offset(bool x) {
check_.set_is_offset(x);
}
void set_except_is_offset(UInt32 x) {
check_.set_except_is_offset(x);
}
void set_is_phantom(bool x) {
GRN_DAT_DEBUG_THROW_IF(base_.offset() != INVALID_OFFSET);
check_.set_is_phantom(x);
}
void set_next(UInt32 x) {
GRN_DAT_DEBUG_THROW_IF(base_.offset() != INVALID_OFFSET);
check_.set_next(x);
}
void set_prev(UInt32 x) {
GRN_DAT_DEBUG_THROW_IF(base_.offset() != INVALID_OFFSET);
check_.set_prev(x);
}
void set_label(UInt32 x) {
GRN_DAT_DEBUG_THROW_IF(offset() != INVALID_OFFSET);
check_.set_label(x);
}
void set_child(UInt32 x) {
check_.set_child(x);
}
void set_sibling(UInt32 x) {
check_.set_sibling(x);
}
private:
Base base_;
Check check_;
};
} // namespace dat
} // namespace grn
|