eĿlipsis
a language independent preprocessor
 
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
ellipsis_special_directive_specials.c
Go to the documentation of this file.
1/*^
2 ** @name C standard directives
3 ^*/
4/*^ @{!*/
5
6/* These have to start in collumn 0 */
7
8/*^ @brief The define directive as specified by the C standard ^*/
10
11/*^ @brief The elif directive as specified by the C standard ^*/
13
14/*^ @brief The else directive as specified by the C standard ^*/
16
17/*^ @brief The embed directive as specified by the C standard plus extension
18 **
19 ** @see [extension to directives](@ref dir_extensions)
20 ^*/
22
23/*^ @brief The endif directive as specified by the C standard ^*/
25
26/*^ @brief The error directive as specified by the C standard ^*/
28
29/*^ @brief The else directive as specified by the C standard ^*/
31
32/*^ @brief The include directive as specified by the C standard plus extensions
33 **
34 ** @see [extension to directives](@ref dir_extensions)
35 ^*/
37
38/*^ @brief The line directive as specified by the C standard ^*/
40
41/*^ @brief The undef directive as specified by the C standard ^*/
43
44/*^ @brief The warning directive as specified by the C standard ^*/
46
47/*^ @}!*/
48
49/*^
50 ** @name C standard shortcuts for directives
51 ^*/
52/*^ @{!*/
53
58
59 /*^ @}!*/
60
61 /*^
62 ** @name EĿlipsis specific variations of directives
63 ^*/
64 /*^ @{!*/
65
66 /*^
67 **
68 ** @brief Always expand the code up to the next [%%end](@ref end) or [%%endif](@ref endif)
69 **
70 ** This can be used for example to ensure that a set of
71 ** [%%bind](@ref bind) directives is restricted to the lines up to the end of this
72 ** construct.
73 **
74 ** ```{.C}
75 ** %%always
76 ** ...
77 ** %%end
78 ** ```
79 **
80 ** is the same as
81 **
82 ** ```{.C}
83 ** %%if false
84 ** %%else
85 ** ...
86 ** %%endif
87 ** ```
88 **
89 ** @remark This is preferable over [%%if](@ref if) `true` because
90 ** [%%elif](@ref elif) and [%%else](@ref else) are inhibited.
91 ^*/
93
94 /*^
95 **
96 ** @brief A local equivalent to [%%define](@ref define)
97 **
98 ** The difference is that the macro is undefined (as if by
99 ** [%%undef](@ref undef)) at the end of the current
100 ** [%%if](@ref if)/[%%elif](@ref elif)/[%%else](@ref else) block or source file.
101 ^*/
103
104 /*^
105 ** @brief Embed the data source file but without expanding the token list of the directive
106 **
107 ** Other arguments to this directive are not expanded, unless the
108 ** [%%expand](@ref expand) prefix is applied.
109 **
110 ^*/
112
113 /*^
114 ** @brief Expand the remaining tokens on the line and re-interpret
115 ** the result as a directive
116 **
117 ** ```{.C}
118 ** %%expand tokens ...
119 ** ```
120 **
121 ** So, after expansion, the first token in the resulting list should
122 ** be a directive. Here, the resulting directive may be uglified by
123 ** appending double underscores in front and back to avoid expansion
124 ** if that happens to be defined as a macro.
125 **
126 ** If for example `ARRAY(100)` is a macro and expands to
127 ** `array_name_100` and `VALUE(100)` expands to `100*37` the
128 ** following
129 **
130 ** ```{.C}
131 ** %%expand __define__ ARRAY(100) VALUE(100)
132 ** ```
133 **
134 ** leads to
135 **
136 ** ```{.C}
137 ** __define__ array_name_100 100*37
138 ** ```
139 **
140 ** which is the same as if we had the following directive
141 **
142 ** ```{.C}
143 ** %%define array_name_100 100*37
144 ** ```
145 **
146 ** which defines a new macro `array_name_100` with the indicated
147 ** expression as expansion.
148 ^*/
150
151 /*^
152 ** @brief Execute only the directives in the given header file
153 **
154 ** All tokens that would be produced are discarded, only side effects
155 ** such as macro definitions have an effect on the source that uses
156 ** this directive.
157 **
158 ** Other arguments to this directive are not expanded, unless the
159 ** [%%expand](@ref expand) prefix is applied.
160 **
161 ^*/
163
164 /*^
165 ** @brief Include the source file but without expanding the token list of the directive
166 **
167 ** Other arguments to this directive are not expanded, unless the
168 ** [%%expand](@ref expand) prefix is applied.
169 **
170 ^*/
172
173 /*^
174 ** @brief As the [%%line](@ref line) directive but without expanding
175 ** the rest of the line
176 ^*/
178
179 /*^
180 **
181 ** @brief Never expand the code up to the next [%%end](@ref end) or [%%endif](@ref endif)
182 **
183 ** This can be used for example to comment out a set of lines without
184 ** having to change them individually.
185 **
186 ** @remark This is preferable over [%%if](@ref if) `false` because
187 ** [%%elif](@ref elif) and [%%else](@ref else) are inhibited.
188 ^*/
190
191 /*^
192 **
193 ** @brief Only expand the code up to the next [%%end](@ref end),
194 ** [%%endif](@ref endif) or the end of the header once.
195 **
196 ** In particular this can be used to skip over a whole header
197 ** file that has already be seen.
198 **
199 ** The directive receives one optional argument, which is an
200 ** identifier that helps to identify the source file (or
201 ** [%%if](@ref if) construct) in question. If omitted, a hash of
202 ** the base-name of the current file name is used.
203 **
204 ** @remark This is preferable over [%%ifdef](@ref ifdef) include
205 ** guards because it avoid to read over the header, again.
206 **
207 ** @see @ref pragma This is also interfaced via the legacy @ref
208 ** pragma `once`.
209 ^*/
211
212 /*^
213 ** @brief Find an environment variable through the C library call
214 ** `getenv` and define a macro of the same name.
215 **
216 ** The contents of the environment variable is tokenized as if it
217 ** were given in a %%@ref define directive. The remaining token list
218 ** (which may be empty) is the default setting if the environment
219 ** variable is not found.
220 **
221 ** Example:
222 **
223 ** ```{.C}
224 ** %%environment LOOP_DEPTH 4
225 ** %%environment VALUES 5, 6, 78
226 ** %%environment QUESTION
227 ** %%environment HOME
228 ** ```
229 **
230 ** inspects the environment variables and defines the macros
231 ** `LOOP_DEPTH`, `VALUES`, `QUESTION` and `HOME`. If there is no such
232 ** environment variable it is set to the token list as indicated. So
233 ** if there is no `QUESTION` environment variable, the replacement
234 ** list of that macro would be empty.
235 **
236 ** For `HOME` most operating systems provide a name of a directory so
237 ** in general the macro `HOME` will not be empty. Note thought that
238 ** eĿlipsis provides the contents of this variable as raw token
239 ** sequence, not as a string. This allows for more flexibility when
240 ** you have to compose path names.
241 **
242 ** ```{.C}
243 ** %%environment HOME
244 ** %%include <HOME/include/>
245 ** ```
246 **
247 ** Would establish a subdirectory of the user′s home directory as a
248 ** place to seek for include files.
249 **
250 ** Or, if you want something like this inside a string
251 ^*/
252 /* In the following there is a "zero width space" character within
253 __STRINGIFY__ such that it survives for the documentation. */
254 /*^
255 ** ```
256 ** %%include __EXPAND_STRING​IFY__(HOME/include/my_favorite.h)
257 ** ```
258 ^*/
259 /*^
260 ** @remark A macro such defined cannot be undefined.
261 **
262 ** @remark As for other macro definitions, redefining an existing
263 ** macro of the same name is an error if that would result in a
264 ** different replacement list.
265 ^*/
267
268 /*^ @}!*/
269
270 /*^
271 ** @name EĿlipsis extensions to handle argument lists
272 **
273 ** Using recursive inclusion would quickly hit a complexity wall if we are
274 ** not careful. This is because with "normal" directives we expand
275 ** a whole argument lists, for example,
276 ** just to split off the first argument and collect the remainder.
277 ** This easily makes iterative algorithms quadratic because all the
278 ** arguments are touched over and over again.
279 **
280 ** EĿlipsis provides specialized macro assignment directives that avoid this
281 ** complexity.
282 ^*/
283 /*^ @{!*/
284
285 /*^
286 ** @brief Gather token lists into a macro
287 **
288 ** The general form of that directive is
289 **
290 ** ```{.C}
291 ** %%gather NAME [token₁ [token₂ [ ... tokenₖ ] ] ]
292 ** ```
293 **
294 ** where `NAME` is a name of a possibly pre-existing macro, and
295 ** `tokenᵢ` are tokens. The difference to `%%define` and similar are
296 **
297 ** - If one of the `tokenᵢ` is a name of a macro, the replacement
298 ** list of that macro is removed from that macro (so it becomes
299 ** empty) and spliced in place instead of `tokenᵢ`. But other than
300 ** for `%%define` no further expansion takes place.
301
302 ** - If `NAME` is not a pre-existing macro, a new macro is defined
303 ** that has the resulting list as replacement list.
304 **
305 ** - If `NAME` is already a macro, the resulting list is appended to
306 ** the current replacement list.
307 **
308 ** Consider the following example that uses three function-like macros
309 **
310 ** ```{.C}
311 ** %%define A() a , 1
312 ** %%define B() b
313 ** %%define C() c , d
314 ** %%gather C A B
315 ** ```
316 **
317 ** Note that in the `%%gather` line, none of the macros is "invoked",
318 ** there are no `()` parenthesis.
319 **
320 ** After that, the following three source lines
321 **
322 ** ```{.C}
323 ** A: A()
324 ** B: B()
325 ** C: C()
326 ** ```
327 **
328 ** expand to the replacements
329 **
330 ** ```{.C}
331 ** A:
332 ** B:
333 ** C: c , d a , 1 b
334 ** ```
335 **
336 ** That is, `C()` has the concatenation of the three lists in the
337 ** order they appear in `%%gather`, and `A()` and `B()` are now empty
338 ** macros that expand to nothing.
339 **
340 ** For a more complicated example, take the source of the
341 ** ellipsis-foreach-loop.dirs Xfile, which is the bottom of the
342 ** recursion of ellipsis-foreach.dirs
343 **
344 ** @include "ellipsis-foreach-loop.dirs"
345 **
346 ** If we have that
347 **
348 ** - `FOREACH_RESULT` is a function-like macro with no parameter that
349 ** expands to the tokens &quot;`a , b , c`&quot;
350 ** - `BODY` is function-like macro that receives one parameter `X`
351 ** and returns the tokens &quot;`array [ X ]`&quot;
352 ** - `FOREACH_FIR` expands to the single token &quot;`100`&quot;,
353 **
354 ** the line
355 **
356 ** @skipline gather
357 **
358 ** First expands the tokens on the line, to maybe result in something like
359 **
360 ** ```{.C}
361 ** gather FOREACH_RESULT array [ 100 ]
362 ** ```
363 **
364 ** Note that `gather` and `FOREACH_RESULT` are not expanded. This new
365 ** token list is then taken as a directive and `FOREACH_RESULT` now
366 ** contains `a, b, c, array[100]`
367 **
368 ** @remark The complexity of this directive is only related to the
369 ** number of tokens `k` that are given, not on the lengths of their
370 ** replacement lists or the length of the existing replacement list
371 ** of `NAME`.
372 ^*/
374
375 /*^
376 ** @brief Delete the contents of `target` and move the contents of
377 ** `source` into it.
378 **
379 ** ```{.C}
380 ** %%move target source
381 ** ```
382 **
383 **
384 ** @remark The complexity of this directive is `O(1)`.
385 ^*/
387
388 /*^
389 ** @brief Scatter comma-separated parts of a token list into other macros
390 **
391 ** The general form of that directive is
392 **
393 ** ```{.C}
394 ** %%scatter [target₁ [target₂ [ ... targetₖ] ] ] NAME
395 ** ```
396 **
397 ** where `NAME` is a name of a pre-existing macro, and `targetᵢ` are
398 ** identifiers. Here the starting sequence of tokens in `NAME` up to
399 ** the first comma is removed from `NAME`, `target1` is made a macro
400 ** if it was not before, and the replacement sequence of `target1` is
401 ** set to (or replaced by) that starting sequence. Then the now
402 ** leading comma is also removed from `NAME` and the procedure is
403 ** performed in turn for `target2` etc. Once all `targetᵢ` macros are
404 ** processed, `NAME` keeps the remaining token list (again without
405 ** the possible comma).
406 **
407 ** ```{.C}
408 ** %%define A()
409 ** %%define B()
410 ** %%define C() c , d a , 1 b
411 ** %%scatter A B C
412 ** ```
413 **
414 ** Note that in the `%%scatter` line, none of the macros is "invoked",
415 ** there are no `()` parenthesis.
416 **
417 ** After that, the following three source lines
418 **
419 ** ```{.C}
420 ** A: A()
421 ** B: B()
422 ** C: C()
423 ** ```
424 **
425 ** expand to the replacements
426 **
427 ** ```{.C}
428 ** A: c
429 ** B: d a
430 ** C: 1 b
431 ** ```
432 **
433 ** That is, `A()` has the tokens up to the first comma, `B()` those
434 ** up to the second then `C()` keeps the remaining list after the
435 ** second comma.
436 **
437 ** For a more complicated example, take the source of the
438 ** ellipsis-foreach-loop.dirs Xfile, which is the bottom of the
439 ** recursion of ellipsis-foreach.dirs
440 **
441 ** @include "ellipsis-foreach-loop.dirs"
442 **
443 ** If we have that
444 **
445 ** - `FOREACH_ARGS` is a function-like macro with no parameter that
446 ** expands to the tokens &quot;`17 , 9 , 100`&quot;
447
448 ** - `FOREACH_FIR` is a function-like macro with no parameter that
449 ** might have any contents
450 **
451 ** after the line
452 **
453 ** @skipline scatter
454 **
455 ** the snippet
456 **
457 ** ```{.C}
458 ** FOREACH_FIR: FOREACH_FIR()
459 ** FOREACH_ARGS: FOREACH_ARGS()
460 ** ```
461 **
462 ** would expand to
463 **
464 ** ```{.C}
465 ** FOREACH_FIR: 17
466 ** FOREACH_ARGS: 9 , 100
467 ** ```
468 **
469 ** @remark The complexity of this directive is only related to the
470 ** number of targets `k` that are given and on the length of the
471 ** corresponding lists in `NAME`. If `n₁`, ..., `nₖ` are the lengths of
472 ** these lists, the complexity is `O(Σᵢ nᵢ)`. The remaining list in
473 ** `NAME` stays otherwise untouched and may be arbitrarily long without
474 ** influencing the complexity.
475 ^*/
477
478 /*^ @}!*/
479
480 /*^
481 ** @name Shortcuts for explicit expansion
482 ^*/
483 /*^ @{!*/
484
486
487 /*^
488 ** @brief Define the name of the current unit.
489 **
490 ** Each source file that is included has its own unit name. The
491 ** pseudo variables @ref ⸤__UNIT__⸥ and
492 ** @ref ⸤__PARENT_UNIT__⸥ give access to that name and
493 ** to the name of the unit that included the current one. They
494 ** can also be abbreviated by `¤` and `..` respectively.
495 **
496 ** If you do not want to use composed names, this can be as simple
497 ** as in
498 **
499 ** ```
500 ** #unit bla
501 ** ```
502 **
503 ** to name the current unit `bla`. If you want to compose the
504 ** current name from the parent unit you can go with
505 **
506 ** ```
507 ** #unit ⸤¤¤::kitten⸥
508 ** ```
509 **
510 ** If the parent unit is `⸤my::favorite⸥`
511 ** this would set the
512 ** current unit to `⸤my::favorite::kitten⸥`;
513 ** if there is no parent unit and if the environment variable @ref ⸤__PROJECT__⸥ is set to
514 ** `⸤my::favorite⸥` the result for the current unit would be the
515 ** same.
516 **
517 ** @remark The linker name used for this unit would then be
518 ** `my∷favorite∷kitten`.
519 **
520 ** @warning This directive interacts with macros and keywords, so
521 ** you should not use components of names that would expand or
522 ** that is a keyword.
523 **
524 ** @see @ref ⸤__PROJECT__⸥
525 ** @hideinitializer
526 ^*/
528 KEYWORD_ADD_ID(xbind, expand __bind__)
529 KEYWORD_ADD_ID(xdefine, expand __define__)
530 KEYWORD_ADD_ID(xembed_resource, expand __embed_resource__)
531 KEYWORD_ADD_ID(xinclude_source, expand __include_source__)
532 KEYWORD_ADD_ID(xlinenumber, expand __linenumber__)
533
534 /*^ @}!*/
__directive__ define
The define directive as specified by the C standard.
Definition directives.c:33
__directive__ gather
Gather token lists into a macro.
Definition directives.c:441
__directive__ error
The error directive as specified by the C standard.
Definition directives.c:56
__directive__ end
Definition directives.c:561
__directive__ embed_resource
Embed the data source file but without expanding the token list of the directive.
Definition directives.c:172
__directive__ endif
The endif directive as specified by the C standard.
Definition directives.c:52
__directive__ include_source
Include the source file but without expanding the token list of the directive.
Definition directives.c:235
__directive__ xbind
Definition directives.c:616
__directive__ environment
Find an environment variable through the C library call getenv and define a macro of the same name.
Definition directives.c:333
__directive__ ifdef
Definition directives.c:108
__directive__ expand
Expand the remaining tokens on the line and re-interpret the result as a directive.
Definition directives.c:211
__directive__ elif
The elif directive as specified by the C standard.
Definition directives.c:37
__directive__ always
Always expand the code up to the next #end or #endif.
Definition directives.c:151
__directive__ once
Only expand the code up to the next #end, #endif or the end of the header once.
Definition directives.c:277
__directive__ warning
The warning directive as specified by the C standard.
Definition directives.c:79
__directive__ line
The line directive as specified by the C standard.
Definition directives.c:71
__directive__ embed
The embed directive as specified by the C standard plus extension.
Definition directives.c:48
__directive__ xdefine
Definition directives.c:623
__directive__ never
Never expand the code up to the next #end or #endif.
Definition directives.c:255
__directive__ bind
A local equivalent to #define.
Definition directives.c:162
__directive__ move
Delete the contents of target and move the contents of source into it.
Definition directives.c:455
__directive__ xembed_resource
Definition directives.c:630
__directive__ ifndef
Definition directives.c:115
__directive__ include
The include directive as specified by the C standard plus extensions.
Definition directives.c:67
__directive__ xlinenumber
Definition directives.c:644
__directive__ include_directives
Execute only the directives in the given header file.
Definition directives.c:225
__directive__ unit
Define the name of the current unit.
Definition directives.c:609
__directive__ scatter
Scatter comma-separated parts of a token list into other macros.
Definition directives.c:546
__directive__ undef
The undef directive as specified by the C standard.
Definition directives.c:75
__directive__ elifndef
Definition directives.c:101
__directive__ linenumber
As the #line directive but without expanding the rest of the line.
Definition directives.c:242
__directive__ elifdef
Definition directives.c:94
__directive__ xinclude_source
Definition directives.c:637
#define defined
A place holder for the defined preprocessor test as required by the C standard.
Definition ellipsis-builtins.dirs:29
#define __UNIT__
A pseudo-macro that resolves to the name associated with the current translation unit,...
Definition ellipsis-predefined.dirs:112
#define KEYWORD_ADD_ID(X,...)
Definition ellipsis-special.h:398