blob: 69f0eed040ebfd94d4c0e9f2965678f4e3f56f68 (
plain)
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
|
#ifndef SEARCH_HEADER__
#define SEARCH_HEADER__
// Header consisting of Score, Arity, and Note
#include "search/types.hh"
#include <stdint.h>
namespace search {
// Copying is shallow.
class Header {
public:
bool Valid() const { return base_; }
Score GetScore() const {
return *reinterpret_cast<const float*>(base_);
}
void SetScore(Score to) {
*reinterpret_cast<float*>(base_) = to;
}
bool operator<(const Header &other) const {
return GetScore() < other.GetScore();
}
bool operator>(const Header &other) const {
return GetScore() > other.GetScore();
}
Arity GetArity() const {
return *reinterpret_cast<const Arity*>(base_ + sizeof(Score));
}
Note GetNote() const {
return *reinterpret_cast<const Note*>(base_ + sizeof(Score) + sizeof(Arity));
}
void SetNote(Note to) {
*reinterpret_cast<Note*>(base_ + sizeof(Score) + sizeof(Arity)) = to;
}
uint8_t *Base() { return base_; }
const uint8_t *Base() const { return base_; }
protected:
Header() : base_(NULL) {}
explicit Header(void *base) : base_(static_cast<uint8_t*>(base)) {}
Header(void *base, Arity arity) : base_(static_cast<uint8_t*>(base)) {
*reinterpret_cast<Arity*>(base_ + sizeof(Score)) = arity;
}
static const std::size_t kHeaderSize = sizeof(Score) + sizeof(Arity) + sizeof(Note);
uint8_t *After() { return base_ + kHeaderSize; }
const uint8_t *After() const { return base_ + kHeaderSize; }
private:
uint8_t *base_;
};
} // namespace search
#endif // SEARCH_HEADER__
|