-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisitor_pattern.php
More file actions
423 lines (358 loc) · 12.6 KB
/
visitor_pattern.php
File metadata and controls
423 lines (358 loc) · 12.6 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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<?php
declare(strict_types=1);
require __DIR__ . '/../vendor/autoload.php';
use Kestrel\JsoncParser\JsoncParser;
use Kestrel\JsoncParser\Parser\JsonVisitor;
echo "=== PHP JSONC Parser - Visitor Pattern Examples ===\n\n";
// Example 1: Event Logger Visitor
echo "1. Event Logger - Tracking All Parse Events\n";
echo str_repeat('-', 50) . "\n";
class EventLoggerVisitor implements JsonVisitor
{
private array $events = [];
public function onObjectBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$this->events[] = "Object started at offset $offset";
return null;
}
public function onObjectEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
$this->events[] = "Object ended at offset $offset";
return null;
}
public function onObjectProperty(string $property, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$this->events[] = "Property '$property' at offset $offset";
return null;
}
public function onArrayBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$this->events[] = "Array started at offset $offset";
return null;
}
public function onArrayEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
$this->events[] = "Array ended at offset $offset";
return null;
}
public function onLiteralValue(mixed $value, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$valueStr = json_encode($value);
$this->events[] = "Literal value $valueStr at offset $offset";
return null;
}
public function onSeparator(string $character, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
$this->events[] = "Separator '$character' at offset $offset";
return null;
}
public function onComment(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
$this->events[] = "Comment at offset $offset (length $length)";
return null;
}
public function onError(int $error, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
$this->events[] = "Error $error at offset $offset";
return null;
}
public function getEvents(): array
{
return $this->events;
}
}
$json = '{"name": "Alice", "age": 30, "hobbies": ["reading", "coding"]}';
echo "Input: $json\n\n";
$logger = new EventLoggerVisitor();
JsoncParser::visit($json, $logger);
echo "Events logged:\n";
foreach ($logger->getEvents() as $i => $event) {
echo sprintf("%2d. %s\n", $i + 1, $event);
}
echo "\n";
// Example 2: Property Counter
echo "2. Property Counter - Counting Object Properties\n";
echo str_repeat('-', 50) . "\n";
class PropertyCounterVisitor implements JsonVisitor
{
private int $propertyCount = 0;
private int $depth = 0;
public function onObjectBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$this->depth++;
return null;
}
public function onObjectEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
$this->depth--;
return null;
}
public function onObjectProperty(string $property, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$this->propertyCount++;
$indent = str_repeat(' ', $this->depth);
$path = implode('.', $pathSupplier());
echo "{$indent}Property: $path\n";
return null;
}
public function getCount(): int
{
return $this->propertyCount;
}
// Required but unused methods
public function onArrayBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onArrayEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onLiteralValue(mixed $value, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onSeparator(string $character, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onComment(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onError(int $error, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
}
$json = '{
"user": {
"name": "Bob",
"email": "bob@example.com",
"settings": {
"theme": "dark",
"notifications": true
}
},
"timestamp": 1234567890
}';
echo "Input:\n$json\n\n";
$counter = new PropertyCounterVisitor();
JsoncParser::visit($json, $counter);
echo "\nTotal properties found: {$counter->getCount()}\n\n";
// Example 3: Data Extractor - Extract Specific Values
echo "3. Data Extractor - Finding Specific Values\n";
echo str_repeat('-', 50) . "\n";
class EmailExtractorVisitor implements JsonVisitor
{
private array $emails = [];
public function onObjectProperty(string $property, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
// Track when we enter an "email" property
return null;
}
public function onLiteralValue(mixed $value, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$path = $pathSupplier();
$lastSegment = end($path);
// Check if this is an email field
if ($lastSegment === 'email' && is_string($value)) {
$this->emails[] = [
'path' => implode('.', $path),
'email' => $value,
'line' => $startLine
];
}
return null;
}
public function getEmails(): array
{
return $this->emails;
}
// Required methods
public function onObjectBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onObjectEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onArrayBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onArrayEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onSeparator(string $character, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onComment(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onError(int $error, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
}
$json = '{
"users": [
{"name": "Alice", "email": "alice@example.com"},
{"name": "Bob", "email": "bob@example.com"}
],
"admin": {
"email": "admin@example.com"
}
}';
echo "Input:\n$json\n\n";
$extractor = new EmailExtractorVisitor();
JsoncParser::visit($json, $extractor);
echo "Emails found:\n";
foreach ($extractor->getEmails() as $info) {
echo " - {$info['path']}: {$info['email']} (line {$info['line']})\n";
}
echo "\n";
// Example 4: Validator - Check Data Structure
echo "4. Validator - Ensuring Required Fields\n";
echo str_repeat('-', 50) . "\n";
class RequiredFieldsValidator implements JsonVisitor
{
private array $requiredFields;
private array $foundFields = [];
private array $missingFields = [];
public function __construct(array $requiredFields)
{
$this->requiredFields = $requiredFields;
}
public function onObjectProperty(string $property, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
$path = implode('.', $pathSupplier());
$this->foundFields[] = $path;
return null;
}
public function validate(): array
{
foreach ($this->requiredFields as $required) {
if (!in_array($required, $this->foundFields, true)) {
$this->missingFields[] = $required;
}
}
return $this->missingFields;
}
// Required methods
public function onObjectBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onObjectEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onArrayBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onArrayEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onLiteralValue(mixed $value, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onSeparator(string $character, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onComment(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onError(int $error, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
}
$json = '{
"name": "MyApp",
"version": "1.0.0",
"author": "Alice"
}';
echo "Input:\n$json\n\n";
$requiredFields = ['name', 'version', 'author', 'license'];
$validator = new RequiredFieldsValidator($requiredFields);
JsoncParser::visit($json, $validator);
$missing = $validator->validate();
echo "Required fields: " . implode(', ', $requiredFields) . "\n";
if (empty($missing)) {
echo "✓ All required fields present\n";
} else {
echo "✗ Missing fields: " . implode(', ', $missing) . "\n";
}
echo "\n";
// Example 5: Early Termination
echo "5. Early Termination - Stopping Parsing Early\n";
echo str_repeat('-', 50) . "\n";
class FirstValueFinder implements JsonVisitor
{
private mixed $firstValue = null;
private bool $found = false;
public function onLiteralValue(mixed $value, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
if (!$this->found) {
$this->firstValue = $value;
$this->found = true;
// Return true to stop parsing
return true;
}
return null;
}
public function getFirstValue(): mixed
{
return $this->firstValue;
}
// Required methods
public function onObjectBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onObjectEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onObjectProperty(string $property, int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onArrayBegin(int $offset, int $length, int $startLine, int $startCharacter, \Closure $pathSupplier): bool|null
{
return null;
}
public function onArrayEnd(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onSeparator(string $character, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onComment(int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
public function onError(int $error, int $offset, int $length, int $startLine, int $startCharacter): bool|null
{
return null;
}
}
$largeJson = '{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}';
echo "Input: $largeJson\n\n";
$finder = new FirstValueFinder();
JsoncParser::visit($largeJson, $finder);
echo "First value found: " . json_encode($finder->getFirstValue()) . "\n";
echo "(Parsing stopped early after finding first value)\n";
echo "\n=== Examples Complete ===\n";