-
Notifications
You must be signed in to change notification settings - Fork 2
/
m4_quotes.html
1098 lines (711 loc) · 61.1 KB
/
m4_quotes.html
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
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="ko" >
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161001174-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-161001174-6');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Quotes | Introduction</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="">
<meta name="generator" content="GitBook 2.6.7">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-fontsettings/website.css">
<link rel="stylesheet" href="./styles/website.css">
<link rel="next" href="./m4_positional_parameters.html" />
<link rel="prev" href="./m4.html" />
</head>
<body>
<div class="book"
data-level="3.1"
data-chapter-title="Quotes"
data-filepath="m4_quotes.md"
data-basepath="."
data-innerlanguage="">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li class="chapter " data-level="0" data-path="index.html">
<a href="./index.html">
<i class="fa fa-check"></i>
Introduction
</a>
</li>
<li class="chapter " data-level="1" data-path="bug_reports.html">
<a href="./bug_reports.html">
<i class="fa fa-check"></i>
<b>1.</b>
Bug reports
</a>
</li>
<li class="chapter " data-level="2" data-path="cpp.html">
<a href="./cpp.html">
<i class="fa fa-check"></i>
<b>2.</b>
CPP
</a>
<ul class="articles">
<li class="chapter " data-level="2.1" data-path="macros.html">
<a href="./macros.html">
<i class="fa fa-check"></i>
<b>2.1.</b>
Macros
</a>
<ul class="articles">
<li class="chapter " data-level="2.1.1" data-path="function-like_macros.html">
<a href="./function-like_macros.html">
<i class="fa fa-check"></i>
<b>2.1.1.</b>
Function-like Macros
</a>
</li>
<li class="chapter " data-level="2.1.2" data-path="one_two_hash.html">
<a href="./one_two_hash.html">
<i class="fa fa-check"></i>
<b>2.1.2.</b>
# , ##
</a>
</li>
<li class="chapter " data-level="2.1.3" data-path="variadic_macros.html">
<a href="./variadic_macros.html">
<i class="fa fa-check"></i>
<b>2.1.3.</b>
Variadic Macros
</a>
</li>
<li class="chapter " data-level="2.1.4" data-path="argument_prescan.html">
<a href="./argument_prescan.html">
<i class="fa fa-check"></i>
<b>2.1.4.</b>
Argument Prescan
</a>
</li>
<li class="chapter " data-level="2.1.5" data-path="predefined_macros.html">
<a href="./predefined_macros.html">
<i class="fa fa-check"></i>
<b>2.1.5.</b>
Predefined Macros
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.2" data-path="conditionals.html">
<a href="./conditionals.html">
<i class="fa fa-check"></i>
<b>2.2.</b>
Conditionals
</a>
</li>
<li class="chapter " data-level="2.3" data-path="diagnostics.html">
<a href="./diagnostics.html">
<i class="fa fa-check"></i>
<b>2.3.</b>
Diagnostics
</a>
</li>
<li class="chapter " data-level="2.4" data-path="line_control.html">
<a href="./line_control.html">
<i class="fa fa-check"></i>
<b>2.4.</b>
Line Control
</a>
</li>
<li class="chapter " data-level="2.5" data-path="pragmas.html">
<a href="./pragmas.html">
<i class="fa fa-check"></i>
<b>2.5.</b>
Pragmas
</a>
</li>
<li class="chapter " data-level="2.6" data-path="command_line_options.html">
<a href="./command_line_options.html">
<i class="fa fa-check"></i>
<b>2.6.</b>
Command-line options
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3" data-path="m4.html">
<a href="./m4.html">
<i class="fa fa-check"></i>
<b>3.</b>
M4
</a>
<ul class="articles">
<li class="chapter active" data-level="3.1" data-path="m4_quotes.html">
<a href="./m4_quotes.html">
<i class="fa fa-check"></i>
<b>3.1.</b>
Quotes
</a>
</li>
<li class="chapter " data-level="3.2" data-path="m4_positional_parameters.html">
<a href="./m4_positional_parameters.html">
<i class="fa fa-check"></i>
<b>3.2.</b>
Positional Parameters
</a>
</li>
<li class="chapter " data-level="3.3" data-path="m4_local_variables.html">
<a href="./m4_local_variables.html">
<i class="fa fa-check"></i>
<b>3.3.</b>
Local Variables
</a>
</li>
<li class="chapter " data-level="3.4" data-path="m4_conditionals_and_loops.html">
<a href="./m4_conditionals_and_loops.html">
<i class="fa fa-check"></i>
<b>3.4.</b>
Conditionals and Loops
</a>
</li>
<li class="chapter " data-level="3.5" data-path="m4_diverting.html">
<a href="./m4_diverting.html">
<i class="fa fa-check"></i>
<b>3.5.</b>
Diverting
</a>
</li>
<li class="chapter " data-level="3.6" data-path="m4_input_control.html">
<a href="./m4_input_control.html">
<i class="fa fa-check"></i>
<b>3.6.</b>
Input Control
</a>
</li>
<li class="chapter " data-level="3.7" data-path="m4_file_inclusion.html">
<a href="./m4_file_inclusion.html">
<i class="fa fa-check"></i>
<b>3.7.</b>
File Inclusion
</a>
</li>
<li class="chapter " data-level="3.8" data-path="m4_builtin_macros.html">
<a href="./m4_builtin_macros.html">
<i class="fa fa-check"></i>
<b>3.8.</b>
Built-in Macros
</a>
<ul class="articles">
<li class="chapter " data-level="3.8.1" data-path="m4_arithmetic.html">
<a href="./m4_arithmetic.html">
<i class="fa fa-check"></i>
<b>3.8.1.</b>
Arithmatic
</a>
</li>
<li class="chapter " data-level="3.8.2" data-path="m4_text_handling.html">
<a href="./m4_text_handling.html">
<i class="fa fa-check"></i>
<b>3.8.2.</b>
Text Handling
</a>
</li>
<li class="chapter " data-level="3.8.3" data-path="m4_shell_commands.html">
<a href="./m4_shell_commands.html">
<i class="fa fa-check"></i>
<b>3.8.3.</b>
Shell Commands
</a>
</li>
<li class="chapter " data-level="3.8.4" data-path="m4_miscellaneous.html">
<a href="./m4_miscellaneous.html">
<i class="fa fa-check"></i>
<b>3.8.4.</b>
Miscellaneous
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3.9" data-path="m4_debugging.html">
<a href="./m4_debugging.html">
<i class="fa fa-check"></i>
<b>3.9.</b>
Debugging
</a>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Actions Left -->
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="./" >Introduction</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal" id="section-">
<h1 id="quotes">Quotes</h1>
<p>M4 를 사용하는데 있어서 quotes 은 shell 에서와 같이 제일 중요한 부분입니다.
M4 에서 quotes 은 다음과 같은 용도로 사용됩니다.</p>
<blockquote>
<p><strong>1</strong> . 매크로 확장을 방지하기 위해</p>
<p><strong>2</strong> . <code>`'</code> 을 이용해 공백을 제거하고 token 을 분리 or 결합하기 위해</p>
</blockquote>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`_join',100) define(`_join',100)
_join # quotes 이 없으므로 foo_join # foo_join 은 새로운
@ # 정상적으로 확장된다. @ # 이름을 구성한다.
100 foo_join
--------------------------------------------------------------
$ m4 <<\@ $ m4 <<\@
define(`_join',100) define(`_join',100)
`_join' # quotes 을 하면 foo`'_join # `' 를 이용해
@ # 확장이 안된다. @ # token 을 분리
_join foo100 # 공백없이 붙는다.
--------------------------------------------------------------
$ m4 <<\@
define(`_join',100)
`foo'_join # `foo' 와 분리되어
@ # _join 은 확장된다.
foo100 # 공백없이 붙는다.
</code></pre><p>M4 에서 기본적으로 사용되는 quotes 은 왼쪽에는 <code>`</code> ( backtick )
문자를 사용하고 오른쪽은 <code>'</code> ( apostrophe ) 문자를 사용합니다.
이렇게 다른 문자를 사용하는 이유는 quotes 을 nesting 해서 사용할 수가 있기 때문입니다.</p>
<p>M4 에서 매크로 확장은 CPP 의 function-like 매크로 에서처럼
전달된 인수 에서, 그리고 확장 결과에 대해서도 발생합니다.
token 스트림을 읽어들이는 과정에서 앞서 정의된 매크로 이름이 발견되면
확장을 한 후에 다음 token 으로 넘어가는 것이 아니라 확장 결과를 다시 입력 스트림으로 넣어서
더 이상 확장이 발생하지 않을 때까지 읽어들이는 과정을 반복합니다.</p>
<p>다음 예제를 보면 <code>bar</code> 매크로를 define 한적이 없는데 <code>bar</code> 가 <code>zoo</code> 로
확장되는 것을 볼 수 있습니다.
이것은 두 번째 define 에서 foo 가 앞선 매크로 정의에 따라 먼저 bar 로
확장되었기 때문입니다.</p>
<pre><code>$ m4 <<\@ 1. foo 는 현재 매크로 정의가 없으므로 그대로 foo 가 되고
define( foo, bar) bar 도 현재 매크로 정의가 없으므로 그대로 bar 가 되어
define( foo, zoo) foo 매크로는 bar 로 정의된다.
2. foo 매크로는 현재 bar 로 정의되어 있으므로 bar 로 확장되고
bar zoo 는 현재 매크로 정의가 없으므로 그대로 zoo 가 되어
@ bar 매크로는 zoo 로 정의된다.
3. 결과적으로 define( bar, zoo) 와 같게 되어
zoo bar 매크로는 zoo 로 확장됩니다.
</code></pre><p>token 스트림을 읽어들이는 과정에서 매크로 이름을 만나도 확장을 하지않고
다음 token 으로 넘어가는 경우가 있는데 바로 해당 token 이 quote 되었을 경우 입니다.</p>
<pre><code>$ m4 <<\@
define( foo, bar) 1. foo 매크로가 bar 로 정의됨.
define( `foo', zoo) 2. quotes 에 의해 foo 는 확장이 일어나지 않고
다시 foo 매크로가 zoo 로 정의됨.
bar 3. bar 매크로는 이전에 정의된 적이 없으므로
@
bar 4. 그대로 bar 가 된다.
----------------------------
$ m4 <<\@
define( foo, bar)
define( `foo', zoo)
foo # foo 매크로는 zoo 로 확장된다.
@
zoo
</code></pre><p>token 을 읽어들이고 확장하는 과정을 evaluate 한다고 하는데 매 단계 evaluate 마다
quotes 이 한 단계씩 strip off 됩니다.</p>
<pre><code>1. cleanup 은 현재 매크로 정의가 없으므로 그대로 cleanup 이 되고
`this is the cleanup message.' 는 확장없이 quotes 이 strip off 되어
cleanup 매크로는 this is the cleanup message. 로 정의된다.
2. cleanup 매크로가 확장되면 this is the cleanup message 가 되는데
확장 결과를 살펴보면 cleanup 매크로가 존재하므로 다시 확장이 되고
확장 결과를 살펴보면 cleanup 매크로가 존재하므로 다시 확장이 되고... 무한 반복된다.
$ m4 <<\@
define( cleanup, `This is the cleanup message.')
cleanup
@
this is the this is the this is the .... <---- infinite loop
---------------------------------------------------
1. `this is the `cleanup' message.' 는 확장없이 quotes 이 strip off 되어
cleanup 매크로는 this is the `cleanup' message. 로 정의된다.
2. cleanup 매크로가 확장되면 this is the `cleanup' message 가 되는데
cleanup 이름에 quotes 이 존재하므로 확장되지 않고 strip off 되어
this is the cleanup message. 가 된다.
$ m4 <<\@
define( cleanup, `This is the `cleanup' message.') # cleanup 에 quotes 추가
cleanup
@
This is the cleanup message.
</code></pre><pre><code>$ m4 <<\@
define( foo, `$0') 1. foo 는 현재 매크로 정의가 없으므로
그대로 foo 가 되고 `$0' 는 quotes 이 제거되어
foo foo 매크로는 $0 로 정의된다.
@ 2. foo 는 $0 로 확장되는데 $0 는 매크로 자신의
Ctrl-c 종료 이름과 같으므로 foo 로 확장되고 foo 는 다시
^C <--- infinite loop $0 로 확장되고... 무한 반복된다.
----------------------------
$ m4 <<\@
define( foo, ``$0'') 1. ``$0'' 는 quotes 이 한 단계 제거되어
foo 매크로는 `$0' 로 정의된다.
foo 2. foo 매크로는 `foo' 로 확장되고
@ 3. `foo' 에서 확장이 중단되고
quotes 이 제거되어 foo 가 된다.
foo 4. 다음 token 을 읽어들임 ...
</code></pre><p>숫자나 특수문자는 매크로 이름이 될 수 없으므로 확장이 일어나지 않기 때문에
quote 을 하지 않아도 됩니다.</p>
<pre><code>$ m4 <<\@
define(`foo', `bar') 1. `foo' 는 확장없이 quotes 이 제거되어 foo 가 되고
define(`bar', 100) `bar' 도 확장없이 quotes 이 제거되어 bar 가 되어
foo 매크로는 bar 로 정의된다.
foo 2. `bar' 는 확장없이 quotes 이 제거되어 bar 가 되고
@ bar 매크로는 100 으로 정의 된다.
3. foo 매크로는 bar 로 확장되고 다시
100 bar 매크로가 100 으로 확장된다.
--------------------------------
$ m4 <<\@
define(`foo', ``bar'') 1. foo 매크로는 `bar' 로 정의되고
define(`bar', 100) 2. bar 매크로는 100 으로 정의된다.
foo 3. foo 매크로는 `bar' 로 확장되고
@
4. `bar' 에서 확장이 중단되고
bar quotes 이 제거되어 bar 가 된다.
</code></pre><pre><code>$ m4 <<\@
define(`foo', ``$*'') 1. foo 매크로는 `$*' 로 정의된다.
foo(100,200,300) 2. $* 는 전체 원소를 나타내므로 정의에 따라
@ `100,200,300' 로 확장된다.
100,200,300 3. quotes 이 제거되어 100,200,300 가 된다.
----------------------------
$ m4 <<\@
define(`foo', ``$@'') 1. foo 매크로는 `$@' 로 정의된다.
foo(100,200,300) 2. $@ 는 각각의 원소를 quote 한 것이므로
@ ``100',`200',`300'' 으로 확장된다.
`100',`200',`300' 3. quotes 이 한 단계 제거된다.
</code></pre><h4 id="전달된-인수에서-prescan-에-의한-확장">전달된 인수에서 prescan 에 의한 확장</h4>
<pre><code>$ m4 <<\@
define(`definenum', `define(`num', `99')') 1. definenum 매크로는
define(`num', `99') 로 정의된다.
num 2. num 매크로는 정의된 적이 없으므로
definenum num 그대로 num 이 된다.
@ 3. definenum 매크로가 확장되면 정의에 따라
define(`num', `99') 가 실행된다.
num 4. num 매크로가 정의되었으므로
99 99 로 확장된다.
-----------------------------------------
$ m4 <<\@
define(`definenum', define(`num', `99')) 1. define 매크로에 quotes 이 없으므로
prescan 에의해 확장이 되어
num num 매크로는 99 로 정의되고
definenum definenum 매크로는 void 로 정의된다.
@ 2. 이미 num 매크로가 정의된 상태이므로
99 로 확장되고 definenum 매크로는
99 void 로 확장된다.
</code></pre><pre><code>$ m4 <<\@ 1. 전달된 인수가 prescan 에의해 quotes 이
define(`exch', ``$2', `$1'') 한 단계씩 제거되어 exch 매크로는
define(exch(`expansion text', `macro')) `$2', `$1' 로 정의 된다.
2. 인수들은 확장없이 quotes 이 제거되고
macro exch 매크로 정의에 따라
@ `macro', `expansion text' 로 확장된다.
3. define(`macro', `expansion text') 가되어
expansion text macro 매크로는 expansion text 로 정의된다.
</code></pre><pre><code>$ m4 <<\@
define(`args', ``NAME', `Marie'') 1. args 매크로는 `NAME', `Marie' 로 정의된다.
define(args) 2. 전달된 args 가 prescan 에의해 확장되면
NAME define(`NAME', `Marie') 가 되고
NAME 은 Marie 로 정의된다.
1. define 매크로의 확장 결과는 void 이므로
args(define(`args',`Rachel')) args() 가 확장되면 NAME, Marie 가 된다.
args 2. 인수 부분에서 args 가 Rachel 로 재정의
@ 됐으므로 args 값은 Rachel 이 된다.
Marie
NAME, Marie
Rachel
</code></pre><h4 id="함수가-중첩될-경우-quotes-의-처리">함수가 중첩될 경우 quotes 의 처리</h4>
<p>아래와 같은 매크로 호출이 있을 경우 zoo 매크로의 확장 결과가
<code>`The brown fox jumped over'</code> 이면 그 결과가 두 번째와 같이
그대로 bar 매크로의 인수 값으로 사용되는 것입니다.
마찬가지로 bar 매크로의 확장 결과가 <code>``The brown fox jumped over the lazy dog''</code>
이면 그 결과가 세 번째와 같이 그대로 foo 매크로의 인수 값으로 사용됩니다.
인수 값으로 사용될 때는 prescan 에 의해 먼저 quotes 이 한 단계 제거되겠죠.
마지막으로 foo 매크로의 확장 결과가 <code>```The brown fox jumped over the lazy dog'''</code>
이면 최종 결과에 대해서 main scan 이 발생하므로 실제 출력 결과는
<code>``The brown fox jumped over the lazy dog''</code> 가 됩니다.</p>
<pre><code>foo( bar( zoo(`The brown fox'))) # 첫 번째
foo( bar(`The brown fox jumped over')) # 두 번째
foo(``The brown fox jumped over the lazy dog'') # 세 번째
</code></pre><h4 id="확장-결과에-따른-quotes-처리-주의할-점">확장 결과에 따른 quotes 처리 주의할 점</h4>
<pre><code>$ m4 <<\@
define(`foo', a'a) 1. foo 매크로는 a'a 로 정의된다.
define(`echo', `$@') 2. echo 매크로는 $@ 로 정의된다.
foo 3. foo 가 확장되면 a'a 가 된다.
echo(foo) 1. 전달된 foo 인수가 prescan 에의해 확장이 되면 a'a 가 되고
@ echo 매크로의 정의에 따라 $@ 는 `a'a' 로 확장된다.
확장 결과에 main scan 이 발생하면
a'a `a' 에서 quotes 이 제거되어 aa' 가 된다.
aa'
</code></pre><pre><code>$ m4 <<\@
define(`l', `<[>') 1. 매크로 l 은 <[> 로 정의된다.
define(`r', `<]>') 2. 매크로 r 은 <]> 로 정의된다.
changequote(`[', `]') 3. defn 은 결과에 quotes 을 붙여 출력하므로
defn([l])defn([r])]) defn([l]) 는 [<[>] 로 확장되는데 여기서 처음 [ 문자는
defn([l],[r]) quote 의 시작이 되므로 마지막 ]) 까지 quote 처리가 되어
@ 결과적으로 <[>]defn([r])) 가 된다.
4. defn([l],[r]) 에서 [l] 은 [<[>] 로 확장되고
<[>]defn([r])) [r] 은 [<]>] 로 확장되면 결과가 [<[>][<]>] 가 되므로
<[>][<]> main scan 에의해 quotes 이 제거되면 <[>][<]> 가 된다.
</code></pre><h4 id="출력에-newline-을-추가하는-방법">출력에 newline 을 추가하는 방법</h4>
<p>M4 에서는 기본적으로 escape character 를 사용할 수 없기 때문에 출력에 <code>\n</code> 를 사용할 수 없습니다.</p>
<pre><code>$ m4 <<\@
11111111
format(`The brown fox jumped over\n the lazy dog\n')
22222222
@
11111111
The brown fox jumped over\n the lazy dog\n # newline 추가가 안된다.
22222222
</code></pre><p>따라서 newline 을 추가하려면 다음과 같이 quotes 을 활용해야 합니다.</p>
<pre><code>$ m4 <<\@
11111111
format(`The brown fox jumped over the lazy dog
') <---- trailing newline 추가
22222222
@
11111111
The brown fox jumped over the lazy dog
<---- newline 이 추가됨
22222222
---------------------------------------
$ m4 <<\@
11111111
format(`The brown fox jumped over
the lazy dog
')
22222222
@
11111111
The brown fox jumped over
the lazy dog
22222222
</code></pre><h2 id="changequote">changequote</h2>
<blockquote>
<p><strong>changequote</strong> ( <em>left, right</em> )<br><strong>changequote</strong><br>매크로의 확장 결과는 void 입니다.</p>
</blockquote>
<p>M4 는 shell 에서처럼 escape character 기능이 없습니다.
따라서 기본적으로 quotes 으로 사용되는 <code>`</code>( backtick ) 문자를 출력에 사용할 수 없는데요.
하지만 <code>changequote</code> built-in 매크로를 이용하면 quotes 문자 를 사용자가 임의로 변경해 사용할 수 있습니다.
quotes 문자는 2 문자 이상 사용할 수 있고 quotes 문자를 변경해 사용한 후에
다시 디폴트 문자로 돌아가려면 <code>changequote</code> 매크로를 <code>()</code> 없이 사용하면 됩니다.</p>
<pre><code>$ m4 <<\@
define(`escape', changequote(<!,!>)foo`bar<!!>changequote)
changequote(<!,!>)escape<!!>changequote
@
foo`bar # changequote 을 이용하면 ` 문자를 출력할 수 있다.
</code></pre><p>아래는 GNU Autoconf 패키지의 m4 파일에서 발췌한 내용인데요.
여기서 <code>[</code>, <code>]</code> 문자가 변경되어 사용되는 quotes 문자입니다.
스크립트 내용 중에는 <code>sh</code> 스크립트가 포함되는데 <code>sh</code> 에서는 backtick 문자가
명령 치환에 사용되고 single quotes 도 사용되므로 변경해서 사용하는 것입니다.</p>
<p>아래 내용 중 <code>ac_cv_exeext=`expr "$ac_file" : ['[^.]*\(\..*\)']`</code> 에서
바깥쪽 <code>[</code>, <code>]</code> 문자는 안쪽의 <code>[</code>, <code>]</code> 문자를 유지하기 위한 m4 quotes 입니다.</p>
<pre><code># _AC_COMPILER_EXEEXT_O
# ---------------------
# Check for the extension used when `-o foo'. Try to see if ac_cv_exeext,
# as computed by _AC_COMPILER_EXEEXT_DEFAULT is OK.
m4_define([_AC_COMPILER_EXEEXT_O],
[AC_MSG_CHECKING([for executable suffix])
AS_IF([AC_TRY_EVAL(ac_link)],
[# If both `conftest.exe' and `conftest' are `present' (well, observable)
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
# work properly (i.e., refer to `conftest.exe'), while it won't with
# `rm'.
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
*.* ) ac_cv_exeext=`expr "$ac_file" : ['[^.]*\(\..*\)']`
export ac_cv_exeext
break;;
* ) break;;
esac
done],
. . .
. . .
</code></pre><blockquote>
<p><code>define</code> built-in 매크로 이름에 앞에 <code>m4_</code> 가 붙은 것은 m4 명령의 <code>-P</code> 옵션 사용입니다.</p>
</blockquote>
<h4 id="quotes-사용을-일시적으로-중지하기">Quotes 사용을 일시적으로 중지하기</h4>
<p><code>changequote(,)</code> 형식을 사용하면 quotes 사용을 중지할 수 있습니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`foo', 100) changequote(,)
changequote(,) define(`foo', 100) # 매크로 이름에
# quotes 이 포함된다.
`foo' `foo'
foo foo
@ indir(`foo')
@
`100' # quotes 에서도 확장이된다. # 매크로 이름에 quotes 특수문자가 포함되어
100 `foo' # 확장되지 않는다 (indir 을 이용해야 한다)
foo
100
</code></pre><p>다음은 autoconf 패키지의 m4 파일 내용 중 일부인데 <code>sh</code> 스크립트 내용 중에 <code>[0-5]</code>
가 존재하여 일시적으로 quotes 사용을 중지하고 다시 설정하는 것을 볼 수 있습니다.</p>
<pre><code> [if test -n "$gl_use_threads_default"; then
gl_use_threads="$gl_use_threads_default"
else
changequote(,)dnl # 일시적으로 quotes 사용을 중지
case "$host_os" in
osf*) gl_use_threads=no ;;
cygwin* | msys*)
case `uname -r` in
1.[0-5].*) gl_use_threads=no ;;
*) gl_use_threads=yes ;;
esac
;;
*) gl_use_threads=yes ;;
esac
changequote([,])dnl # 다시 quotes 을 [ , ] 로 설정
fi
])
if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then
. . .
. . .
</code></pre><p><a name="user-macros"></a></p>
<h3 id="사용자-정의-quote-매크로">사용자 정의 quote 매크로</h3>
<p>스크립트를 작성하다 보면 quotes 추가하는 것이 필요할 때가 있습니다.
이때는 다음과 같이 <code>quote</code>, <code>dquote</code>, <code>dquote_elt</code> 매크로를 정의해 사용할 수 있습니다.</p>
<pre><code>$ m4 -del -t dquote -t dquote-elt -t ifelse <<\@
define(`quote', `ifelse(`$#', `0', `', ``$*'')')
define(`dquote', ``$@'')
define(`dquote_elt', `ifelse(`$#', `0', `', `$#', `1', ```$1''',
```$1'',$0(shift($@))')')
quote(`foo', `bar', `zoo')
dquote(`foo', `bar', `zoo')
dquote_elt(`foo', `bar', `zoo')
dquote(dquote_elt(`foo', `bar', `zoo'))
@
m4trace:5: -1- ifelse -> `foo,bar,zoo' # quote()
foo,bar,zoo
m4trace:6: -1- dquote -> ``foo',`bar',`zoo'' # dquote()
`foo',`bar',`zoo'
m4trace:7: -1- ifelse -> ``foo'',dquote_elt(shift(`foo',`bar',`zoo'))
`foo',m4trace:7: -1- ifelse -> ``bar'',dquote_elt(shift(`bar',`zoo'))
`bar',m4trace:7: -1- ifelse -> ``zoo'' # dquote_elt()
`zoo'
m4trace:8: -2- ifelse -> ``foo'',dquote_elt(shift(`foo',`bar',`zoo'))
m4trace:8: -2- ifelse -> ``bar'',dquote_elt(shift(`bar',`zoo'))
m4trace:8: -2- ifelse -> ``zoo''
m4trace:8: -1- dquote -> ```foo'',``bar'',``zoo''' # dquote(dquote_elt())
``foo'',``bar'',``zoo''
---------------------------------------------------------------------------
quote(`foo', `bar', `zoo') ---> `foo,bar,zoo' 로 확장
dquote(`foo', `bar', `zoo') ---> ``foo',`bar',`zoo'' 로 확장
dquote_elt(`foo', `bar', `zoo') ---> ``foo'',``bar'',``zoo'' 로 확장
dquote(dquote_elt(`foo', `bar', `zoo')) ---> ```foo'',``bar'',``zoo''' 로 확장
</code></pre><h1 id="quiz">Quiz</h1>
<p>다음 스크립트는 정상적으로 동작하는 것 같지만 문제가 있습니다.
어디가 잘못되었을까요?</p>
<pre><code>$ m4 <<\@
define(`UL', `<ul>LI($1)</ul>')
define(`LI', `<li>$1</li>')
UL(`foo')
@
<ul><li>foo</li></ul>
</code></pre><p>만약에 <code>UL</code> 매크로의 인수 값으로 현재 정의되어 있는 매크로 이름을 전달하면
다음과 같이 정상적으로 동작하지 않게 됩니다.</p>
<pre><code>$ m4 <<\@
define(`UL', `<ul>LI($1)</ul>')
define(`LI', `<li>$1</li>')
UL(`UL') // 현재 정의되어 있는 매크로 이름을 인수로 전달
@
<ul><li><ul><li></li></ul></li></ul>
------------------------------------
1. define `UL' 은 확장없이 quotes 이 strip off 되어 UL 이 되고
`<ul>LI($1)</ul>' 도 확장없이 quotes 이 strip off 되어 <ul>LI($1)</ul> 이 되어
UL 매크로는 <ul>LI($1)</ul> 로 정의된다.
2. define `LI' 은 확장없이 quotes 이 strip off 되어 LI 이 되고
`<li>$1</li>' 도 확장없이 quotes 이 strip off 되어 <li>$1</li> 이 되어
LI 매크로는 <li>$1</li> 로 정의된다.
3. UL(`UL') 이 확장될 때 `UL' 은 quotes 이 strip off 되어 UL 이 되어
<ul>LI(UL)</ul> 로 확장된다.
4. 확장된 결과를 살펴보면 LI 매크로와 UL 매크로가 존재하므로
먼저 인수부분의 UL 매크로가 확장되어 <ul>LI(<ul>LI()</ul>)</ul> 가 된다.
5. 다시 확장된 결과를 살펴보면 LI() 매크로가 존재하므로
<ul>LI(<ul><li></li></ul>)</ul> 로 확장된다.
6. 다시 확장된 결과를 살펴보면 LI 매크로가 존재하므로
<ul><li><ul><li></li></ul></li></ul> 로 확장됩니다.
</code></pre><p>따라서 현재 정의되어 있는 매크로 이름이 인수로 전달될 경우에도 정상적으로 동작하기 위해서는
다음과 같이 <code>$1</code> 에도 quote 을 해줘야 합니다.
이것은 매크로 확장은 quotes 이나 terminal token 을 만날때 까지 recursive 하게
확장되기 때문입니다.</p>
<pre><code>$ m4 <<\@
define(`UL', `<ul>LI(`$1')</ul>') // $1 에도 quotes 을 추가
define(`LI', `<li>`$1'</li>')
UL(`UL')
@
<ul><li>UL</li></ul>
--------------------------------
1. define UL 매크로는 <ul>LI(`$1')</ul> 로 정의된다.