m4 (computer language)

From Seo Wiki - Search Engine Optimization and Programming Languages
Jump to navigationJump to search

m4 is a general purpose macro processor designed by Brian Kernighan and Dennis Ritchie. The name "m4" stands for "macro": the letter m plus 4 other characters.

Use

All UNIXes make the m4 macro processor available, and POSIX has standardized it. The popularity of GNU autoconf (which requires GNU m4 for generating "configure" scripts) has encouraged many to install it, even if these people will not themselves program in m4.

A macro processor (or a preprocessor) operates as a text-replacement tool. End-users often employ it to re-use text templates, typically in programming applications, but also in text editing and in text-processing applications.

History

Macro processors became popular when programmers commonly used assembly language. In those early days of programming, the programmers noted that much of their program consisted of repeated text, and they invented simple means for reusing this text. Programmers soon discovered the advantages not only of reusing entire blocks of text, but also of substituting different values for similar parameters. This defined the usage range of macro processors.

Kernighan and Ritchie developed m4 in 1977, basing it on the ideas of Christopher Strachey. The distinguishing features of this style of macro preprocessing included:

  • free-form syntax (not line-based like a typical macro preprocessor designed for assembly-language processing)
  • the high degree of re-expansion (e.g., a macro's arguments get expanded twice, once during scanning and once when at interpolation time)

The implementation of Rational Fortran used m4 as its macro engine from the beginning; and most Unix variants ship with it.

As of 2009 many applications continue to use m4 as part of the GNU Project's autoconf. It also appears in the configuration process of sendmail (a widespread mail transfer agent) and for generating footprints in the gEDA toolsuite.

In general, m4 has many uses in code generation, owing to its Turing completeness, but can be hard to debug.

Features

m4 offers these facilities:

  • a freeform syntax, rather than line based syntax
  • a high degree of macro expansion (arguments get expanded during scan and again during interpolation)
  • text replacement
  • parameter substitution
  • file inclusion
  • string manipulation
  • conditional evaluation
  • arithmetic expressions
  • system interface
  • programmer diagnostics
  • programming language independent
  • human language independent
  • provides programming language capabilities

Unlike most earlier macro processors, m4 does not target any particular computer or human language; historically, however, its development originated for supporting the Ratfor dialect of Fortran. Unlike some other macro processors, m4 is Turing-complete as well as a practical programming language.

Example

The following fragment gives a simple example that could form part of a library for generating HTML code. It defines a commented macro to number sections automatically:

divert(-1)
This `divert' discards this text. Note that I had to quote the `divert'
in the comment so it wouldn't get undiverted.
 
This starts the count at ONE as the incr is a preincrement.
define(`H2_COUNT', 0)
 
The define H2_COUNT is redefined every time the H2 macro is used.
The dnl deletes everything on the line after it in the output (ie this bit)
define(`H2', `define(`H2_COUNT', incr(H2_COUNT))'dnl
`<h2>H2_COUNT. $1</h2>')
 
divert(0)dnl diversion to 0 means back to normal dnl removes this line.
H2(First Section)
H2(Second Section)
H2(Conclusion)

Processing this code with m4 should generate the following text:

<h2>1. First Section</h2>
<h2>2. Second Section</h2>
<h2>3. Conclusion</h2>

Note the frequent use of dnl, which deletes up to and including the newline, thus preventing many blank lines appearing in the output.

Free software implementations

A GNU version of m4 exists. FreeBSD, NetBSD, and OpenBSD also provide independent implementations of the m4 language. Furthermore, the Heirloom Project Development Tools includes a free version of the m4 language, derived from OpenSolaris.

See also

References

  • Brian W. Kernighan and Dennis M. Ritchie. The M4 macro processor. Technical report, Bell Laboratories, Murray Hill, New Jersey, USA, 1977. pdf
  • Kenneth J. Turner. Exploiting the m4 macro language. Technical Report CSM-126, Department of Computing Science and Mathematics, University of Stirling, Scotland, September 1994. pdf
  • René Seindal. GNU M4 Manual. GNU Press. 2004.

External links

cs:M4 (makroprocesor) de:M4 (Programmiersprache) el:M4 (γλώσσα προγραμματισμού) fr:M4 (langage) ja:M4 (プログラミング言語) ko:M4 (프로그래밍 언어) pl:M4 (informatyka) ru:Макропроцессор m4

If you like SEOmastering Site, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...