(Formatted Output): Excess arguments are ignored.
[bpt/guile.git] / doc / ref / misc-modules.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Guile Reference Manual.
3 @c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004
4 @c Free Software Foundation, Inc.
5 @c See the file guile.texi for copying conditions.
6
7 @page
8 @node Pretty Printing
9 @section Pretty Printing
10
11 @c FIXME::martin: Review me!
12
13 @cindex pretty printing
14 The module @code{(ice-9 pretty-print)} provides the procedure
15 @code{pretty-print}, which provides nicely formatted output of Scheme
16 objects. This is especially useful for deeply nested or complex data
17 structures, such as lists and vectors.
18
19 The module is loaded by simply saying.
20
21 @lisp
22 (use-modules (ice-9 pretty-print))
23 @end lisp
24
25 This makes the procedure @code{pretty-print} available. As an example
26 how @code{pretty-print} will format the output, see the following:
27
28 @lisp
29 (pretty-print '(define (foo) (lambda (x)
30 (cond ((zero? x) #t) ((negative? x) -x) (else
31 (if (= x 1) 2 (* x x x)))))))
32 @print{}
33 (define (foo)
34 (lambda (x)
35 (cond ((zero? x) #t)
36 ((negative? x) -x)
37 (else (if (= x 1) 2 (* x x x))))))
38 @end lisp
39
40 @deffn {Scheme Procedure} pretty-print obj [port] [keyword-options]
41 Print the textual representation of the Scheme object @var{obj} to
42 @var{port}. @var{port} defaults to the current output port, if not
43 given.
44
45 The further @var{keyword-options} are keywords and parameters as
46 follows,
47
48 @table @asis
49 @item @nicode{#:display?} @var{flag}
50 If @var{flag} is true then print using @code{display}. The default is
51 @code{#f} which means use @code{write} style. (@pxref{Writing})
52
53 @item @nicode{#:per-line-prefix} @var{string}
54 Print the given @var{string} as a prefix on each line. The default is
55 no prefix.
56
57 @item @nicode{#:width} @var{columns}
58 Print within the given @var{columns}. The default is 79.
59 @end table
60 @end deffn
61
62
63 @page
64 @node Formatted Output
65 @section Formatted Output
66 @cindex formatted output
67
68 @c For reference, in this section escapes like ~a are given in
69 @c @nicode, to give code font in TeX etc, but leave them unadorned in
70 @c Info.
71 @c
72 @c The idea is to reduce clutter around what's shown, and avoid any
73 @c possible confusion over whether the ` ' quotes are part of what
74 @c should be entered. (In particular for instance of course ' is
75 @c meaningful in a format string, introducing a char parameter).
76
77 The @code{format} function is a powerful way to print numbers, strings
78 and other objects together with literal text under the control of a
79 format string. This function is available from
80
81 @example
82 (use-modules (ice-9 format))
83 @end example
84
85 A format string is generally more compact and easier than using just
86 the standard procedures like @code{display}, @code{write} and
87 @code{newline}. Parameters in the output string allow various output
88 styles, and parameters can be taken from the arguments for runtime
89 flexibility.
90
91 @code{format} is similar to the Common Lisp procedure of the same
92 name, but it's not identical and doesn't have quite all the features
93 found in Common Lisp.
94
95 C programmers will note the similarity between @code{format} and
96 @code{printf}, though escape sequences are marked with @nicode{~}
97 instead of @nicode{%}, and are more powerful.
98
99 @sp 1
100 @deffn {Scheme Procedure} format dest fmt [args@dots{}]
101 Write output specified by the @var{fmt} string to @var{dest}.
102 @var{dest} can be an output port, @code{#t} for
103 @code{current-output-port} (@pxref{Default Ports}), a number for
104 @code{current-error-port}, or @code{#f} to return the output as a
105 string.
106
107 @var{fmt} can contain literal text to be output, and @nicode{~}
108 escapes. Each escape has the form
109
110 @example
111 ~ [param [, param@dots{}] [:] [@@] code
112 @end example
113
114 @nicode{code} is a character determining the escape sequence. The
115 @nicode{:} and @nicode{@@} characters are optional modifiers, one or
116 both of which change the way various codes operate. Optional
117 parameters are accepted by some codes too. Parameters have the
118 following forms,
119
120 @table @asis
121 @item @nicode{[+/-] number}
122 An integer, with optional @nicode{+} or @nicode{-}.
123 @item @nicode{'} (apostrophe)
124 The following character in the format string, for instance @nicode{'z}
125 for @nicode{z}.
126 @item @nicode{v}
127 The next function argument as the parameter. @nicode{v} stands for
128 ``variable'', a parameter can be calculated at runtime and included in
129 the arguments. Upper case @nicode{V} can be used too.
130 @item @nicode{#}
131 The number of arguments remaining. (See @nicode{~*} below for some
132 usages.)
133 @end table
134
135 Parameters are separated by commas (@nicode{,}). A parameter can be
136 left empty to keep its default value when supplying later parameters.
137
138 @sp 1
139 The following escapes are available. The code letters are not
140 case-sensitive, upper and lower case are the same.
141
142 @table @asis
143 @item @nicode{~a}
144 @itemx @nicode{~s}
145 Object output. Parameters: @var{minwidth}, @var{padinc},
146 @var{minpad}, @var{padchar}.
147
148 @nicode{~a} outputs an argument like @code{display}, @nicode{~s}
149 outputs an argument like @code{write} (@pxref{Writing}).
150
151 @example
152 (format #t "~a" "foo") @print{} foo
153 (format #t "~s" "foo") @print{} "foo"
154 @end example
155
156 With the @nicode{:} modifier, objects which don't have an external
157 representation are put in quotes like a string.
158
159 @example
160 (format #t "~:a" car) @print{} "#<primitive-procedure car>"
161 @end example
162
163 If the output is less than @var{minwidth} characters (default 0), it's
164 padded on the right with @var{padchar} (default space). The
165 @nicode{@@} modifier puts the padding on the left instead.
166
167 @example
168 (format #f "~5a" 'abc) @result{} "abc "
169 (format #f "~5,,,'-@@a" 'abc) @result{} "--abc"
170 @end example
171
172 @var{minpad} is a minimum for the padding then plus a multiple of
173 @var{padinc}. Ie.@: the padding is @math{@var{minpad} + @var{N} *
174 @var{padinc}}, where @var{n} is the smallest integer making the total
175 object plus padding greater than or equal to @var{minwidth}. The
176 default @var{minpad} is 0 and the default @var{padinc} is 1 (imposing
177 no minimum or multiple).
178
179 @example
180 (format #f "~5,1,4a" 'abc) @result{} "abc "
181 @end example
182
183 @item @nicode{~c}
184 Character. Parameter: @var{charnum}.
185
186 Output a character. The default is to simply output, as per
187 @code{write-char} (@pxref{Writing}). With the @nicode{@@} modifier
188 output is in @code{write} style. Or with the @nicode{:} modifier
189 control characters (ASCII 0 to 31) are printed in @nicode{^X} form.
190
191 @example
192 (format #t "~c" #\z) @print{} z
193 (format #t "~@@c" #\z) @print{} #\z
194 (format #t "~:c" #\newline) @print{} ^J
195 @end example
196
197 If the @var{charnum} parameter is given then an argument is not taken
198 but instead the character is @code{(integer->char @var{charnum})}
199 (@pxref{Characters}). This can be used for instance to output
200 characters given by their ASCII code.
201
202 @example
203 (format #t "~65c") @print{} A
204 @end example
205
206 @item @nicode{~d}
207 @itemx @nicode{~x}
208 @itemx @nicode{~o}
209 @itemx @nicode{~b}
210 Integer. Parameters: @var{minwidth}, @var{padchar}, @var{commachar},
211 @var{commawidth}.
212
213 Output an integer argument as a decimal, hexadecimal, octal or binary
214 integer (respectively).
215
216 @example
217 (format #t "~d" 123) @print{} 123
218 @end example
219
220 With the @nicode{@@} modifier, a @nicode{+} sign is shown on positive
221 numbers.
222
223 @c FIXME: "+" is not shown on zero, unlike in Common Lisp. Should
224 @c that be changed in the code, or is it too late and should just be
225 @c documented that way?
226
227 @example
228 (format #t "~@@b" 12) @print{} +1100
229 @end example
230
231 If the output is less than the @var{minwidth} parameter (default no
232 minimum), it's padded on the left with the @var{padchar} parameter
233 (default space).
234
235 @example
236 (format #t "~5,'*d" 12) @print{} ***12
237 (format #t "~5,'0d" 12) @print{} 00012
238 (format #t "~3d" 1234) @print{} 1234
239 @end example
240
241 The @nicode{:} modifier adds commas (or the @var{commachar} parameter)
242 every three digits (or the @var{commawidth} parameter many).
243
244 @example
245 (format #t "~:d" 1234567) @print{} 1,234,567
246 (format #t "~10,'*,'/,2:d" 12345) @print{} ***1/23/45
247 @end example
248
249 Hexadecimal @nicode{~x} output is in lower case, but the @nicode{~(}
250 and @nicode{~)} case conversion directives described below can be used
251 to get upper case.
252
253 @example
254 (format #t "~x" 65261) @print{} feed
255 (format #t "~:@@(~x~)" 65261) @print{} FEED
256 @end example
257
258 @item @nicode{~r}
259 Integer in words, roman numerals, or a specified radix. Parameters:
260 @var{radix}, @var{minwidth}, @var{padchar}, @var{commachar},
261 @var{commawidth}.
262
263 With no parameters output is in words as a cardinal like ``ten'', or
264 with the @nicode{:} modifier as an ordinal like ``tenth''.
265
266 @example
267 (format #t "~r" 9) @print{} nine ;; cardinal
268 (format #t "~r" -9) @print{} minus nine ;; cardinal
269 (format #t "~:r" 9) @print{} ninth ;; ordinal
270 @end example
271
272 And also with no parameters, the @nicode{@@} modifier gives roman
273 numerals and @nicode{@@} and @nicode{:} together give old roman
274 numerals. In old roman numerals there's no ``subtraction'', so 9 is
275 @nicode{VIIII} instead of @nicode{IX}. In both cases only positive
276 numbers can be output.
277
278 @example
279 (format #t "~@@r" 89) @print{} LXXXIX ;; roman
280 (format #t "~@@:r" 89) @print{} LXXXVIIII ;; old roman
281 @end example
282
283 When a parameter is given it means numeric output in the specified
284 @var{radix}. The modifiers and parameters following the radix are the
285 same as described for @nicode{~d} etc above.
286
287 @example
288 (format #f "~3r" 27) @result{} "1000" ;; base 3
289 (format #f "~3,5r" 26) @result{} " 222" ;; base 3 width 5
290 @end example
291
292 @item @nicode{~f}
293 Fixed-point float. Parameters: @var{width}, @var{decimals},
294 @var{scale}, @var{overflowchar}, @var{padchar}.
295
296 Output a number or number string in fixed-point format, ie.@: with a
297 decimal point.
298
299 @example
300 (format #t "~f" 5) @print{} 5.0
301 (format #t "~f" "123") @print{} 123.0
302 (format #t "~f" "1e-1") @print{} 0.1
303 @end example
304
305 With the @nicode{@@} modifier a @nicode{+} sign is shown on positive
306 numbers (including zero).
307
308 @example
309 (format #t "~@@f" 0) @print{} +0.0
310 @end example
311
312 If the output is less than @var{width} characters it's padded on the
313 left with @var{padchar} (space by default). If the output equals or
314 exceeds @var{width} then there's no padding. The default for
315 @var{width} is no padding.
316
317 @example
318 (format #f "~6f" -1.5) @result{} " -1.5"
319 (format #f "~6,,,,'*f" 23) @result{} "**23.0"
320 (format #f "~6f" 1234567.0) @result{} "1234567.0"
321 @end example
322
323 @var{decimals} is how many digits to print after the decimal point,
324 with the value rounded or padded with zeros as necessary. (The
325 default is to output as many decimals as required.)
326
327 @example
328 (format #t "~1,2f" 3.125) @print{} 3.13
329 (format #t "~1,2f" 1.5) @print{} 1.50
330 @end example
331
332 @var{scale} is a power of 10 applied to the value, moving the decimal
333 point that many places. A positive @var{scale} increases the value
334 shown, a negative decreases it.
335
336 @example
337 (format #t "~,,2f" 1234) @print{} 123400.0
338 (format #t "~,,-2f" 1234) @print{} 12.34
339 @end example
340
341 If @var{overflowchar} and @var{width} are both given and if the output
342 would exceed @var{width}, then that many @var{overflowchar}s are
343 printed instead of the value.
344
345 @example
346 (format #t "~5,,,'xf" 12345) @print{} 12345
347 (format #t "~4,,,'xf" 12345) @print{} xxxx
348 @end example
349
350 @item @nicode{~e}
351 Exponential float. Parameters: @var{width}, @var{mantdigits},
352 @var{expdigits}, @var{intdigits}, @var{overflowchar}, @var{padchar},
353 @var{expchar}.
354
355 Output a number or number string in exponential notation.
356
357 @example
358 (format #t "~e" 5000.25) @print{} 5.00025E+3
359 (format #t "~e" "123.4") @print{} 1.234E+2
360 (format #t "~e" "1e4") @print{} 1.0E+4
361 @end example
362
363 With the @nicode{@@} modifier a @nicode{+} sign is shown on positive
364 numbers (including zero). (This is for the mantissa, a @nicode{+} or
365 @nicode{-} sign is always shown on the exponent.)
366
367 @example
368 (format #t "~@@e" 5000.0) @print{} +5.0E+3
369 @end example
370
371 If the output is less than @var{width} characters it's padded on the
372 left with @var{padchar} (space by default). The default for
373 @var{width} is to output with no padding.
374
375 @example
376 (format #f "~10e" 1234.0) @result{} " 1.234E+3"
377 (format #f "~10,,,,,'*e" 0.5) @result{} "****5.0E-1"
378 @end example
379
380 @c FIXME: Describe what happens when the number is bigger than WIDTH.
381 @c There seems to be a bit of dodginess about this, or some deviation
382 @c from Common Lisp.
383
384 @var{mantdigits} is the number of digits shown in the mantissa after
385 the decimal point. The value is rounded or trailing zeros are added
386 as necessary. The default @var{mantdigits} is to show as much as
387 needed by the value.
388
389 @example
390 (format #f "~,3e" 11111.0) @result{} "1.111E+4"
391 (format #f "~,8e" 123.0) @result{} "1.23000000E+2"
392 @end example
393
394 @var{expdigits} is the minimum number of digits shown for the
395 exponent, with leading zeros added if necessary. The default for
396 @var{expdigits} is to show only as many digits as required. At least
397 1 digit is always shown.
398
399 @example
400 (format #f "~,,1e" 1.0e99) @result{} "1.0E+99"
401 (format #f "~,,6e" 1.0e99) @result{} "1.0E+000099"
402 @end example
403
404 @var{intdigits} (default 1) is the number of digits to show before the
405 decimal point in the mantissa. @var{intdigits} can be zero, in which
406 case the integer part is a single @nicode{0}, or it can be negative,
407 in which case leading zeros are shown after the decimal point.
408
409 @c FIXME: When INTDIGITS is 0, Common Lisp format apparently only
410 @c shows the single 0 digit if it fits in WIDTH. format.scm seems to
411 @c show it always. Is it meant to?
412
413 @example
414 (format #t "~,,,3e" 12345.0) @print{} 123.45E+2
415 (format #t "~,,,0e" 12345.0) @print{} 0.12345E+5
416 (format #t "~,,,-3e" 12345.0) @print{} 0.00012345E+8
417 @end example
418
419 @c FIXME: MANTDIGITS with negative INTDIGITS doesn't match CL spec,
420 @c believe the spec says it ought to still show mantdigits+1 sig
421 @c figures, ie. leading zeros don't count towards MANTDIGITS, but it
422 @c seems to just treat MANTDIGITS as how many digits after the
423 @c decimal point.
424
425 If @var{overflowchar} is given then @var{width} is a hard limit. If
426 the output would exceed @var{width} then instead that many
427 @var{overflowchar}s are printed.
428
429 @example
430 (format #f "~6,,,,'xe" 100.0) @result{} "1.0E+2"
431 (format #f "~3,,,,'xe" 100.0) @result{} "xxx"
432 @end example
433
434 @var{expchar} is the exponent marker character (default @nicode{E}).
435
436 @example
437 (format #t "~,,,,,,'ee" 100.0) @print{} 1.0e+2
438 @end example
439
440 @item @nicode{~g}
441 General float. Parameters: @var{width}, @var{mantdigits},
442 @var{expdigits}, @var{intdigits}, @var{overflowchar}, @var{padchar},
443 @var{expchar}.
444
445 Output a number or number string in either exponential format the same
446 as @nicode{~e}, or fixed-point format like @nicode{~f} but aligned
447 where the mantissa would have been and followed by padding where the
448 exponent would have been.
449
450 @c FIXME: The default MANTDIGITS is apparently max(needed,min(n,7))
451 @c where 10^(n-1)<=abs(x)<=10^n. But the Common Lisp spec seems to
452 @c ask for "needed" to be without leading or trailing zeros, whereas
453 @c format.scm seems to include trailing zeros, ending up with it
454 @c using fixed format for bigger values than it should.
455
456 Fixed-point is used when the absolute value is 0.1 or more and it
457 takes no more space than the mantissa in exponential format, ie.@:
458 basically up to @var{mantdigits} digits.
459
460 @example
461 (format #f "~12,4,2g" 999.0) @result{} " 999.0 "
462 (format #f "~12,4,2g" "100000") @result{} " 1.0000E+05"
463 @end example
464
465 The parameters are interpreted as per @nicode{~e} above. When
466 fixed-point is used, the @var{decimals} parameter to @nicode{~f} is
467 established from @var{mantdigits}, so as to give a total
468 @math{@var{mantdigits}+1} figures.
469
470 @item @nicode{~$}
471 Monetary style fixed-point float. Parameters: @var{decimals},
472 @var{intdigits}, @var{width}, @var{padchar}.
473
474 @c For reference, fmtdoc.txi from past versions of slib showed the
475 @c INTDIGITS parameter as SCALE. That looks like a typo, in the code
476 @c and in the Common Lisp spec it's a minimum digits for the integer
477 @c part, it isn't a power of 10 like in ~f.
478
479 Output a number or number string in fixed-point format, ie.@: with a
480 decimal point. @var{decimals} is the number of decimal places to
481 show, default 2.
482
483 @example
484 (format #t "~$" 5) @print{} 5.00
485 (format #t "~4$" "2.25") @print{} 2.2500
486 (format #t "~4$" "1e-2") @print{} 0.0100
487 @end example
488
489 With the @nicode{@@} modifier a @nicode{+} sign is shown on positive
490 numbers (including zero).
491
492 @example
493 (format #t "~@@$" 0) @print{} +0.00
494 @end example
495
496 @var{intdigits} is a minimum number of digits to show in the integer
497 part of the value (default 1).
498
499 @example
500 (format #t "~,3$" 9.5) @print{} 009.50
501 (format #t "~,0$" 0.125) @print{} .13
502 @end example
503
504 If the output is less than @var{width} characters (default 0), it's
505 padded on the left with @var{padchar} (default space). With the
506 @nicode{:} modifier the padding is output after the sign.
507
508 @example
509 (format #f "~,,8$" -1.5) @result{} " -1.50"
510 (format #f "~,,8:$" -1.5) @result{} "- 1.50"
511 (format #f "~,,8,'.@@:$" 3) @result{} "+...3.00"
512 @end example
513
514 Note that floating point for dollar amounts is generally not a good
515 idea, because a cent @math{0.01} cannot be represented exactly in the
516 binary floating point Guile uses, which leads to slowly accumulating
517 rounding errors. Keeping values as cents (or fractions of a cent) in
518 integers then printing with the scale option in @nicode{~f} may be a
519 better approach.
520
521 @c For reference, fractions don't work with ~$ (or any of the float
522 @c conversions) currently. If they did work then we could perhaps
523 @c suggest keeping dollar amounts as rationals, which would of course
524 @c give exact cents. An integer as cents is probably still a better
525 @c recommendation though, since it forces one to think about where
526 @c and when rounding can or should occur.
527
528 @item @nicode{~i}
529 Complex fixed-point float. Parameters: @var{width}, @var{decimals},
530 @var{scale}, @var{overflowchar}, @var{padchar}.
531
532 @c For reference, in Common Lisp ~i is an indent, but slib fmtdoc.txi
533 @c described it as complex number output, so we keep that.
534
535 Output the argument as a complex number, with both real and imaginary
536 part shown (even if one or both are zero).
537
538 The parameters and modifiers are the same as for fixed-point
539 @nicode{~f} described above. The real and imaginary parts are both
540 output with the same given parameters and modifiers, except that for
541 the imaginary part the @nicode{@@} modifier is always enabled, so as
542 to print a @nicode{+} sign between the real and imaginary parts.
543
544 @example
545 (format #t "~i" 1) @print{} 1.0+0.0i
546 @end example
547
548 @item @nicode{~p}
549 Plural. No parameters.
550
551 Output nothing if the argument is 1, or @samp{s} for any other
552 value.
553
554 @example
555 (format #t "enter name~p" 1) @print{} enter name
556 (format #t "enter name~p" 2) @print{} enter names
557 @end example
558
559 With the @nicode{@@} modifier, the output is @samp{y} for 1 or
560 @samp{ies} otherwise.
561
562 @example
563 (format #t "pupp~@@p" 1) @print{} puppy
564 (format #t "pupp~@@p" 2) @print{} puppies
565 @end example
566
567 The @nicode{:} modifier means re-use the preceding argument instead of
568 taking a new one, which can be convenient when printing some sort of
569 count.
570
571 @example
572 (format #t "~d cat~:p" 9) @print{} 9 cats
573 @end example
574
575 @item @nicode{~y}
576 Pretty print. No parameters.
577
578 Output an argument with @code{pretty-print} (@pxref{Pretty Printing}).
579
580 @item @nicode{~?}
581 @itemx @nicode{~k}
582 Sub-format. No parameters.
583
584 Take a format string argument and a second argument which is a list of
585 arguments for it, and output the result. With the @nicode{@@}
586 modifier, the arguments for the sub-format are taken directly rather
587 than from a list.
588
589 @example
590 (format #t "~?" "~d ~d" '(1 2)) @print{} 1 2
591 (format #t "~@@? ~s" "~d ~d" 1 2 "foo") @print{} 1 2 "foo"
592 @end example
593
594 @nicode{~?} and @nicode{~k} are the same, @nicode{~k} is provided for
595 T-Scheme compatibility.
596
597 @item @nicode{~*}
598 Argument jumping. Parameter: @var{N}.
599
600 Move forward @var{N} arguments (default 1) in the argument list. With
601 the @nicode{:} modifier move backwards. (@var{N} cannot be negative.)
602
603 @example
604 (format #f "~d ~2*~d" 1 2 3 4) @result{} "1 4"
605 (format #f "~d ~:*~d" 6) @result{} "6 6"
606 @end example
607
608 With the @nicode{@@} modifier, move to argument number @var{N}. The
609 first argument is number 0 (and that's the default for @var{N}).
610
611 @example
612 (format #f "~d~d again ~@@*~d~d" 1 2) @result{} "12 again 12"
613 (format #f "~d~d~d ~1@@*~d~d" 1 2 3) @result{} "123 23"
614 @end example
615
616 A @nicode{#} move to the end followed by a @nicode{:} modifier move
617 back can be used for an absolute position relative to the end of the
618 argument list, a reverse of what the @nicode{@@} modifier does.
619
620 @example
621 (format #t "~#*~2:*~a" 'a 'b 'c 'd) @print{} c
622 @end example
623
624 At the end of the format string, the current argument postion doesn't
625 matter, any further arguments are ignored.
626
627 @item @nicode{~t}
628 Advance to a column position. Parameters: @var{colnum}, @var{colinc},
629 @var{padchar}.
630
631 Output @var{padchar} (space by default) to move to the given
632 @var{colnum} column. The start of the line is column 0, the default
633 for @var{colnum} is 1.
634
635 @example
636 (format #f "~tX") @result{} " X"
637 (format #f "~3tX") @result{} " X"
638 @end example
639
640 If the current column is already past @var{colnum}, then the move is
641 to there plus a multiple of @var{colinc}, ie.@: column
642 @math{@var{colnum} + @var{N} * @var{colinc}} for the smallest @var{N}
643 which makes that value greater than or equal to the current column.
644 The default @var{colinc} is 1 (which means no further move).
645
646 @example
647 (format #f "abcd~2,5,'.tx") @result{} "abcd...x"
648 @end example
649
650 With the @nicode{@@} modifier, @var{colnum} is relative to the current
651 column. @var{colnum} many padding characters are output, then further
652 padding to make the current column a multiple of @var{colinc}, if it
653 isn't already so.
654
655 @example
656 (format #f "a~3,5'*@@tx") @result{} "a****x"
657 @end example
658
659 @nicode{~t} is implemented using @code{port-column} (@pxref{Reading}),
660 so it works even there has been other output before @code{format}.
661
662 @item @nicode{~~}
663 Tilde character. Parameter: @var{n}.
664
665 Output a tilde character @nicode{~}, or @var{n} many if a parameter is
666 given. Normally @nicode{~} introduces an escape sequence, @nicode{~~}
667 is the way to output a literal tilde.
668
669 @item @nicode{~%}
670 Newline. Parameter: @var{n}.
671
672 Output a newline character, or @var{n} many if a parameter is given.
673 A newline (or a few newlines) can of course be output just by
674 including them in the format string.
675
676 @item @nicode{~&}
677 Start a new line. Parameter: @var{n}.
678
679 Output a newline if not already at the start of a line. With a
680 parameter, output that many newlines, but with the first only if not
681 already at the start of a line. So for instance 3 would be a newline
682 if not already at the start of a line, and 2 further newlines.
683
684 @item @nicode{~_}
685 Space character. Parameter: @var{n}.
686
687 @c For reference, in Common Lisp ~_ is a conditional newline, but
688 @c slib fmtdoc.txi described it as a space, so we keep that.
689
690 Output a space character, or @var{n} many if a parameter is given.
691
692 With a variable parameter this is one way to insert runtime calculated
693 padding (@nicode{~t} or the various field widths can do similar
694 things).
695
696 @example
697 (format #f "~v_foo" 4) @result{} " foo"
698 @end example
699
700 @item @nicode{~/}
701 Tab character. Parameter: @var{n}.
702
703 Output a tab character, or @var{n} many if a parameter is given.
704
705 @item @nicode{~|}
706 Formfeed character. Parameter: @var{n}.
707
708 Output a formfeed character, or @var{n} many if a parameter is given.
709
710 @item @nicode{~!}
711 Force output. No parameters.
712
713 At the end of output, call @code{force-output} to flush any buffers on
714 the destination (@pxref{Writing}). @nicode{~!} can occur anywhere in
715 the format string, but the force is done at the end of output.
716
717 When output is to a string (destination @code{#f}), @nicode{~!} does
718 nothing.
719
720 @item @nicode{~newline} (ie.@: newline character)
721 Continuation line. No parameters.
722
723 Skip this newline and any following whitespace in the format string,
724 don't send it to the output. With the @nicode{:} modifier the newline
725 is not output but any further following whitespace is. With the
726 @nicode{@@} modifier the newline is output but not any following
727 whitespace.
728
729 This escape can be used to break up a long format string into multiple
730 lines for readability, but supress that extra whitespace.
731
732 @example
733 (format #f "abc~
734 ~d def~
735 ~d" 1 2) @result{} "abc1 def2"
736 @end example
737
738 @item @nicode{~(} @nicode{~)}
739 Case conversion. Between @nicode{~(} and @nicode{~)} the case of all
740 output is changed. The modifiers on @nicode{~(} control the
741 conversion.
742
743 @itemize @w{}
744 @item
745 no modifiers --- lower case.
746 @c
747 @c FIXME: The : and @ modifiers are not yet documented because the
748 @c code applies string-capitalize and string-capitalize-first to each
749 @c separate format:out-str call, which has various subtly doubtful
750 @c effects. And worse they're applied to individual characters,
751 @c including literal characters in the format string, which has the
752 @c silly effect of being always an upcase.
753 @c
754 @c The Common Lisp spec is apparently for the capitalization to be
755 @c applied in one hit to the whole of the output between ~( and ~).
756 @c (This can no doubt be implemented without accumulating all that
757 @c text, just by keeping a state or the previous char to tell whether
758 @c within a word.)
759 @c
760 @c @item
761 @c @nicode{:} --- first letter of each word upper case, the rest lower
762 @c case, as per the @code{string-capitalize} function (@pxref{Alphabetic
763 @c Case Mapping}).
764 @c @item
765 @c @nicode{@@} --- first letter of just the first word upper case, the
766 @c rest lower case.
767 @c
768 @item
769 @nicode{:} and @nicode{@@} together --- upper case.
770 @end itemize
771
772 For example,
773
774 @example
775 (format #t "~(Hello~)") @print{} hello
776 (format #t "~@@:(Hello~)") @print{} HELLO
777 @end example
778
779 In the future it's intended the modifiers @nicode{:} and @nicode{@@}
780 alone will capitalize the first letters of words, as per Common Lisp
781 @code{format}, but the current implementation of this is flawed and
782 not recommended for use.
783
784 Case conversions do not nest, currently. This might change in the
785 future, but if it does then it will be to Common Lisp style where the
786 outermost conversion has priority, overriding inner ones (making those
787 fairly pointless).
788
789 @item @nicode{~@{} @nicode{~@}}
790 Iteration. Parameter: @var{maxreps} (for @nicode{~@{}).
791
792 The format between @nicode{~@{} and @nicode{~@}} is iterated. The
793 modifiers to @nicode{~@{} determine how arguments are taken. The
794 default is a list argument with each iteration successively consuming
795 elements from it. This is a convenient way to output a whole list.
796
797 @example
798 (format #t "~@{~d~@}" '(1 2 3)) @print{} 123
799 (format #t "~@{~s=~d ~@}" '("x" 1 "y" 2)) @print{} "x"=1 "y"=2
800 @end example
801
802 With the @nicode{:} modifier a list of lists argument is taken, each
803 of those lists gives the arguments for the iterated format.
804
805 @example
806 (format #t "~:@{~dx~d ~@}" '((1 2) (3 4) (5 6))) @print{} 1x2 3x4 5x6
807 @end example
808
809 With the @nicode{@@} modifier, the remaining arguments are used, each
810 iteration successively consuming elements.
811
812 @example
813 (format #t "~@@@{~d~@}" 1 2 3) @print{} 123
814 (format #t "~@@@{~s=~d ~@}" "x" 1 "y" 2) @print{} "x"=1 "y"=2
815 @end example
816
817 With both @nicode{:} and @nicode{@@} modifiers, the remaining
818 arguments are used, each is a list of arguments for the format.
819
820 @example
821 (format #t "~:@@@{~dx~d ~@}" '(1 2) '(3 4) '(5 6)) @print{} 1x2 3x4 5x6
822 @end example
823
824 Iterating stops when there are no more arguments or when the
825 @var{maxreps} parameter to @nicode{~@{} is reached (default no
826 maximum).
827
828 @example
829 (format #t "~2@{~d~@}" '(1 2 3 4)) @print{} 12
830 @end example
831
832 If the format between @nicode{~@{} and @nicode{~@}} is empty, then a
833 format string argument is taken (before iteration argument(s)) and
834 used instead. This allows a sub-format (like @nicode{~?} above) to be
835 iterated.
836
837 @example
838 (format #t "~@{~@}" "~d" '(1 2 3)) @print{} 123
839 @end example
840
841 @c FIXME: What is the @nicode{:} modifier to ~} meant to do? The
842 @c Common Lisp spec says it's a minimum of 1 iteration, but the
843 @c format.scm code seems to merely make it have MAXREPS default to 1.
844
845 Iterations can be nested, an inner iteration operates in the same way
846 as described, but of course on the arguments the outer iteration
847 provides it. This can be used to work into nested list structures.
848 For example in the following the inner @nicode{~@{~d~@}x} is applied
849 to @code{(1 2)} then @code{(3 4 5)} etc.
850
851 @example
852 (format #t "~@{~@{~d~@}x~@}" '((1 2) (3 4 5))) @print{} 12x345x
853 @end example
854
855 @item @nicode{~[} @nicode{~;} @nicode{~]}
856 Conditional. Parameter: @var{selector}.
857
858 A conditional block is delimited by @nicode{~[} and @nicode{~]}, and
859 @nicode{~;} separates clauses within the block. @nicode{~[} takes an
860 integer argument and that number clause is used. The first clause is
861 number 0.
862
863 @example
864 (format #f "~[peach~;banana~;mango~]" 1) @result{} "banana"
865 @end example
866
867 The @var{selector} parameter can be used for the clause number,
868 instead of taking an argument.
869
870 @example
871 (format #f "~2[peach~;banana~;mango~]") @result{} "mango"
872 @end example
873
874 If the clause number is out of range then nothing is output. Or the
875 last @nicode{~;} can have a @nicode{:} modifier to make it the default
876 for a number out of range.
877
878 @example
879 (format #f "~[banana~;mango~]" 99) @result{} ""
880 (format #f "~[banana~;mango~:;fruit~]" 99) @result{} "fruit"
881 @end example
882
883 The @nicode{:} modifier to @nicode{~[} treats the argument as a flag,
884 and expects two clauses. The first is used if the argument is
885 @code{#f} or the second otherwise.
886
887 @example
888 (format #f "~:[false~;not false~]" #f) @result{} "false"
889 (format #f "~:[false~;not false~]" 'abc) @result{} "not false"
890
891 (let ((n 3))
892 (format #t "~d gnu~:[s are~; is~] here" n (= 1 n)))
893 @print{} 3 gnus are here
894 @end example
895
896 The @nicode{@@} modifier to @nicode{~[} also treats the argument as a
897 flag, and expects one clause. If the argument is @code{#f} then no
898 output is produced and the argument is consumed, otherwise the clause
899 is used and the argument is not consumed by @nicode{~[}, it's left for
900 the clause. This can be used for instance to suppress output if
901 @code{#f} means something not available.
902
903 @example
904 (format #f "~@@[temperature=~d~]" 27) @result{} "temperature=27"
905 (format #f "~@@[temperature=~d~]" #f) @result{} ""
906 @end example
907
908 @item @nicode{~^}
909 Escape. Parameters: @var{val1}, @var{val2}, @var{val3}.
910
911 Stop formatting if there are no more arguments. This can be used for
912 instance to let a format string adapt to a variable number of
913 arguments.
914
915 @example
916 (format #t "~d~^ ~d" 1) @print{} 1
917 (format #t "~d~^ ~d" 1 2) @print{} 1 2
918 @end example
919
920 Within a @nicode{~@{} @nicode{~@}} iteration, @nicode{~^} stops the
921 current iteration step if there are no more arguments to that step,
922 continuing with possible further steps (for instance in the case of
923 the @nicode{:} modifier to @nicode{~@{}) and the rest of the format.
924
925 @example
926 (format #f "~@{~d~^/~@} go" '(1 2 3)) @result{} "1/2/3 go"
927 (format #f "~:@{ ~d~^~d~@} go" '((1) (2 3))) @result{} " 1 23 go"
928 @end example
929
930 @c For reference, format.scm doesn't implement that Common Lisp ~:^
931 @c modifier which stops the entire iterating of ~:{ or ~@:{.
932
933 @c FIXME: Believe the Common Lisp spec is for ~^ within ~[ ~]
934 @c conditional to terminate the whole format (or iteration step if in
935 @c an iteration). But format.scm seems to terminate just the
936 @c conditional form.
937 @c
938 @c (format #f "~[abc~^def~;ghi~] blah" 0)
939 @c @result{} "abc blah" ;; looks wrong
940
941 @c FIXME: Believe the Common Lisp spec is for ~^ within ~( ~) to end
942 @c that case conversion and then also terminate the whole format (or
943 @c iteration step if in an iteration). But format.scm doesn't seem
944 @c to do that quite right.
945 @c
946 @c (format #f "~d ~^ ~d" 1) @result{} "1 "
947 @c (format #f "~(~d ~^ ~d~)" 1) @result{} ERROR
948
949 Within a @nicode{~?} sub-format, @nicode{~^} operates just on that
950 sub-format. If it terminates the sub-format then the originating
951 format will still continue.
952
953 @example
954 (format #t "~? items" "~d~^ ~d" '(1)) @print{} 1 items
955 (format #t "~? items" "~d~^ ~d" '(1 2)) @print{} 1 2 items
956 @end example
957
958 The parameters to @nicode{~^} (which are numbers) change the condition
959 used to terminate. For a single parameter, termination is when that
960 value is zero (notice this makes plain @nicode{~^} equivalent to
961 @nicode{~#^}). For two parameters, termination is when those two are
962 equal. For three parameters, termination is when @math{@var{val1}
963 @le{} @var{val2}} and @math{@var{val2} @le{} @var{val3}}.
964
965 @c FIXME: Good examples of these?
966
967 @item @nicode{~q}
968 Inquiry message. Insert a copyright message into the output. With
969 the @nicode{:} modifier insert the format implementation version.
970 @end table
971
972 @sp 1
973 It's an error if there are not enough arguments for the escapes in the
974 format string, but any excess arguments are ignored.
975
976 Iterations @nicode{~@{} @nicode{~@}} and conditionals @nicode{~[}
977 @nicode{~;} @nicode{~]} can be nested, but must be properly nested,
978 meaning the inner form must be entirely within the outer form. So
979 it's not possible, for instance, to try to conditionalize the endpoint
980 of an iteration.
981
982 @example
983 (format #t "~@{ ~[ ... ~] ~@}" ...) ;; good
984 (format #t "~@{ ~[ ... ~@} ... ~]" ...) ;; bad
985 @end example
986
987 The same applies to case conversions @nicode{~(} @nicode{~)}, they
988 must properly nest with respect to iterations and conditionals (though
989 currently a case conversion cannot nest within another case
990 conversion).
991
992 When a sub-format (@nicode{~?}) is used, that sub-format string must
993 be self-contained. It cannot for instance give a @nicode{~@{} to
994 begin an iteration form and have the @nicode{~@}} up in the
995 originating format, or similar.
996 @end deffn
997
998 @sp 1
999 Guile contains a @code{format} procedure even when the module
1000 @code{(ice-9 format)} is not loaded. The default @code{format} is
1001 @code{simple-format} (@pxref{Writing}), it doesn't support all escape
1002 sequences documented in this section, and will signal an error if you
1003 try to use one of them. The reason for two versions is that the full
1004 @code{format} is fairly large and requires some time to load.
1005 @code{simple-format} is often adequate too.
1006
1007
1008 @page
1009 @node Rx Regexps
1010 @section The Rx Regular Expression Library
1011
1012 [FIXME: this is taken from Gary and Mark's quick summaries and should be
1013 reviewed and expanded. Rx is pretty stable, so could already be done!]
1014
1015 @cindex rx
1016 @cindex finite automaton
1017
1018 The @file{guile-lang-allover} package provides an interface to Tom
1019 Lord's Rx library (currently only to POSIX regular expressions). Use of
1020 the library requires a two step process: compile a regular expression
1021 into an efficient structure, then use the structure in any number of
1022 string comparisons.
1023
1024 For example, given the regular expression @samp{abc.} (which matches any
1025 string containing @samp{abc} followed by any single character):
1026
1027 @smalllisp
1028 guile> @kbd{(define r (regcomp "abc."))}
1029 guile> @kbd{r}
1030 #<rgx abc.>
1031 guile> @kbd{(regexec r "abc")}
1032 #f
1033 guile> @kbd{(regexec r "abcd")}
1034 #((0 . 4))
1035 guile>
1036 @end smalllisp
1037
1038 The definitions of @code{regcomp} and @code{regexec} are as follows:
1039
1040 @deffn {Scheme Procedure} regcomp pattern [flags]
1041 Compile the regular expression pattern using POSIX rules. Flags is
1042 optional and should be specified using symbolic names:
1043 @defvar REG_EXTENDED
1044 use extended POSIX syntax
1045 @end defvar
1046 @defvar REG_ICASE
1047 use case-insensitive matching
1048 @end defvar
1049 @defvar REG_NEWLINE
1050 allow anchors to match after newline characters in the
1051 string and prevents @code{.} or @code{[^...]} from matching newlines.
1052 @end defvar
1053
1054 The @code{logior} procedure can be used to combine multiple flags.
1055 The default is to use
1056 POSIX basic syntax, which makes @code{+} and @code{?} literals and @code{\+}
1057 and @code{\?}
1058 operators. Backslashes in @var{pattern} must be escaped if specified in a
1059 literal string e.g., @code{"\\(a\\)\\?"}.
1060 @end deffn
1061
1062 @deffn {Scheme Procedure} regexec regex string [match-pick] [flags]
1063 Match @var{string} against the compiled POSIX regular expression
1064 @var{regex}.
1065 @var{match-pick} and @var{flags} are optional. Possible flags (which can be
1066 combined using the logior procedure) are:
1067
1068 @defvar REG_NOTBOL
1069 The beginning of line operator won't match the beginning of
1070 @var{string} (presumably because it's not the beginning of a line)
1071 @end defvar
1072
1073 @defvar REG_NOTEOL
1074 Similar to REG_NOTBOL, but prevents the end of line operator
1075 from matching the end of @var{string}.
1076 @end defvar
1077
1078 If no match is possible, regexec returns #f. Otherwise @var{match-pick}
1079 determines the return value:
1080
1081 @code{#t} or unspecified: a newly-allocated vector is returned,
1082 containing pairs with the indices of the matched part of @var{string} and any
1083 substrings.
1084
1085 @code{""}: a list is returned: the first element contains a nested list
1086 with the matched part of @var{string} surrounded by the the unmatched parts.
1087 Remaining elements are matched substrings (if any). All returned
1088 substrings share memory with @var{string}.
1089
1090 @code{#f}: regexec returns #t if a match is made, otherwise #f.
1091
1092 vector: the supplied vector is returned, with the first element replaced
1093 by a pair containing the indices of the matched portion of @var{string} and
1094 further elements replaced by pairs containing the indices of matched
1095 substrings (if any).
1096
1097 list: a list will be returned, with each member of the list
1098 specified by a code in the corresponding position of the supplied list:
1099
1100 a number: the numbered matching substring (0 for the entire match).
1101
1102 @code{#\<}: the beginning of @var{string} to the beginning of the part matched
1103 by regex.
1104
1105 @code{#\>}: the end of the matched part of @var{string} to the end of
1106 @var{string}.
1107
1108 @code{#\c}: the "final tag", which seems to be associated with the "cut
1109 operator", which doesn't seem to be available through the posix
1110 interface.
1111
1112 e.g., @code{(list #\< 0 1 #\>)}. The returned substrings share memory with
1113 @var{string}.
1114 @end deffn
1115
1116 Here are some other procedures that might be used when using regular
1117 expressions:
1118
1119 @deffn {Scheme Procedure} compiled-regexp? obj
1120 Test whether obj is a compiled regular expression.
1121 @end deffn
1122
1123 @deffn {Scheme Procedure} regexp->dfa regex [flags]
1124 @end deffn
1125
1126 @deffn {Scheme Procedure} dfa-fork dfa
1127 @end deffn
1128
1129 @deffn {Scheme Procedure} reset-dfa! dfa
1130 @end deffn
1131
1132 @deffn {Scheme Procedure} dfa-final-tag dfa
1133 @end deffn
1134
1135 @deffn {Scheme Procedure} dfa-continuable? dfa
1136 @end deffn
1137
1138 @deffn {Scheme Procedure} advance-dfa! dfa string
1139 @end deffn
1140
1141
1142 @node File Tree Walk
1143 @section File Tree Walk
1144 @cindex file tree walk
1145
1146 The functions in this section traverse a tree of files and
1147 directories, in a fashion similar to the C @code{ftw} and @code{nftw}
1148 routines (@pxref{Working with Directory Trees,,, libc, GNU C Library
1149 Reference Manual}).
1150
1151 @example
1152 (use-modules (ice-9 ftw))
1153 @end example
1154 @sp 1
1155
1156 @defun ftw startname proc ['hash-size n]
1157 Walk the filesystem tree descending from @var{startname}, calling
1158 @var{proc} for each file and directory.
1159
1160 Hard links and symbolic links are followed. A file or directory is
1161 reported to @var{proc} only once, and skipped if seen again in another
1162 place. One consequence of this is that @code{ftw} is safe against
1163 circularly linked directory structures.
1164
1165 Each @var{proc} call is @code{(@var{proc} filename statinfo flag)} and
1166 it should return @code{#t} to continue, or any other value to stop.
1167
1168 @var{filename} is the item visited, being @var{startname} plus a
1169 further path and the name of the item. @var{statinfo} is the return
1170 from @code{stat} (@pxref{File System}) on @var{filename}. @var{flag}
1171 is one of the following symbols,
1172
1173 @table @code
1174 @item regular
1175 @var{filename} is a file, this includes special files like devices,
1176 named pipes, etc.
1177
1178 @item directory
1179 @var{filename} is a directory.
1180
1181 @item invalid-stat
1182 An error occurred when calling @code{stat}, so nothing is known.
1183 @var{statinfo} is @code{#f} in this case.
1184
1185 @item directory-not-readable
1186 @var{filename} is a directory, but one which cannot be read and hence
1187 won't be recursed into.
1188
1189 @item symlink
1190 @var{filename} is a dangling symbolic link. Symbolic links are
1191 normally followed and their target reported, the link itself is
1192 reported if the target does not exist.
1193 @end table
1194
1195 The return value from @code{ftw} is @code{#t} if it ran to completion,
1196 or otherwise the non-@code{#t} value from @var{proc} which caused the
1197 stop.
1198
1199 Optional argument symbol @code{hash-size} and an integer can be given
1200 to set the size of the hash table used to track items already visited.
1201 (@pxref{Hash Table Reference})
1202
1203 @c Actually, it's probably safe to escape from ftw, just need to
1204 @c check it.
1205 @c
1206 In the current implementation, returning non-@code{#t} from @var{proc}
1207 is the only valid way to terminate @code{ftw}. @var{proc} must not
1208 use @code{throw} or similar to escape.
1209 @end defun
1210
1211
1212 @defun nftw startname proc ['chdir] ['depth] ['hash-size n] ['mount] ['physical]
1213 Walk the filesystem tree starting at @var{startname}, calling
1214 @var{proc} for each file and directory. @code{nftw} has extra
1215 features over the basic @code{ftw} described above.
1216
1217 Hard links and symbolic links are followed, but a file or directory is
1218 reported to @var{proc} only once, and skipped if seen again in another
1219 place. One consequence of this is that @code{nftw} is safe against
1220 circular linked directory structures.
1221
1222 Each @var{proc} call is @code{(@var{proc} filename statinfo flag
1223 basename level)} and it should return @code{#t} to continue, or any
1224 other value to stop.
1225
1226 @var{filename} is the item visited, being @var{startname} plus a
1227 further path and the name of the item. @var{statinfo} is the return
1228 from @code{stat} on @var{filename} (@pxref{File System}).
1229 @var{basename} it the item name without any path. @var{level} is an
1230 integer giving the directory nesting level, starting from 0 for the
1231 contents of @var{startname} (or that item itself if it's a file).
1232 @var{flag} is one of the following symbols,
1233
1234 @table @code
1235 @item regular
1236 @var{filename} is a file, this includes special files like devices,
1237 named pipes, etc.
1238
1239 @item directory
1240 @var{filename} is a directory.
1241
1242 @item directory-processed
1243 @var{filename} is a directory, and its contents have all been visited.
1244 This flag is given instead of @code{directory} when the @code{depth}
1245 option below is used.
1246
1247 @item invalid-stat
1248 An error occurred when applying @code{stat} to @var{filename}, so
1249 nothing is known about it. @var{statinfo} is @code{#f} in this case.
1250
1251 @item directory-not-readable
1252 @var{filename} is a directory, but one which cannot be read and hence
1253 won't be recursed into.
1254
1255 @item symlink
1256 @var{filename} is a dangling symbolic link. Symbolic links are
1257 normally followed and their target reported, the link itself is
1258 reported if the target does not exist.
1259
1260 Under the @code{physical} option described below, @code{symlink} is
1261 instead given for symbolic links whose target does exist.
1262
1263 @item stale-symlink
1264 Under the @code{physical} option described below, this indicates
1265 @var{filename} is a dangling symbolic link, meaning its target does
1266 not exist. Without the @code{physical} option plain @code{symlink}
1267 indicates this.
1268 @end table
1269
1270 The following optional arguments can be given to modify the way
1271 @code{nftw} works. Each is passed as a symbol (and @code{hash-size}
1272 takes a following integer value).
1273
1274 @table @asis
1275 @item @code{chdir}
1276 Change to the directory containing the item before calling @var{proc}.
1277 When @code{nftw} returns the original current directory is restored.
1278
1279 Under this option, generally the @var{basename} parameter should be
1280 used to access the item in each @var{proc} call. The @var{filename}
1281 parameter still has a path as normal and this will only be valid if
1282 the @var{startname} directory was absolute.
1283
1284 @item @code{depth}
1285 Visit files ``depth first'', meaning @var{proc} is called for the
1286 contents of each directory before it's called for the directory
1287 itself. Normally a directory is reported first, then its contents.
1288
1289 Under this option, the @var{flag} to @var{proc} for a directory is
1290 @code{directory-processed} instead of @code{directory}.
1291
1292 @item @code{hash-size @var{n}}
1293 Set the size of the hash table used to track items already visited.
1294 (@pxref{Hash Table Reference})
1295
1296 @item @code{mount}
1297 Don't cross a mount point, meaning only visit items on the same
1298 filesystem as @var{startname}. (Ie.@: the same @code{stat:dev}.)
1299
1300 @item @code{physical}
1301 Don't follow symbolic links, instead report them to @var{proc} as
1302 @code{symlink}, and report dangling links as @code{stale-symlink}.
1303 @end table
1304
1305 The return value from @code{nftw} is @code{#t} if it ran to
1306 completion, or otherwise the non-@code{#t} value from @var{proc} which
1307 caused the stop.
1308
1309 @c For reference, one reason not to esacpe is that the current
1310 @c directory is not saved and restored with dynamic-wind. Maybe
1311 @c changing that would be enough to allow escaping.
1312 @c
1313 In the current implementation, returning non-@code{#t} from @var{proc}
1314 is the only valid way to terminate @code{ftw}. @var{proc} must not
1315 use @code{throw} or similar to escape.
1316 @end defun
1317
1318
1319 @node Queues
1320 @section Queues
1321 @cindex Queues
1322 @tindex Queues
1323
1324 @noindent
1325 The functions in this section are provided by
1326
1327 @example
1328 (use-modules (ice-9 q))
1329 @end example
1330
1331 This module implements queues holding arbitrary scheme objects and
1332 designed for efficient first-in / first-out operations.
1333
1334 @code{make-q} creates a queue, and objects are entered and removed
1335 with @code{enq!} and @code{deq!}. @code{q-push!} and @code{q-pop!}
1336 can be used too, treating the front of the queue like a stack.
1337
1338 @sp 1
1339
1340 @deffn {Scheme Procedure} make-q
1341 Return a new queue.
1342 @end deffn
1343
1344 @deffn {Scheme Procedure} q? obj
1345 Return @code{#t} if @var{obj} is a queue, or @code{#f} if not.
1346
1347 Note that queues are not a distinct class of objects but are
1348 implemented with cons cells. For that reason certain list structures
1349 can get @code{#t} from @code{q?}.
1350 @end deffn
1351
1352 @deffn {Scheme Procedure} enq! q obj
1353 Add @var{obj} to the rear of @var{q}, and return @var{q}.
1354 @end deffn
1355
1356 @deffn {Scheme Procedure} deq! q
1357 @deffnx {Scheme Procedure} q-pop! q
1358 Remove and return the front element from @var{q}. If @var{q} is
1359 empty, a @code{q-empty} exception is thrown.
1360
1361 @code{deq!} and @code{q-pop!} are the same operation, the two names
1362 just let an application match @code{enq!} with @code{deq!}, or
1363 @code{q-push!} with @code{q-pop!}.
1364 @end deffn
1365
1366 @deffn {Scheme Procedure} q-push! q obj
1367 Add @var{obj} to the front of @var{q}, and return @var{q}.
1368 @end deffn
1369
1370 @deffn {Scheme Procedure} q-length q
1371 Return the number of elements in @var{q}.
1372 @end deffn
1373
1374 @deffn {Scheme Procedure} q-empty? q
1375 Return true if @var{q} is empty.
1376 @end deffn
1377
1378 @deffn {Scheme Procedure} q-empty-check q
1379 Throw a @code{q-empty} exception if @var{q} is empty.
1380 @end deffn
1381
1382 @deffn {Scheme Procedure} q-front q
1383 Return the first element of @var{q} (without removing it). If @var{q}
1384 is empty, a @code{q-empty} exception is thrown.
1385 @end deffn
1386
1387 @deffn {Scheme Procedure} q-rear q
1388 Return the last element of @var{q} (without removing it). If @var{q}
1389 is empty, a @code{q-empty} exception is thrown.
1390 @end deffn
1391
1392 @deffn {Scheme Procedure} q-remove! q obj
1393 Remove all occurences of @var{obj} from @var{q}, and return @var{q}.
1394 @var{obj} is compared to queue elements using @code{eq?}.
1395 @end deffn
1396
1397 @sp 1
1398 @cindex @code{q-empty}
1399 The @code{q-empty} exceptions described above are thrown just as
1400 @code{(throw 'q-empty)}, there's no message etc like an error throw.
1401
1402 A queue is implemented as a cons cell, the @code{car} containing a
1403 list of queued elements, and the @code{cdr} being the last cell in
1404 that list (for ease of enqueuing).
1405
1406 @example
1407 (@var{list} . @var{last-cell})
1408 @end example
1409
1410 @noindent
1411 If the queue is empty, @var{list} is the empty list and
1412 @var{last-cell} is @code{#f}.
1413
1414 An application can directly access the queue list if desired, for
1415 instance to search the elements or to insert at a specific point.
1416
1417 @deffn {Scheme Procedure} sync-q! q
1418 Recompute the @var{last-cell} field in @var{q}.
1419
1420 All the operations above maintain @var{last-cell} as described, so
1421 normally there's no need for @code{sync-q!}. But if an application
1422 modifies the queue @var{list} then it must either maintain
1423 @var{last-cell} similarly, or call @code{sync-q!} to recompute it.
1424 @end deffn
1425
1426
1427 @c Local Variables:
1428 @c TeX-master: "guile.texi"
1429 @c End: