blob: 834ab95e1e6d9e5a6f899aeb22a2b7cdeaa0f498 (
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
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
|
#pragma once
#ifndef MARISA_GRIMOIRE_TRIE_ENTRY_H_
#define MARISA_GRIMOIRE_TRIE_ENTRY_H_
#include "../../base.h"
namespace marisa {
namespace grimoire {
namespace trie {
class Entry {
public:
Entry()
: ptr_(reinterpret_cast<const char *>(-1)), length_(0), id_(0) {}
Entry(const Entry &entry)
: ptr_(entry.ptr_), length_(entry.length_), id_(entry.id_) {}
Entry &operator=(const Entry &entry) {
ptr_ = entry.ptr_;
length_ = entry.length_;
id_ = entry.id_;
return *this;
}
char operator[](std::size_t i) const {
MARISA_DEBUG_IF(i >= length_, MARISA_BOUND_ERROR);
return *(ptr_ - i);
}
void set_str(const char *ptr, std::size_t length) {
MARISA_DEBUG_IF((ptr == NULL) && (length != 0), MARISA_NULL_ERROR);
MARISA_DEBUG_IF(length > MARISA_UINT32_MAX, MARISA_SIZE_ERROR);
ptr_ = ptr + length - 1;
length_ = (UInt32)length;
}
void set_id(std::size_t id) {
MARISA_DEBUG_IF(id > MARISA_UINT32_MAX, MARISA_SIZE_ERROR);
id_ = (UInt32)id;
}
const char *ptr() const {
return ptr_ - length_ + 1;
}
std::size_t length() const {
return length_;
}
std::size_t id() const {
return id_;
}
class StringComparer {
public:
bool operator()(const Entry &lhs, const Entry &rhs) const {
for (std::size_t i = 0; i < lhs.length(); ++i) {
if (i == rhs.length()) {
return true;
}
if (lhs[i] != rhs[i]) {
return (UInt8)lhs[i] > (UInt8)rhs[i];
}
}
return lhs.length() > rhs.length();
}
};
class IDComparer {
public:
bool operator()(const Entry &lhs, const Entry &rhs) const {
return lhs.id_ < rhs.id_;
}
};
private:
const char *ptr_;
UInt32 length_;
UInt32 id_;
};
} // namespace trie
} // namespace grimoire
} // namespace marisa
#endif // MARISA_GRIMOIRE_TRIE_ENTRY_H_
|