cfsa1_impl.hpp
5.75 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/*
* File: cfsa1_impl.hpp
* Author: mlenart
*
* Created on November 4, 2013, 1:08 PM
*/
#ifndef CFSA1_IMPL_HPP
#define CFSA1_IMPL_HPP
#include <vector>
#include "fsa.hpp"
using namespace std;
#pragma pack(push) /* push current alignment to stack */
#pragma pack(1) /* set alignment to 1 byte boundary */
struct StateData2 {
unsigned transitionsNum: 6;
unsigned array : 1;
unsigned accepting : 1;
};
struct TransitionData2 {
unsigned offsetSize : 2;
unsigned shortLabel : 6;
};
#pragma pack(pop) /* restore original alignment from stack */
static const unsigned int INITIAL_STATE_OFFSET = 257;
template <class T>
vector<unsigned char> CompressedFSA1<T>::initializeChar2PopularCharIdx(const unsigned char* ptr) {
return vector<unsigned char>(ptr, ptr + INITIAL_STATE_OFFSET);
}
template <class T>
CompressedFSA1<T>::CompressedFSA1(const unsigned char* ptr, const Deserializer<T>& deserializer)
: FSA<T>(ptr + INITIAL_STATE_OFFSET, deserializer),
label2ShortLabel(initializeChar2PopularCharIdx(ptr)) {
}
template <class T>
CompressedFSA1<T>::~CompressedFSA1() {
}
template <class T>
void CompressedFSA1<T>::reallyDoProceed(
const unsigned char* statePtr,
State<T>& state) const {
// const unsigned char stateByte = *statePtr;
StateData2* sd = (StateData2*) statePtr;
if (sd->accepting) {
// cerr << "ACCEPTING" << endl;
T object;
int size = this->deserializer.deserialize(statePtr + 1, object);
state.setNext(statePtr - this->initialStatePtr, object, size);
}
else {
state.setNext(statePtr - this->initialStatePtr);
}
}
template <class T>
void CompressedFSA1<T>::doProceedToNextByList(
const char c,
const unsigned char shortLabel,
const unsigned char* ptr,
const unsigned int transitionsNum,
State<T>& state) const {
register const unsigned char* currPtr = ptr;
// TransitionData* foundTransition = (TransitionData*) (fromPointer + transitionsTableOffset);
bool found = false;
TransitionData2 td;
for (unsigned int i = 0; i < transitionsNum; i++) {
// const_cast<Counter*>(&counter)->increment(1);
td = *((TransitionData2*) currPtr);
if (td.shortLabel == shortLabel) {
if (shortLabel == 0) {
currPtr++;
char label = (char) *currPtr;
if (label == c) {
found = true;
break;
}
else {
currPtr += td.offsetSize + 1;
}
} else {
found = true;
break;
}
}
else {
if (td.shortLabel == 0) {
currPtr++;
}
currPtr += td.offsetSize + 1;
}
}
// const_cast<Counter*>(&counter)->increment(foundTransition - transitionsStart + 1);
if (!found) {
// cerr << "SINK for " << c << endl;
state.setNextAsSink();
} else {
currPtr++;
// cerr << "offset size " << td.offsetSize << endl;
// cerr << "offset " << offset << endl;
switch (td.offsetSize) {
case 0:
break;
case 1:
currPtr += *currPtr + 1;
break;
case 2:
currPtr += ntohs(*((uint16_t*) currPtr)) + 2;
break;
case 3:
currPtr += (((unsigned int) ntohs(*((uint16_t*) currPtr))) << 8) + currPtr[2] + 3;
break;
}
// cerr << "FOUND " << c << " " << currPtr - this->startPtr << endl;
reallyDoProceed(currPtr, state);
}
}
template <class T>
void CompressedFSA1<T>::doProceedToNextByArray(
const unsigned char shortLabel,
const uint32_t* ptr,
State<T>& state) const {
uint32_t offset = ntohl(ptr[shortLabel]);
if (offset != 0) {
const unsigned char* currPtr = this->initialStatePtr + offset;
reallyDoProceed(currPtr, state);
}
else {
state.setNextAsSink();
}
}
template <class T>
void CompressedFSA1<T>::proceedToNext(const char c, State<T>& state) const {
// if (c <= 'z' && 'a' <= c)
// cerr << "NEXT " << c << " from " << state.getOffset() << endl;
// else
// cerr << "NEXT " << (short) c << " from " << state.getOffset() << endl;
const unsigned char* fromPointer = this->initialStatePtr + state.getOffset();
unsigned char shortLabel = this->label2ShortLabel[(const unsigned char) c];
unsigned int transitionsTableOffset = 1;
if (state.isAccepting()) {
transitionsTableOffset += state.getValueSize();
// cerr << "transitionsTableOffset " << transitionsTableOffset + state.getOffset() << " because value is " << state.getValue() << endl;
}
StateData2* sd = (StateData2*) (fromPointer);
// cerr << "transitions num=" << sd->transitionsNum << endl;
if (sd->array) {
if (shortLabel > 0) {
this->doProceedToNextByArray(
shortLabel,
(uint32_t*) (fromPointer + transitionsTableOffset),
state);
}
else {
reallyDoProceed((unsigned char*) fromPointer + transitionsTableOffset + 256, state);
proceedToNext(c, state);
}
}
else {
this->doProceedToNextByList(
c,
shortLabel,
(unsigned char*) (fromPointer + transitionsTableOffset),
sd->transitionsNum,
state);
}
}
#endif /* CFSA1_IMPL_HPP */