File: c_compactor.e

package info (click to toggle)
smarteiffel 1.1-11
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 12,288 kB
  • ctags: 40,785
  • sloc: ansic: 35,791; lisp: 4,036; sh: 1,783; java: 895; ruby: 613; python: 209; makefile: 115; csh: 78; cpp: 50
file content (633 lines) | stat: -rw-r--r-- 16,823 bytes parent folder | download | duplicates (2)
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
-- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries
--
-- SmartEiffel is  free software;  you can redistribute it and/or  modify it
-- under  the terms of the  GNU General Public License, as published by  the
-- Free Software Foundation; either version 2, or (at your option) any later
-- version.
-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT 
-- ANY WARRANTY;  without  even the implied warranty  of MERCHANTABILITY  or
-- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
-- more details.  You should have received a copy of  the GNU General Public
-- License along with SmartEiffel;  see the file COPYING.  If not,  write to
-- the Free Software Foundation,  Inc., 59 Temple Place - Suite 330,  Boston, 
-- MA 02111-1307, USA.
--
-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P.
--			   - University of Nancy 1 - FRANCE
-- Copyright(C) 2003:      INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne
--			   - University of Nancy 2 - FRANCE
--
--		 Dominique COLNET, Suzanne COLLIN, Olivier ZENDRA,
--			   Philippe RIBET, Cyril ADRIAN
--
-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
--
class C_COMPACTOR
   --
   -- Outputs really compact C code
   --
   -- C_COMPACTOR is a very low-level interface between C_PRETTY_PRINTER and
   -- the real file; it understands the notions of C strings, characters and
   -- comments; it also knows about symbols, and symbols that should keep
   -- their proper name. Any other symbol is, hem... shortened... :o)
   --
   -- Note that this class is only based on mere heuristics, it's by no means
   -- a true C parser!
   --
   -- Also note that this option considerably slowers the compilation. Double
   -- times have been seen.
   --
   -- See `reserved_words' for the list of non-changed symbols.
   --
inherit
   GLOBALS
   VISITABLE
   TEXT_FILE_WRITE
      undefine
         tmp_file_read
      redefine
         connect_to, disconnect, is_connected, flush, put_character, make
      end

creation {C_PRETTY_PRINTER}
   make

feature {C_COMPACTOR_VISITOR}

   accept(visitor: C_COMPACTOR_VISITOR) is
      do
         visitor.visit_c_compactor(Current)
      end

feature {NONE}

   max_columns: INTEGER is 132

feature

   unstripped_count: COUNTER is
      once
         create Result
      end

   stripped_count: COUNTER is
      once
         create Result
      end

   put_character(c: CHARACTER) is
      do
         unstripped_count.increment
         next_state(c)
      end

   is_connected: BOOLEAN is
      do
         Result := output.is_connected
      end

   flush is
      do
         output.flush
      end

   disconnect is
      do
         out_buffers(wstate = 0)
         output.put_new_line
         output.disconnect
      end

   connect_to(a_path: STRING) is
      do
         output.connect_to(a_path)
      end

   show_gain is
      local
         gain: INTEGER
      do
         gain := (unstripped_count.value - stripped_count.value) * 100 // unstripped_count.value
         echo.put_string(once "Compact gain: ")
         echo.put_integer(gain)
         echo.put_string(once "%%%N")
      end

   write_symbols(tfw: TEXT_FILE_WRITE) is
      local
         i, j: INTEGER
         k, v: STRING
      do
         from
            i := symbols.lower
         until
            i > symbols.upper
         loop
            k := symbols.key(i)
            v := symbols.item(i)
            if not k.is_equal(v) then
               tfw.put_string(once "#define ")
               tfw.put_string(v)
               tfw.put_character(' ')
               tfw.put_string(k)
               tfw.put_new_line
               from
                  j := 9 + k.count + v.count
               until
                  j = 0
               loop
                  stripped_count.increment
                  j := j - 1
               end
            end
            i := i + 1
         end
      end

   register_symbol(s: STRING) is
      local
         dummy: STRING
      do
         dummy := compact_symbol(s)
      end

feature {NONE}

   next_state(cc: CHARACTER) is
      do
	 inspect
	    state
	 when 0 then -- Initial normal state.
	    inspect
	       cc
	    when '/' then
	       new_state(1, False, ' ')
	    when '%"' then
	       new_state(4, True, cc)
	    when '%'' then
	       new_state(6, True, cc)
	    when '\' then
	       new_state(8, True, cc)
            when '%T', ' ' then
               new_state(10, False, ' ')
            when '%N' then
               if column > max_columns then
                  new_state(9, True, '%N')
               else
                  new_state(9, in_macro, '%N')
               end
               in_macro := False
	    else
	       new_state(state, True, cc)
	    end
	 when 1 then -- After / with this / delayed.
	    inspect
	       cc
	    when '*' then
	       new_state(2, False, ' ')
	    when '/' then
	       new_state(12, False, ' ')
	    when '\' then
               write('/')
	       new_state(8, True, cc)
            when '%T', ' ' then
               write('/')
               new_state(10, False, ' ')
            when '%N' then
               write('/')
               if column > max_columns then
                  new_state(9, True, '%N')
               else
                  new_state(9, in_macro, '%N')
               end
               in_macro := False
	    else
	       write('/')
	       new_state(0, True, cc)
	    end
	 when 2 then -- Inside C comment.
	    inspect
	       cc
	    when '*' then
	       new_state(3, False, ' ')
	    else
	       new_state(state, False, ' ')
	    end
	 when 3 then -- Inside C comment after closing *
	    inspect
	       cc
	    when '/' then
	       new_state(10, False, ' ')
            when '*' then
               new_state(state, False, ' ')
	    else
	       new_state(2, False, ' ')
	    end
	 when 4 then -- Inside C string.
	    inspect
	       cc
	    when '%"' then
	       new_state(0, True, cc)
	    when '\' then
	       new_state(5, True, cc)
	    else
	       new_state(state, True, cc)
	    end
	 when 5 then -- Inside C string, after \
	    new_state(4, True, cc)
	 when 6 then -- Inside C character (after the first ' ).
	    inspect
	       cc
	    when '\' then
	       new_state(7, True, cc)
	    when '%'' then
	       new_state(0, True, cc)
	    else
	       new_state(6, True, cc)
	    end
	 when 7 then -- Inside C character (after '\ )
	    new_state(6, True, cc)
         when 8 then -- After a \
	    inspect
	       cc
            when '%T', ' ' then
               new_state(10, False, ' ')
            else
               new_state(0, True, cc)
            end
         when 9 then -- First character of a line (not in string nor comment nor character)
            check
               not in_macro
            end
	    inspect
	       cc
            when '#' then
               if column > 0 then
                  write('%N')
               end
               new_state(0, True, cc)
               in_macro := True
	    when '/' then
	       new_state(1, False, ' ')
	    when '%"' then
	       new_state(4, True, cc)
	    when '%'' then
	       new_state(6, True, cc)
	    when '\' then
	       new_state(8, True, cc)
            when '%N' then
               new_state(state, False, ' ')
            when '%T', ' ' then
               new_state(10, False, ' ')
	    else
	       new_state(0, True, cc)
	    end
         when 10 then -- Reading useless extra spaces
	    inspect
	       cc
	    when '/' then
	       new_state(1, False, ' ')
	    when '%"' then
               if in_define then
                  write(' ')
               end
	       new_state(4, True, cc)
	    when '%'' then
               if in_define then
                  write(' ')
               end
	       new_state(6, True, cc)
	    when '\' then
               write(' ')
	       new_state(8, True, cc)
            when '%N' then
               if column > max_columns then
                  new_state(11, True, '%N')
               else
                  new_state(11, in_macro, '%N')
               end
               in_macro := False
            when '%T', ' ' then
               new_state(state, False, ' ')
	    else
               if column > 0
                  and then (last_written.is_letter_or_digit or else last_written = '_')
                  and then (cc.is_letter_or_digit or else cc = '_')
                  and then not in_macro
                then
                  if column > max_columns then
                     write('%N')
                  else
                     write(' ')
                  end
               elseif in_macro and then column > 1 then
                  if column > max_columns then
                     write('%N')
                  else
                     write(' ')
                  end
               end
	       new_state(0, True, cc)
	    end
         when 11 then -- First character in a line, in extra-spaces mode
            check
               not in_macro
            end
	    inspect
	       cc
            when '#' then
               if column > 0 then
                  write('%N')
               end
               new_state(0, True, cc)
               in_macro := True
	    when '/' then
	       new_state(1, False, ' ')
	    when '%"' then
	       new_state(4, True, cc)
	    when '%'' then
	       new_state(6, True, cc)
	    when '\' then
	       new_state(8, True, cc)
            when '%N' then
               new_state(state, False, ' ')
               in_macro := False
            when '%T', ' ' then
               new_state(10, False, ' ')
	    else
               if column > 0
                  and then (last_written.is_letter_or_digit or else last_written = '_')
                  and then (cc.is_letter_or_digit or else cc = '_')
                  and then not in_macro
                then
                  if column > max_columns then
                     write('%N')
                  else
                     write(' ')
                  end
               elseif in_macro and then column > 1 then
                  if column > max_columns then
                     write('%N')
                  else
                     write(' ')
                  end
               end
	       new_state(0, True, cc)
	    end
         when 12 then -- Inside a once-line comment
            inspect
               cc
            when '%N' then
               new_state(11, in_macro, '%N')
               in_macro := False
            else
               new_state(state, False, ' ')
            end
	 end
      end

   new_state(s: INTEGER; call_write: BOOLEAN; c: CHARACTER) is
      do
	 debug
	    previous_previous_state := previous_state
	    previous_state := state
	 end
         if state /= s then
            out_buffers(wstate = 0)
            wstate := 2
         end
	 state := s
	 if call_write then
            write(c)
	 end
      end

   write(c: CHARACTER) is
      do
	 check
	    c /= '%U'
	 end
         if state /= 0 then
            out_character(c)
         else
            inspect
               wstate
            when 0 then -- reading an identifier
               inspect c
               when '0'..'9', 'A'..'Z', 'a'..'z', '_' then
                  wbuffer.extend(c)
               else
                  out_buffers(True)
                  wstate := 2
                  out_character(c)
               end
            when 1 then -- reading a number
               inspect c
               when '0'..'9' then
                  wbuffer.extend(c)
               when 'x' then 
                  check wbuffer.last = '0' end
                  wbuffer.extend(c)
                  hex_number := True;
               when 'A'..'F', 'a'..'f' then
                  if not hex_number then
                    out_buffers(False)
                    wstate := 0
                  end
                  wbuffer.extend(c)
               when 'G'..'Z', 'g'..'w', 'y', 'z', '_' then
                  out_buffers(False)
                  wstate := 0
                  wbuffer.extend(c)
               else
                  out_buffers(False)
                  wstate := 2
                  out_character(c)
               end
            when 2 then -- reading anything else
               inspect c
               when '0'..'9' then
                  out_buffers(False)
                  wbuffer.extend(c)
                  wstate := 1
               when 'A'..'Z', 'a'..'z', '_' then
                  out_buffers(False)
                  wbuffer.extend(c)
                  wstate := 0
               else
                  out_character(c)
               end
            end
         end
      end

   compact_symbol(s: STRING): STRING is
      require
         s /= Void
      local
         symb: STRING
      do
         Result := once ""
         if in_include or else in_ifdef or else in_define
            or else (in_macro and then reserved_cpp_words.has(s))
            or else reserved_words.has(s) then
            Result.copy(s)
         elseif symbols.has(s) then
            Result.copy(symbols.at(s))
         elseif s.count <= 3 then
            Result.copy(s)
            symb := Result.twin
            symbols.put(symb, s.twin)
         else
            counter.next
            Result.copy(once "Z")
            counter.append_in(Result)
            symb := Result.twin
            symbols.put(symb, s.twin)
         end
         if in_macro then
            if not in_include then
               in_include := (once "include").is_equal(s)
            end
            if not in_define then
               in_define := (once "define").is_equal(s)
            end
            in_ifdef := define_words.has(s)
         else
            in_include := False
            in_ifdef := False
            in_define := False
         end
      ensure
         Result /= Void
      end

   out_buffers(do_compact: BOOLEAN) is
      do
         if not wbuffer.is_empty then
            if do_compact then
               obuffer.prepend(compact_symbol(wbuffer))
            else
               obuffer.prepend(wbuffer)
            end
            wbuffer.clear
         end
         out_string(obuffer)
         obuffer.clear
      end

   out_string(s: STRING) is
      local
         i, n: INTEGER
      do
         n := s.count
         from
            i := 1
         until
            i > n
         loop
            out_character(s.item(i))
            i := i + 1
         end
      end

   out_character(c: CHARACTER) is
      do
         if wbuffer.is_empty then
            output.put_character(c)
            stripped_count.increment
         else
            obuffer.extend(c)
         end
         if c = '%N' then
            column := 0
         else
            column := column + 1
         end
         last_written := c
      end

feature {NONE}

   state:     INTEGER
         -- State machine

   in_macro:   BOOLEAN
         -- Are we inside a macro definition

   in_include: BOOLEAN
         -- Are we inside a #include

   in_ifdef:   BOOLEAN
         -- Are we inside a #ifdef

   in_define:  BOOLEAN
         -- Are we inside a #define

   hex_number: BOOLEAN
         -- Are we parsing a hexadecimal integer

   previous_previous_state, previous_state: INTEGER
   last_written: CHARACTER

   wstate: INTEGER
   wbuffer: STRING is ""
   obuffer: STRING is ""

   column: INTEGER
   output: TEXT_FILE_WRITE

   symbols: DICTIONARY[STRING, STRING] is
      once
         create Result.with_capacity(4096)
      end

   make is
      do
         create output.make
         state := 9
         wstate := 2
      end

   counter: COUNTER63 is
      once
         create Result.make
      end

   reserved_words: ARRAY[STRING] is
      once
         Result := <<
                     "auto"     "break"    "case"     "char"
                     "const"    "continue" "default"  "do"
                     "double"   "else"     "enum"     "extern"
                     "float"    "for"      "goto"     "if"
                     "int"      "long"     "main"     "register"
                     "return"   "short"    "signed"   "sizeof"
                     "static"   "struct"   "switch"   "typedef"
                     "union"    "unsigned" "void"     "volatile"
                     "while"
                     "main"
                   >>
      end

   reserved_cpp_words: ARRAY[STRING] is
      once
         Result := <<
                     "include" "ifdef" "ifndef" "define"
                     "if" "elif" "endif" "defined"
                     "error" "pragma"
                   >>
      end

   define_words: ARRAY[STRING] is
      once
         Result := <<
                     "ifdef" "ifndef" "defined"
                   >>
      end

invariant

   output /= Void

end