Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
entry.hpp
Go to the documentation of this file.
1 /* -*- c-basic-offset: 2 -*- */
2 /* Copyright(C) 2011 Brazil
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Lesser General Public
6  License version 2.1 as published by the Free Software Foundation.
7 
8  This library is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  Lesser General Public License for more details.
12 
13  You should have received a copy of the GNU Lesser General Public
14  License along with this library; if not, write to the Free Software
15  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17 
18 #ifndef GRN_DAT_ENTRY_HPP_
19 #define GRN_DAT_ENTRY_HPP_
20 
21 #include "dat.hpp"
22 
23 namespace grn {
24 namespace dat {
25 
26 // The most significant bit represents whether or not the entry is valid.
27 // A valid entry stores the position of its associated key and an invalid entry
28 // stores the index of the next invalid entry.
30  public:
31  Entry() : value_(0) {}
32 
33  bool is_valid() const {
34  return (value_ & IS_VALID_FLAG) == IS_VALID_FLAG;
35  }
36  UInt32 key_pos() const {
37  GRN_DAT_DEBUG_THROW_IF(!is_valid());
38  return value_ & ~IS_VALID_FLAG;
39  }
40  UInt32 next() const {
41  GRN_DAT_DEBUG_THROW_IF(is_valid());
42  return value_;
43  }
44 
45  void set_key_pos(UInt32 x) {
46  value_ = IS_VALID_FLAG | x;
47  }
48  void set_next(UInt32 x) {
49  value_ = x;
50  }
51 
52  private:
53  UInt32 value_;
54 
55  static const UInt32 IS_VALID_FLAG = 0x80000000U;
56 };
57 
58 } // namespace dat
59 } // namespace grn
60 
61 #endif // GRN_DAT_ENTRY_HPP_