-
Notifications
You must be signed in to change notification settings - Fork 7
/
eop_lex_stream.cpp
850 lines (635 loc) · 27.9 KB
/
eop_lex_stream.cpp
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
/*
Copyright 2005-2007 Adobe Systems Incorporated
Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt
or a copy at http://stlab.adobe.com/licenses.html)
*/
/*************************************************************************************************/
#include <adobe/once.hpp>
#include <adobe/string.hpp>
#include <adobe/name.hpp>
#include <adobe/implementation/token.hpp>
#include <adobe/implementation/lex_shared_fwd.hpp>
#include <adobe/implementation/parser_shared.hpp>
#include <adobe/circular_queue.hpp>
#include <adobe/istream.hpp>
#include <boost/array.hpp>
#include <iostream>
#include <sstream>
#include "eop_lex_stream.hpp"
/*************************************************************************************************/
#ifdef BOOST_MSVC
namespace std
{
using ::isspace;
using ::isdigit;
using ::isalnum;
using ::isalpha;
}
#endif
/*************************************************************************************************/
ADOBE_ONCE_DECLARATION(adobe_lex_stream)
/*************************************************************************************************/
namespace {
using namespace adobe;
/*************************************************************************************************/
#if 0
#pragma mark -
#endif
/*************************************************************************************************/
namespace implementation {
struct lex_fragment_t
{
lex_fragment_t( stream_lex_token_t token = stream_lex_token_t(),
const line_position_t& line_position = line_position_t()) :
token_value_m(move(token)), line_position_m(line_position)
{ }
lex_fragment_t(move_from<lex_fragment_t> x) :
token_value_m(move(x.source.token_value_m)), line_position_m(move(x.source.line_position_m))
{ }
lex_fragment_t& operator=(lex_fragment_t x)
{
token_value_m = move(x.token_value_m);
line_position_m = move(x.line_position_m);
return *this;
}
stream_lex_token_t token_value_m;
line_position_t line_position_m;
};
} // namespace implementation
template < std::size_t S,
typename I> // I models InputIterator
struct stream_lex_base_t
{
public:
typedef std::istream::pos_type pos_type;
typedef boost::function<void (char)> parse_token_proc_t;
stream_lex_base_t(I first, I last, const line_position_t& position);
virtual ~stream_lex_base_t();
const stream_lex_token_t& get_token();
void putback_token();
void put_token(stream_lex_token_t token);
bool get_char(char& c);
void putback_char(char c);
int peek_char();
void ignore_char();
void throw_exception(const name_t& expected, const name_t& found);
void throw_parser_exception(const char* error_string);
virtual void skip_white_space() = 0;
const line_position_t& next_position();
bool is_line_end(char c);
void set_parse_token_proc(parse_token_proc_t proc);
std::vector<char> identifier_buffer_m;
private:
I first_m;
I last_m;
std::streampos streampos_m;
line_position_t line_position_m;
parse_token_proc_t parse_proc_m;
boost::array<char, 8> putback_m; // stack-based is faster
std::size_t index_m; // for putback_m
#if !defined(ADOBE_NO_DOCUMENTATION)
circular_queue<implementation::lex_fragment_t> last_token_m; // N token lookahead
#endif // !defined(ADOBE_NO_DOCUMENTATION)
};
/*************************************************************************************************/
template <std::size_t S, typename I>
stream_lex_base_t<S, I>::stream_lex_base_t(I first, I last, const line_position_t& position) :
identifier_buffer_m(128),
first_m(first),
last_m(last),
streampos_m(1),
line_position_m(position),
index_m(0),
last_token_m(S)
{ }
/*************************************************************************************************/
template <std::size_t S, typename I>
stream_lex_base_t<S, I>::~stream_lex_base_t()
{ }
/*************************************************************************************************/
template <std::size_t S, typename I>
bool stream_lex_base_t<S, I>::get_char(char& c)
{
if (index_m)
{
c = static_cast<char>(putback_m[index_m]);
--index_m;
streampos_m += 1;
return true;
}
if (first_m == last_m) return false;
c = static_cast<char>(*first_m);
++first_m;
streampos_m += 1;
return true;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
void stream_lex_base_t<S, I>::putback_char(char c)
{
putback_m[++index_m] = c;
streampos_m -= 1;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
int stream_lex_base_t<S, I>::peek_char()
{
if (index_m)
return putback_m[index_m];
else if (first_m == last_m)
return EOF;
else
return *first_m;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
void stream_lex_base_t<S, I>::ignore_char()
{
if (index_m)
--index_m;
else if (first_m == last_m)
return;
else
++first_m;
streampos_m += 1;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
const stream_lex_token_t& stream_lex_base_t<S, I>::get_token()
{
assert(parse_proc_m);
if (last_token_m.empty())
{
char c;
/*
REVISIT (sparent) : You can't get(c), tellg(), and then putback(c) on a stream - the
tellg() in the middle will cause the putback(c) to move the stream to an invalid state.
So instead of calling skip_space(c) we break up the call with the tellg() in the middle,
prior to the callback.
*/
skip_white_space();
line_position_m.position_m = streampos_m; // remember the start of the token position
/*
REVISIT (sparent) : I don't like that eof is not handled as the other tokens are handled
there should be a way to make this logic consistant.
*/
if (!get_char(c)) // eof
put_token(stream_lex_token_t(eof_k, any_regular_t()));
else
parse_proc_m(c);
}
stream_lex_token_t& result(last_token_m.front().token_value_m);
last_token_m.pop_front();
return result;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
void stream_lex_base_t<S, I>::put_token(stream_lex_token_t token)
{
last_token_m.push_back(implementation::lex_fragment_t(move(token), line_position_m));
}
/*************************************************************************************************/
template <std::size_t S, typename I>
void stream_lex_base_t<S, I>::putback_token()
{
last_token_m.putback(); // REVISIT (sparent) : Check for overflow
}
/*************************************************************************************************/
template <std::size_t S, typename I>
const line_position_t& stream_lex_base_t<S, I>::next_position()
{
/*
REVISIT (sparent) : Clean this up - this primes the ring buffer so we can get the next position
*/
get_token(); putback_token();
return last_token_m.front().line_position_m;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
bool stream_lex_base_t<S, I>::is_line_end(char c)
{
using adobe::is_line_end;
std::size_t num_chars_eaten(is_line_end(first_m, last_m, c));
if (num_chars_eaten != 0)
{
++line_position_m.line_number_m;
if (num_chars_eaten == 2)
streampos_m += 1;
line_position_m.line_start_m = streampos_m;
}
return num_chars_eaten != 0;
}
/*************************************************************************************************/
template <std::size_t S, typename I>
void stream_lex_base_t<S, I>::throw_parser_exception(const char* error_string)
{
using adobe::throw_parser_exception;
throw_parser_exception(error_string, line_position_m);
}
/*************************************************************************************************/
template <std::size_t S, typename I>
void stream_lex_base_t<S, I>::set_parse_token_proc(parse_token_proc_t proc)
{
parse_proc_m = proc;
}
/*************************************************************************************************/
/*************************************************************************************************/
typedef boost::array<adobe::name_t, 3> keyword_table_t;
/*************************************************************************************************/
const keyword_table_t* keywords_g;
const char* compound_match_g;
const adobe::name_t* name_table_g;
const int* compound_index_g;
const int* simple_index_g;
/*************************************************************************************************/
void init_once()
{
static keyword_table_t keywords_s = {{
adobe::true_k,
adobe::false_k
}};
static const char compound_match_s[] = {
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
/* 00 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 10 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 20 */ '0', '=', '0', '0', '0', '0', '&', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 30 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '=', '=', '=', '0',
/* 40 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 50 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 60 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 70 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '|', '0', '0', '0',
/* 80 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* 90 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* A0 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* B0 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* C0 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* D0 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* E0 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
/* F0 */ '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0'
};
static const adobe::name_t name_table_s[] = {
/* 00 */ adobe::empty_k,
/* 01 */ adobe::equal_k,
/* 02 */ adobe::and_k,
/* 03 */ adobe::or_k,
/* 04 */ adobe::less_equal_k,
/* 05 */ adobe::greater_equal_k,
/* 06 */ adobe::not_equal_k,
/* 07 */ adobe::add_k,
/* 08 */ adobe::subtract_k,
/* 09 */ adobe::multiply_k,
/* 0A */ adobe::divide_k,
/* 0B */ adobe::modulus_k,
/* 0C */ adobe::question_k, // Removed...
/* 0D */ adobe::colon_k,
/* 0E */ adobe::semicolon_k,
/* 0F */ adobe::assign_k,
/* 10 */ adobe::not_k,
/* 11 */ adobe::open_brace_k,
/* 12 */ adobe::close_brace_k,
/* 13 */ adobe::less_k,
/* 14 */ adobe::greater_k,
/* 15 */ adobe::open_parenthesis_k,
/* 16 */ adobe::close_parenthesis_k,
/* 17 */ eop::reference_k,
/* 18 */ adobe::open_bracket_k,
/* 19 */ adobe::close_bracket_k,
/* 1A */ adobe::comma_k,
/* 1B */ adobe::dot_k,
/* 1C */ eop::destructor_k
};
static const int compound_index_s[] = {
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
/* 00 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 10 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 20 */ 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 30 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x05, 0x00,
/* 40 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 50 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 60 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 70 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
/* 80 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 90 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* A0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* B0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* C0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* D0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* E0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* F0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
static const int simple_index_s[] = {
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
/* 00 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 10 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 20 */ 0x00, 0x10, 0x00, 0x00, 0x00, 0x0B, 0x17, 0x00, 0x15, 0x16, 0x09, 0x07, 0x1A, 0x08, 0x1B, 0x0A,
/* 30 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x0E, 0x13, 0x0F, 0x14, 0x00,
/* 40 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 50 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x19, 0x00, 0x00,
/* 60 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 70 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x12, 0x1C, 0x00,
/* 80 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 90 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* A0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* B0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* C0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* D0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* E0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* F0 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
adobe::sort(keywords_s);
keywords_g = &keywords_s;
compound_match_g = &compound_match_s[0];
name_table_g = &name_table_s[0];
compound_index_g = &compound_index_s[0];
simple_index_g = &simple_index_s[0];
}
/*************************************************************************************************/
void once_instance()
{
ADOBE_ONCE_INSTANCE(adobe_lex_stream);
}
/*************************************************************************************************/
} // namespace
/*************************************************************************************************/
ADOBE_ONCE_DEFINITION(adobe_lex_stream, init_once)
/*************************************************************************************************/
namespace eop {
/*************************************************************************************************/
aggregate_name_t reference_k = { "reference" };
aggregate_name_t pound_k = { "pound" };
aggregate_name_t shift_left_k = { "shift_left" };
aggregate_name_t shift_right_k = { "shift_right" };
aggregate_name_t destructor_k = { "destructor" };
/*************************************************************************************************/
#ifndef NDEBUG
std::ostream& operator<<(std::ostream& out, const stream_lex_token_t& token)
{
out << "{" << token.first << ": " << token.second << "}";
return out;
}
#endif
/*************************************************************************************************/
struct lex_stream_t::implementation_t : stream_lex_base_t<2, std::istream_iterator<char> >
{
typedef stream_lex_base_t<2, std::istream_iterator<char> > _super;
public:
typedef std::istream::pos_type pos_type;
implementation_t(std::istream& in, const line_position_t& position);
void set_keyword_extension_lookup(const keyword_extension_lookup_proc_t& proc);
private:
void parse_token(char c);
bool is_comment(char c, stream_lex_token_t& result);
bool is_string(char c, stream_lex_token_t& result);
bool is_number(char c, stream_lex_token_t& result);
bool is_compound(char c, stream_lex_token_t& result);
bool is_simple(char c, stream_lex_token_t& result);
bool is_identifier_or_keyword(char c, stream_lex_token_t& result);
void skip_white_space();
bool skip_space(char& c);
keyword_extension_lookup_proc_t keyword_proc_m;
};
/*************************************************************************************************/
lex_stream_t::lex_stream_t(std::istream& in, const line_position_t& position ) :
object_m(new lex_stream_t::implementation_t(in, position))
{ once_instance(); }
#if !defined(ADOBE_NO_DOCUMENTATION)
lex_stream_t::lex_stream_t(const lex_stream_t& rhs) :
object_m(new lex_stream_t::implementation_t(*rhs.object_m))
{ once_instance(); }
lex_stream_t::~lex_stream_t()
{ delete object_m; }
lex_stream_t& lex_stream_t::operator = (const lex_stream_t& rhs)
{ *object_m = *rhs.object_m; return *this; }
#endif // !defined(ADOBE_NO_DOCUMENTATION)
const stream_lex_token_t& lex_stream_t::get()
{ return object_m->get_token(); }
void lex_stream_t::putback()
{ object_m->putback_token(); }
const line_position_t& lex_stream_t::next_position()
{ return object_m->next_position(); }
void lex_stream_t::set_keyword_extension_lookup(const keyword_extension_lookup_proc_t& proc)
{ return object_m->set_keyword_extension_lookup(proc); }
/*************************************************************************************************/
#if 0
#pragma mark -
#endif
/*************************************************************************************************/
lex_stream_t::implementation_t::implementation_t(std::istream& in, const line_position_t& position) :
_super(std::istream_iterator<char>(in), std::istream_iterator<char>(), position)
{
in.unsetf(std::ios_base::skipws);
_super::set_parse_token_proc(boost::bind(&lex_stream_t::implementation_t::parse_token, boost::ref(*this), _1));
}
/*************************************************************************************************/
void lex_stream_t::implementation_t::set_keyword_extension_lookup(const keyword_extension_lookup_proc_t& proc)
{
keyword_proc_m = proc;
}
/*************************************************************************************************/
bool lex_stream_t::implementation_t::is_number(char c, stream_lex_token_t& result)
{
if (!std::isdigit(c)) return false;
_super::putback_char(c);
std::stringstream temp;
temp.imbue(std::locale::classic());
while (true)
{
if (!_super::get_char(c)) break;
if (!std::isdigit(c) && c != '.')
{
_super::putback_char(c);
break;
}
temp << c;
}
double re(0);
temp >> re;
result = stream_lex_token_t(number_k, any_regular_t(re));
return true;
}
/*************************************************************************************************/
bool lex_stream_t::implementation_t::is_identifier_or_keyword(char c, stream_lex_token_t& result)
{
if (!std::isalpha(c) && c != '_') return false;
identifier_buffer_m.clear();
do
{
if (std::isalnum(c) || c == '_')
{
identifier_buffer_m.push_back(c);
}
else
{
_super::putback_char(c);
break;
}
}
while (_super::get_char(c));
identifier_buffer_m.push_back(0);
name_t ident(&identifier_buffer_m.front());
keyword_table_t::const_iterator iter(lower_bound(*keywords_g, ident));
if ((iter != keywords_g->end() && *iter == ident) ||
(!keyword_proc_m.empty() && keyword_proc_m(ident)))
{
result = stream_lex_token_t(keyword_k, any_regular_t(ident));
}
else
{
result = stream_lex_token_t(identifier_k, any_regular_t(ident));
}
return true;
}
/*************************************************************************************************/
bool lex_stream_t::implementation_t::is_comment(char c, stream_lex_token_t& result)
{
if (c == '#') {
while (_super::get_char(c) && !is_line_end(c)) identifier_buffer_m.push_back(c);
identifier_buffer_m.push_back(0);
result = stream_lex_token_t(trail_comment_k, any_regular_t(std::string(&identifier_buffer_m[0])));
return true;
}
if (c != '/') return false;
std::istream::int_type peek_c (_super::peek_char());
if (peek_c == EOF || (peek_c != '/' && peek_c != '*')) return false;
(void)_super::get_char(c);
identifier_buffer_m.clear();
if (c == '/')
{
while (_super::get_char(c) && !is_line_end(c))
{
identifier_buffer_m.push_back(c);
}
identifier_buffer_m.push_back(0);
result = stream_lex_token_t(trail_comment_k, any_regular_t(std::string(&identifier_buffer_m[0])));
}
else // if (c == '*')
{
while (true)
{
if (!_super::get_char(c))
throw_parser_exception("Unexpected EOF in comment.");
if (c == '*')
{
peek_c = _super::peek_char();
if (peek_c != EOF && peek_c == '/')
{ _super::ignore_char(); break; }
}
else if (is_line_end(c))
{ c = '\n'; }
identifier_buffer_m.push_back(c);
}
identifier_buffer_m.push_back(0);
result = stream_lex_token_t(lead_comment_k, any_regular_t(std::string(&identifier_buffer_m[0])));
}
return true;
}
/*************************************************************************************************/
bool lex_stream_t::implementation_t::is_string(char c, stream_lex_token_t& result)
{
if (c != '\'' && c != '\"') return false;
identifier_buffer_m.clear();
while (true)
{
char end_char (c);
while (_super::get_char(c) && c != end_char)
{
// REVISIT (sparent) : Handle quoted characters here.
// Also handle invalid characters such as line endings.
identifier_buffer_m.push_back(c);
}
if (c != end_char) throw_parser_exception("Unexpected EOF in string.");
if (!skip_space(c)) break;
if (c != '\'' && c != '\"')
{
_super::putback_char(c);
break;
}
}
identifier_buffer_m.push_back(0);
result = stream_lex_token_t(string_k, any_regular_t(std::string(&identifier_buffer_m[0])));
return true;
}
/*************************************************************************************************/
/*
is_compound() works by noting that in all the current compound tokens the token is unique in
the first character and only requires that the proper second character be present.
*/
bool lex_stream_t::implementation_t::is_compound(char c, stream_lex_token_t& result)
{
char next_char (compound_match_g[(unsigned char)c]);
if (next_char == '0') return false;
int actual_next (_super::peek_char());
if (actual_next == EOF) return false;
char actual_char(actual_next);
/*
Special case the shift operators here - they aren't unique in the second character.
*/
if (c == '<' && actual_char == '<') {
result = stream_lex_token_t(shift_left_k, any_regular_t());
_super::ignore_char();
return true;
}
if (c == '>' && actual_char == '>') {
result = stream_lex_token_t(shift_right_k, any_regular_t());
_super::ignore_char();
return true;
}
if (actual_char != next_char) return false;
_super::ignore_char();
/*
There is only a single 3 character compound. It is special cased here rather than adding an
additional table. The token is '<=='.
*/
if (c == '<' && _super::peek_char() == '=')
{
_super::ignore_char();
result = stream_lex_token_t(is_k, any_regular_t());
return true;
}
result = stream_lex_token_t(name_table_g[compound_index_g[(unsigned char)c]], any_regular_t());
return true;
}
/*************************************************************************************************/
bool lex_stream_t::implementation_t::is_simple(char c, stream_lex_token_t& result)
{
int index (simple_index_g[(unsigned char)c]);
if (index == 0) return false;
result = stream_lex_token_t(name_table_g[index], any_regular_t());
return true;
}
/*************************************************************************************************/
void lex_stream_t::implementation_t::skip_white_space()
{
char c;
stream_lex_token_t tmp;
while (get_char(c))
{
// Handle any type of line ending.
if (!is_line_end(c) && !std::isspace(c) && !is_comment(c, tmp))
{
putback_char(c);
break;
}
}
}
bool lex_stream_t::implementation_t::skip_space(char& c)
{
skip_white_space();
return get_char(c);
}
/*************************************************************************************************/
void lex_stream_t::implementation_t::parse_token(char c)
{
stream_lex_token_t result;
if (!( is_number(c, result)
|| is_identifier_or_keyword(c, result)
// || is_comment(c, result)
|| is_string(c,result)
|| is_compound(c, result)
|| is_simple(c, result)))
{ throw_parser_exception("Syntax Error"); }
put_token(move(result));
}
/*************************************************************************************************/
} // namespace eop
/*************************************************************************************************/