forked from mug896/macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m4.html
1089 lines (706 loc) · 50.9 KB
/
m4.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>M4 | 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_quotes.html" />
<link rel="prev" href="./command_line_options.html" />
</head>
<body>
<div class="book"
data-level="3"
data-chapter-title="M4"
data-filepath="m4.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 active" 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 " 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="m4">M4</h1>
<p>M4 는 원래 Brian Kernighan 과 P.J. Plauger 가 만든 매크로 프로세서가 시초입니다.
Dennis Ritchie 가 이것을 발전시켜 M3 를 만들고 이것이
Rational FORTRAN 의 전처리기인 Ratfor 의 엔진으로 사용됩니다.
전처리기라고 해서 CPP 같은 수준이 아니고 프로그래밍 언어입니다.
당시 FORTRAN 은 주로 GOTO 와 statement number 를 이용해 프로그래밍을 했는데
아래 왼쪽과 같이 코드를 작성하면 ratfor 가 오른쪽과 같이 변환해 줍니다.
( C++ 도 초기에는 전처리기를 거쳐 C 코드로 변환이 됐죠 )</p>
<pre><code>if (a > b) { IF (.NOT.(A.GT.B)) GOTO 1
max = a MAX = A
} else { GOTO 2
max = b 1 CONTINUE # 왼쪽의 1, 2 숫자가
} MAX = B
2 CONTINUE # statement number
</code></pre><p>이후에 Brian Kernighan 과 Dennis Ritchie 가 UNIX operating system 을 위해 M3 를 확장해서
M4 를 만들고 Ratfor, C, Cobol 의 front-end 로 사용됩니다.
이전 매크로 프로세서와 달리 M4 는 M4 does not target any particular computer or human language 라서 general-purpose 매크로 프로세서입니다.
기본적으로 recursion 에 의해 동작하기 때문에 loop, recursion 을 쉽게 구현할 수 있습니다.
( while, for 같은 loop 문도 자기 자신이 계속 반복되는 것이므로 recursion 으로 쉽게 구현이 됩니다 ).
따라서 M4 에서는 infinite loop 와 stack overflow 가 기본입니다.
그리고 M4 는 일반 프로그래밍 언어와 같이 Turing-complete 합니다.</p>
<h3 id="기본-사용법">기본 사용법</h3>
<p>M4 는 명령 라인에서 인수로 전달한 파일들을 확장자에 관계없이
앞에서부터 차례로 읽어들입니다.
이때 <code>-D</code> ( 매크로 define ) 옵션과 <code>-U</code> ( 매크로 undefine ) 옵션을
함께 사용할 수 있습니다.</p>
<pre><code>$ cat base1.m4 $ cat base2.m4 $ cat hello.txt
define(`foo', 111) define(`bar', 222) hello foo bar zoo
---------------------------------------------------------
$ m4 base1.m4 base2.m4 hello.txt
hello 111 222 zoo
$ m4 -D zoo=333 base1.m4 base2.m4 hello.txt # -D zoo=333
hello 111 222 333
$ m4 -D zoo=333 base1.m4 -U foo base2.m4 hello.txt # -D zoo=333 -U foo
hello foo 222 333
$ m4 -D zoo=333 base1.m4 -D foo=1000 base2.m4 hello.txt # -D zoo=333 -D foo=1000
hello 1000 222 333
</code></pre><h2 id="define">define</h2>
<blockquote>
<p><strong>define</strong> ( <em>MacroName</em> )<br><strong>define</strong> ( <em>MacroName, Replacement</em> )<br>매크로의 확장 결과는 void 입니다. <code>()</code> 가 없으면 매크로로 인식되지 않습니다.</p>
</blockquote>
<p>M4 도 매크로가 사용되는 방식은 기본적으로 CPP 와 같습니다.
가령 <code>FOO</code> 매크로를 사용하려면 먼저 이전에 <code>FOO</code> 매크로가 정의되어 있어야 합니다.
매크로 이름 구성은 알파벳, 숫자, <code>_</code> 로 구성되고 맨 앞에 숫자가 올 수 없습니다.
확장이 되려면 매크로 이름 주위에 다른 문자가 와야 합니다.
다음 첫 번째의 경우 <code>N</code> 이 세 번 확장되지 않습니다.</p>
<blockquote>
<p>매크로 이름 규칙은 매크로를 invoke 할 때 ( 사용할 때 ),
<code>ifelse</code> 매크로 사용시 적용되는 것으로
실제 매크로를 define 할 때는 이름으로 특수문자나 공백도 사용이 가능합니다.
해당 이름은 <code>ifdef</code>, <code>defn</code>, <code>indir</code> 매크로에서 사용할 수 있습니다.</p>
</blockquote>
<pre><code>$ m4 <<\@ $ m4 <<\@
define( N, 200) define( N, 200)
if (NNN > 100) if (N > 100)
@ @
if (NNN > 100) if (200 > 100)
------------------------------
$ m4 <<\@
define(`Version2',A - 1)
99Version2:Version2_ Version22
@
99A - 1:Version2_ Version22
</code></pre><p>CPP 와 달리 M4 는 따로 object-like 매크로와 function-like 매크로 구분이 없습니다.
모두 <code>define</code> built-in 매크로를 이용해 정의하고,
매크로를 정의할 때와 호출할 때 모두 이름과 괄호 사이에 공백이 있으면 안됩니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
hello foo macro! define(foo) # 매크로 값이 empty
@
hello foo macro!
hello foo macro! @
hello macro!
--------------------------------------------------------
$ m4 <<\@ $ m4 <<\@
define(foo, m4) define(foo,$1 m4 $2)
hello foo macro! hello foo macro!
hello foo() macro! hello foo() macro!
hello foo(100) macro! hello foo(100) macro!
@ hello foo(,200) macro!
hello foo(100,200) macro!
hello m4 macro! hello foo(100,200,300) macro! # 인수가 3 개
hello m4 macro! hello foo (100,200) macro! # 괄호 앞에 공백
hello m4 macro! @
hello m4 macro!
hello m4 macro!
hello 100 m4 macro!
hello m4 200 macro!
hello 100 m4 200 macro!
hello 100 m4 200 macro!
hello m4 (100,200) macro!
------------------------------------------------------------
$ m4 <<\@
define(`Version2', A – 1)
Version2(arg1, arg2) Version2 (junk) garbage(trash)Version2()
@
A – 1 A – 1 (junk) garbage(trash)A – 1
</code></pre><p>매크로 body 에서 define 을 사용할 수도 있습니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`foo',`define(`bar', 100)') define(`foo',`define(`bar', 100)')
bar foo # foo 매크로가 확장된 후에는
@ bar # bar 매크로가 정의되므로
# bar 매크로가 정의되어 있지 @
bar # 않아 그대로 bar 가 된다.
100 # 100 이 된다.
</code></pre><p>다음은 <code>H2</code> 매크로를 사용할 때마다 <code>H2_COUNT</code> 값이 <code>incr</code> ( increment ) 된
값으로 재정의 됩니다.</p>
<pre><code>$ m4 <<\@
define(`H2_COUNT', 0)
define(`H2',
`define(`H2_COUNT', incr(H2_COUNT))<h2>H2_COUNT. $1</h2>')
H2(First Section)
H2(Second Section)
H2(Conclusion)
@
<h2>1. First Section</h2>
<h2>2. Second Section</h2>
<h2>3. Conclusion</h2>
</code></pre><blockquote>
<p>define 매크로가 실행됐을 때 반환값은 <code>void</code> 입니다.<br>따라서 위의 <code>H2</code> 매크로 정의에서 <code><h2></code> 태그 앞에 아무런 문자도 추가되지 않습니다.</p>
</blockquote>
<h4 id="value-앞의-공백은-제외된다">value 앞의 공백은 제외된다.</h4>
<p>매크로를 정의할 때 value 앞에 있는 공백은 출력에서 제외되지만
뒤에 있는 공백은 포함됩니다.
이것은 <code>len</code> built-in 매크로를 이용해 인수 값의 길이를 구할 때도 동일하게 적용됩니다.</p>
<pre><code>$ m4 <<\@
define(foo, m4 )
hello foo macro!
@
hello m4 macro! # value 앞에 있는 공백은 출력에서 제외된다.
-----------------------------
$ m4 <<\@
define(foo, $1 m4 $2 )
hello foo(100,200) macro!
@
hello 100 m4 200 macro!
------------------------------------
$ m4 <<\@
define(foo,$1 $2 $3 $4 $5 $6 $7 $8 $9 $10)
hello foo(100,200) macro!
@
hello 100 200 macro!
------------------------------------
$ m4 <<\@
define(foo,$1$2$3$4$5$6$7$8$9$10)
hello foo(100,200) macro!
@
hello 100200 macro!
------------------------------------
$ m4 <<\@
define(foo,$1`'$2`'$3`'$4`'$5`'$6`'$7`'$8`'$9`'$10)
hello foo(100,200) macro!
@
hello 100200 macro!
</code></pre><h4 id="매크로를-공백-없이-붙여-사용하려면">매크로를 공백 없이 붙여 사용하려면</h4>
<p>다음은 <code>plus</code> 매크로를 <code>+</code> 로 정의한 후에 <code>++</code> 를 만들려고 한 것인데요.
<code>plusplus</code> 의 경우는 매크로 이름이 달라지므로 사용할 수 없습니다.</p>
<pre><code>$ m4 <<\@
define(`plus', `+')
plusplus
plus()plus # OK
plus`'plus # OK
@
plusplus
++
++
</code></pre><p>다음은 한 단계 indirection 을 한 것인데요.
<code>oper()oper</code> 의 경우 확장이 되면 <code>plusoper</code> 가 되므로 더 이상 확장이 일어나지 않게 됩니다.
매크로가 <code>`'</code> 로 분리되어 있을 경우는 각각에서 매크로 확장이 완료됩니다.
<code>oper()</code> 를 사용했을 경우도 <code>++</code> 로 확장이 되려면 두 번째와 같이 oper 매크로 값에
<code>`'</code> 를 추가해 줍니다. </p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`plus', `+') define(`plus', `+')
define(`oper', `plus') define(`oper', `plus`'') # `' 를 추가
oper()oper oper()oper
oper`'oper oper`'oper
@ @
plusoper ++
++ ++
</code></pre><h2 id="undefine">undefine</h2>
<blockquote>
<p><strong>undefine</strong> ( <em>MacroName . . .</em> )<br>매크로의 확장 결과는 void 입니다. <code>()</code> 가 없으면 매크로로 인식되지 않습니다.</p>
</blockquote>
<p>정의된 매크로를 삭제할 때는 <code>undefine</code> built-in 매크로를 사용합니다.</p>
<pre><code>$ m4 <<\@
define(`foo', 100)
foo
undefine(`foo')
foo
@
100
foo
</code></pre><p>한 번만 사용하는 매크로는 다음과 같이 정의합니다.</p>
<pre><code>$ m4 <<\@
define(`msg', `undefine(`msg')Secret message.')
msg
msg # 두 번째 사용부터는 undefined 상태가 된다.
@
Secret message.
msg
</code></pre><h2 id="defn">defn</h2>
<blockquote>
<p><strong>defn</strong> ( <em>MacroName</em> . . . )<br><code>()</code> 가 없으면 매크로로 인식되지 않습니다.</p>
</blockquote>
<p><code>defn</code> ( definition ) 매크로는 <code>MacroName</code> 매크로의 정의에 quotes 을 붙여서 반환합니다.
인수가 2 개 이상 사용되면 각각 quotes 이 추가되고 공백 없이 결합되어 출력됩니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`message', `hello defn') define(`name1', `foo')
defn(`message') define(`name2', `bar')
@ defn(`name1', `name2')
1. `hello defn' @
hello defn 2. hello defn 1. `foo'`bar'
foobar 2. foobar
-------------------------------
$ m4 <<\@
define(`foo', `This is `$0'')
define(`bar', defn(`foo'))
bar
@
This is bar
</code></pre><p>기본적으로 확장 결과에 quote 이 되어 출력되므로 더 이상 확장이 발생하지 않게 됩니다.
따라서 스트링을 값으로 갖는 매크로를 사용할 경우 <code>defn</code> 매크로를 사용해야 합니다.
다음과 같은 경우 <code>defn</code> 을 사용하지 않으면 매크로 값이 정상적으로 출력되지 않고
무한 loop 가 발생하거나 출력값이 변형됩니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define( cleanup, `This is the cleanup message.') define( foo, `$0')
defn(`cleanup') defn(`foo')
# cleanup # 무한 loop # foo # 무한 loop
@ @
This is the cleanup message. $0
------------------------------------------------
$ m4 <<\@
define(`string', `The macro dnl is very useful')
string
@
The macro # dnl 매크로에 의해 뒷부분이 삭제된다.
$ m4 <<\@
define(`string', `The macro dnl is very useful')
defn(`string')
@
The macro dnl is very useful
</code></pre><p><code>defn</code> 을 이용해 built-in 매크로의 정의도 사용할 수 있습니다.</p>
<pre><code>$ m4 <<\@
define(`zap', defn(`undefine')) 1. 매크로 zap 의 정의는 undefine 매크로와 같아진다.
zap(`undefine') 2. zap 을 이용해 기존의 undefine 매크로를 undefine.
undefine(`zap') 3. undefine built-in 매크로가 undefine 되어
@
undefine(zap) 4. 그대로 스트링으로 출력된다.
</code></pre><p><code>defn</code> 은 <code>MacroName</code> 으로 공백이나 특수문자도 사용이 가능합니다.</p>
<pre><code>$ m4 <<\@
define(`{my var}', `a strange one')
# 앞의 {my var} 는 매크로 이름 규칙에 맞지 않아
{my var} is defn(`{my var}'). # 확장이 안되지만 defn(`{my var}') 는 확장된다.
@
{my var} is a strange one.
----------------------------------
$ m4 <<\@
define(`_set', `define(`$1[$2]', `$3')')dnl
define(`_get', `defn(`$1[$2]')')dnl
_set(`myarray', 1, `alpha')dnl # define(`myarray[1]',`alpha') 가 된다.
_get(`myarray', 1) # defn(`myarray[1]') 가 된다.
_set(`myarray', `alpha', `omega')dnl # define(`myarray[alpha]', `omega') 가 된다.
_get(`myarray', _get(`myarray',1)) # defn(`myarray[alpha]') 가 된다.
defn(`myarray[alpha]')
@
alpha
omega
omega
</code></pre><h2 id="indir">indir</h2>
<blockquote>
<p><strong>indir</strong> ( <em>MacroName</em> . . . )<br><code>()</code> 가 없으면 매크로로 인식되지 않습니다.</p>
</blockquote>
<p>정의된 매크로를 invoke 하는 ( 사용하는 ) 방법에는 direct call 과 <code>indir</code> 매크로를 이용한
indirect call 이 있습니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`msg', `{{ $1 }}') define(`msg', `{{ $1 }}')
msg(`hello') # direct call indir(`msg', `hello') # indirect call
@ @
{{ hello }} {{ hello }}
------------------------------------
$ m4 <<\@
indir(`define', `SIZE', 78)
SIZE
indir(`SIZE')
@
78
78
</code></pre><p>direct call 과 indirect call 은 다음과 같은 차이가 있습니다.</p>
<pre><code>$ m4 <<\@
define(`foo', 100) 1. foo 매크로는 100 으로 정의된다.
foo( define(`foo', 200)) 2. define 매크로의 확장 결과는 void 이므로
foo foo() 가 확장되면 결과가 100 이 된다.
@ define 보다 먼저 foo 매크로가 실행중에 있는 상태이므로
인수 부분에서의 foo 정의는 적용되지 않는다.
100 3. 인수 부분에서 foo 가 200 으로 재정의 됐으므로
200 foo 의 확장 결과는 200 이 된다.
-------------------------------
$ m4 <<\@
define(`foo', 100) 1. foo 매크로는 100 으로 정의된다.
indir(`foo', define(`foo', 200)) 2. define 매크로가 실행되어 foo 는 200 으로 재정의 된다.
foo indir 매크로에 의해 foo 가 확장되면 200 이 된다.
@ 3. 인수 부분에서 foo 가 200 으로 재정의 됐으므로
foo 의 확장 결과는 200 이 된다.
200
200
</code></pre><p><code>indir</code> 는 <code>MacroName</code> 에 특수문자나 공백도 사용이 가능합니다.</p>
<pre><code>$ m4 <<\@
define(`$$internal$macro', `Internal macro (name `$0')')
$$internal$macro # direct call
indir(`$$internal$macro') # indirect call
@
# direct call 은 매크로 이름 규칙에
$$internal$macro # 맞지 않아 확장되지 않는다.
Internal macro (name $$internal$macro)
</code></pre><p><code>indir</code> 는 <code>defn</code> 과 달리 확장 결과에 자동으로 quotes 이 추가되지 않습니다.</p>
<pre><code>$ m4 <<\@ $ m4 <<\@
define(`foo',100) define(`foo',100)
define(`name', `foo') define(`name', `foo')
defn(`name') indir(`name')
@ @
1. `foo' 1. foo
foo 2. foo 100 2. 100
</code></pre><h2 id="builtin">builtin</h2>
<blockquote>
<p><strong>builtin</strong> ( <em>MacroName</em> . . . )<br><code>()</code> 가 없으면 매크로로 인식되지 않습니다.</p>
</blockquote>
<p>M4 는 기본적으로 <code>define</code>, <code>undefine</code>, <code>defn</code> 매크로를 사용하여
built-in 매크로의 정의를 변경하거나 삭제하는 것도 가능합니다.
하지만 이와 같은 경우에도 <code>builtin</code> 매크로를 이용하면 기존의 디폴트 정의를 사용할 수 있습니다.</p>
<pre><code>$ m4 <<\@
define(`rename', `define(`$2',defn(`$1'))undefine(`$1')')
rename(`define',`create')
create(`vehicle',`truck')
vehicle # truck
define(`fuel',`diesel') # define(`fuel', `diesel')
fuel # fuel
@
truck
define(fuel,diesel)
fuel
</code></pre><pre><code>$ m4 <<\@
define(`TREE',`maple')dnl
undefine(`define',`undefine')dnl
undefine(`TREE') # undefine(TREE)
TREE # maple
builtin(`undefine',`TREE')dnl
TREE # TREE
builtin(`define',`create',`builtin(`define',$@)')dnl
create(`TREE',`ash')dnl
TREE # ash
@
undefine(TREE)
maple
TREE
ash
</code></pre><blockquote>
<p>m4 명령의 <code>-P</code> 옵션을 사용하면 built-in 매크로 이름에 <code>m4_</code> prefix 를 붙여 사용하는데
<code>builtin</code> 매크로를 사용할 때는 붙일 필요가 없습니다.</p>
</blockquote>
<h2 id="dnl">dnl</h2>
<p>M4 매크로 프로세서는 입력된 텍스트를 매크로 확장을 거쳐서 그대로 출력하기 때문에
<code>define</code> 같은 built-in 매크로를 사용할 때 입력한 newline 도 출력에 포함되게 됩니다.
따라서 불필요하게 공백 라인이 생기게 되는데요.
이때 <code>dnl</code> ( discard newline ) 매크로를 사용하면 입력된 위치부터 이후 newline 까지
포함해서 삭제됩니다.
따라서 comment 라인을 작성할 때도 사용됩니다.</p>
<blockquote>
<p><code>dnl</code> 라인에 존재하는 매크로는 실행되지 않습니다.</p>
</blockquote>
<pre><code>$ m4 <<\@ $ m4 <<\@
define( foo, 100) dnl comment line 111
define( bar, 200) dnl comment line 222
foo dnl comment line 333
bar define( foo, 100)dnl
@ define( bar, 200)dnl
<---- 2 개의 공백라인 foo
bar
100 @
200 100
200
</code></pre><h2 id="changecom">changecom</h2>