-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathBufferReader.c
237 lines (196 loc) · 5.95 KB
/
BufferReader.c
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2013-4-6
* Update : 2019-1-9
* Author : scott.cgi
*/
#include <string.h>
#include "Engine/Toolkit/Utils/BufferReader.h"
#include "Engine/Toolkit/Platform/Log.h"
#define CheckRange(tag) \
ALog_A \
( \
range->start <= range->end, \
"ABufferReader " tag " range error start[%d] > end[%d].", \
range->start, \
range->end \
)
#define ReadLineLog() \
ALog_D("ABufferReader ReadLine = %.*s", outLine->end - outLine->start + 1, buffer + outLine->start)
static void ReadLine(const char* buffer, ArrayRange* range, ArrayRange* outLine)
{
CheckRange("ReadLine");
int start = range->start;
int end = range->end;
outLine->start = start;
outLine->end = start;
for (; start <= end; ++start)
{
if (buffer[start] == '\n')
{
outLine->end = start;
if (start != end)
{
// move to new start
range->start = start + 1;
}
else
{
// scan over
range->start = end;
}
ReadLineLog();
return;
}
else if (buffer[start] == '\r')
{
if (start != end)
{
// check next char
++start;
if (buffer[start] == '\n')
{
outLine->end = start;
if (start != end)
{
// move to new start
range->start = start + 1;
}
else
{
// scan over
range->start = end;
}
}
else
{
// back to '\r'
outLine->end = start - 1;
// start is next
range->start = start;
}
}
else
{
outLine->end = start;
// scan over
range->start = end;
}
ReadLineLog();
return;
}
}
// not found newline char
outLine->end = end;
range->end = end;
ReadLineLog();
}
/**
* Redundancy is better so don't delete.
*/
static bool TryFindStringByLoop(const char* buffer, ArrayRange* range, const char* str)
{
CheckRange("TryFindString");
int start = range->start;
int end = range->end;
int pos = 0;
char first = str[0];
int cmp;
for (; start <= end; ++start)
{
// always test from first char
if (buffer[start] == first)
{
// compare from start
cmp = start;
while (true)
{
++pos;
if (str[pos] == '\0')
{
if (cmp != end)
{
// move to next char
range->start = cmp + 1;
}
else
{
// scan over
range->start = end;
}
ALog_D
(
"ABufferReader TryFindString found str = %.*s, after str = '%c'",
cmp - start + 1,
buffer + start,
buffer[range->start]
);
return true;
}
++cmp;
if (cmp > end)
{
// scan over
goto NotFoundStr;
}
if (buffer[cmp] != str[pos])
{
// compare failure reset to first
pos = 0;
break;
}
}
}
}
NotFoundStr:
ALog_D("ABufferReader TryFindString not found str = %s", str);
// keep range->start
return false;
}
static bool TryFindStringByMemcmp(const char* buffer, ArrayRange* range, const char* str)
{
CheckRange("TryFindString");
char* bufferStart = (char*) buffer + range->start;
int len1 = range->end - range->start + 1; // count [start, end]
int len2 = (int) strlen(str);
while (len1 >= len2)
{
if (memcmp(bufferStart, str, (size_t) len2) == 0)
{
// move to next char
// newStart + 1 = ((range->end - len1 + 1) + len2 - 1) + 1
range->start = range->end - len1 + len2 + 1;
if (range->start > range->end)
{
range->start = range->end;
}
ALog_D
(
"ABufferReader TryFindString found str = %.*s, after str = '%c'",
len2,
bufferStart,
buffer[range->start]
);
return true;
}
--len1;
++bufferStart;
}
ALog_D("ABufferReader TryFindString not found str = %s", str);
// keep range->start
return false;
}
struct ABufferReader ABufferReader[1] =
{{
ReadLine,
TryFindStringByMemcmp,
}};
#undef ReadLineLog