0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
CellStoreTrailerV2.h
Go to the documentation of this file.
1 /* -*- c++ -*-
2  * Copyright (C) 2007-2015 Hypertable, Inc.
3  *
4  * This file is part of Hypertable.
5  *
6  * Hypertable is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; version 3 of the
9  * License.
10  *
11  * Hypertable is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  * 02110-1301, USA.
20  */
21 
22 #ifndef HYPERTABLE_CELLSTORETRAILERV2_H
23 #define HYPERTABLE_CELLSTORETRAILERV2_H
24 
25 #include <boost/any.hpp>
26 
27 #include "CellStoreTrailer.h"
28 
29 namespace Hypertable {
30 
32  public:
34  virtual ~CellStoreTrailerV2() { return; }
35  virtual void clear();
36  virtual size_t size() { return 126; }
37  virtual void serialize(uint8_t *buf);
38  virtual void deserialize(const uint8_t *buf);
39  virtual void display(std::ostream &os);
40  virtual void display_multiline(std::ostream &os);
41 
44  int64_t filter_offset;
45  int64_t index_entries;
46  int64_t total_entries;
47  int64_t filter_length;
50  int64_t blocksize;
51  int64_t revision;
52  int64_t timestamp_min;
53  int64_t timestamp_max;
54  int64_t create_time;
55  uint32_t table_id;
56  uint32_t table_generation;
57  uint32_t flags;
58  union {
61  };
62  uint16_t compression_type;
65  uint16_t version;
66 
67  enum Flags { INDEX_64BIT = 0x00000001 };
68 
69  boost::any get(const String& prop) {
70  if (prop == "version") return version;
71  else if (prop == "fix_index_offset") return fix_index_offset;
72  else if (prop == "var_index_offset") return var_index_offset;
73  else if (prop == "filter_offset") return filter_offset;
74  else if (prop == "index_entries") return index_entries;
75  else if (prop == "total_entries") return total_entries;
76  else if (prop == "filter_length") return filter_length;
77  else if (prop == "filter_items_estimate") return filter_items_estimate;
78  else if (prop == "filter_items_actual") return filter_items_actual;
79  else if (prop == "blocksize") return blocksize;
80  else if (prop == "revision") return revision;
81  else if (prop == "timestamp_min") return timestamp_min;
82  else if (prop == "timestamp_max") return timestamp_max;
83  else if (prop == "create_time") return create_time;
84  else if (prop == "table_id") return table_id;
85  else if (prop == "table_generation") return table_generation;
86  else if (prop == "flags") return flags;
87  else if (prop == "compression_ratio") return compression_ratio;
88  else if (prop == "compression_type") return compression_type;
89  else if (prop == "bloom_filter_mode") return bloom_filter_mode;
90  else if (prop == "bloom_filter_hash_count") return bloom_filter_hash_count;
91  else return boost::any();
92  }
93 
94  };
95 
96 }
97 
98 #endif // HYPERTABLE_CELLSTORETRAILERV2_H
Abstract base class for cell store trailer.
virtual void display(std::ostream &os)
Prints the trailer to the given ostream.
std::string String
A String is simply a typedef to std::string.
Definition: String.h:44
virtual size_t size()
Returns the serialized size of the trailer.
Hypertable definitions
virtual void clear()
Clears the contents of this trailer;.
virtual void deserialize(const uint8_t *buf)
Deserializes the trailer from the given buffer.
virtual void display_multiline(std::ostream &os)
Prints the trailer, one member per line, to the given ostream.
virtual void serialize(uint8_t *buf)
Serializes this trailer to the given buffer;.