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
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">
<erlref>
<header>
<copyright>
<year>1996</year><year>2014</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
The contents of this file are subject to the Erlang Public License,
Version 1.1, (the "License"); you may not use this file except in
compliance with the License. You should have received a copy of the
Erlang Public License along with this software. If not, it can be
retrieved online at http://www.erlang.org/.
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
the License for the specific language governing rights and limitations
under the License.
</legalnotice>
<title>io_lib</title>
<prepared></prepared>
<docno></docno>
<date></date>
<rev></rev>
</header>
<module>io_lib</module>
<modulesummary>IO Library Functions</modulesummary>
<description>
<p>This module contains functions for converting to and from
strings (lists of characters). They are used for implementing the
functions in the <c>io</c> module. There is no guarantee that the
character lists returned from some of the functions are flat,
they can be deep lists. <c>lists:flatten/1</c> can be used for
flattening deep lists.</p>
</description>
<datatypes>
<datatype>
<name name="chars"/>
</datatype>
<datatype>
<name name="continuation"/>
<desc><p>A continuation as returned by <seealso marker="#fread/3"><c>fread/3</c></seealso>.</p>
</desc>
</datatype>
<datatype>
<name name="depth"/>
</datatype>
<datatype>
<name name="fread_error"/>
</datatype>
<datatype>
<name name="fread_item"/>
</datatype>
<datatype>
<name name="latin1_string"/>
</datatype>
<datatype>
<name name="format_spec"/>
<desc><p>Description:</p>
<list type="bulleted">
<item><p><c>control_char</c> is the type of control
sequence: <c>$P</c>, <c>$w</c>, and so on;</p>
</item>
<item><p><c>args</c> is a list of the arguments used by the
control sequence, or an empty list if the control sequence
does not take any arguments;</p>
</item>
<item><p><c>width</c> is the field width;</p>
</item>
<item><p><c>adjust</c> is the adjustment;</p>
</item>
<item><p><c>precision</c> is the precision of the printed
argument;</p>
</item>
<item><p><c>pad_char</c> is the padding character;</p>
</item>
<item><p><c>encoding</c> is set to <c>true</c> if the translation
modifier <c>t</c> is present;</p>
</item>
<item><p><c>strings</c> is set to <c>false</c> if the modifier
<c>l</c> is present.</p>
</item>
</list>
</desc>
</datatype>
</datatypes>
<funcs>
<func>
<name name="nl" arity="0"/>
<fsummary>Write a newline</fsummary>
<desc>
<p>Returns a character list which represents a new line
character.</p>
</desc>
</func>
<func>
<name name="write" arity="1"/>
<name name="write" arity="2"/>
<fsummary>Write a term</fsummary>
<desc>
<p>Returns a character list which represents <c><anno>Term</anno></c>. The
<c><anno>Depth</anno></c> (-1) argument controls the depth of the
structures written. When the specified depth is reached,
everything below this level is replaced by "...". For
example:</p>
<pre>
1> <input>lists:flatten(io_lib:write({1,[2],[3],[4,5],6,7,8,9})).</input>
"{1,[2],[3],[4,5],6,7,8,9}"
2> <input>lists:flatten(io_lib:write({1,[2],[3],[4,5],6,7,8,9}, 5)).</input>
"{1,[2],[3],[...],...}"</pre>
</desc>
</func>
<func>
<name name="print" arity="1"/>
<name name="print" arity="4"/>
<fsummary>Pretty print a term</fsummary>
<desc>
<p>Also returns a list of characters which represents
<c><anno>Term</anno></c>, but breaks representations which are longer than
one line into many lines and indents each line sensibly. It
also tries to detect and output lists of printable characters
as strings. <c><anno>Column</anno></c> is the starting column (1),
<c><anno>LineLength</anno></c> the maximum line length (80), and
<c><anno>Depth</anno></c> (-1) the maximum print depth.</p>
</desc>
</func>
<func>
<name name="fwrite" arity="2"/>
<name name="format" arity="2"/>
<fsummary>Write formatted output</fsummary>
<desc>
<p>Returns a character list which represents <c><anno>Data</anno></c>
formatted in accordance with <c><anno>Format</anno></c>. See
<seealso marker="io#fwrite/1">io:fwrite/1,2,3</seealso> for a detailed
description of the available formatting options. A fault is
generated if there is an error in the format string or
argument list.</p>
<p>If (and only if) the Unicode translation modifier is used
in the format string (i.e. ~ts or ~tc), the resulting list
may contain characters beyond the ISO-latin-1 character
range (in other words, numbers larger than 255). If so, the
result is not an ordinary Erlang string(), but can well be
used in any context where Unicode data is allowed.</p>
</desc>
</func>
<func>
<name name="fread" arity="2"/>
<fsummary>Read formatted input</fsummary>
<desc>
<p>Tries to read <c><anno>String</anno></c> in accordance with the control
sequences in <c><anno>Format</anno></c>. See
<seealso marker="io#fread/3">io:fread/3</seealso> for a detailed
description of the available formatting options. It is
assumed that <c><anno>String</anno></c> contains whole lines. It returns:</p>
<taglist>
<tag><c>{ok, <anno>InputList</anno>, <anno>LeftOverChars</anno>}</c></tag>
<item>
<p>The string was read. <c><anno>InputList</anno></c> is the list of
successfully matched and read items, and
<c><anno>LeftOverChars</anno></c> are the input characters not used.</p>
</item>
<tag><c>{more, <anno>RestFormat</anno>, <anno>Nchars</anno>, <anno>InputStack</anno>}</c></tag>
<item>
<p>The string was read, but more input is needed in order
to complete the original format string. <c><anno>RestFormat</anno></c>
is the remaining format string, <c><anno>Nchars</anno></c> the number
of characters scanned, and <c><anno>InputStack</anno></c> is the
reversed list of inputs matched up to that point.</p>
</item>
<tag><c>{error, <anno>What</anno>}</c></tag>
<item>
<p>The read operation failed and the parameter <c><anno>What</anno></c>
gives a hint about the error.</p>
</item>
</taglist>
<p>Example:</p>
<pre>
3> <input>io_lib:fread("~f~f~f", "15.6 17.3e-6 24.5").</input>
{ok,[15.6,1.73e-5,24.5],[]}</pre>
</desc>
</func>
<func>
<name name="fread" arity="3"/>
<fsummary>Re-entrant formatted reader</fsummary>
<desc>
<p>This is the re-entrant formatted reader. The continuation of
the first call to the functions must be <c>[]</c>. Refer to
Armstrong, Virding, Williams, 'Concurrent Programming in
Erlang', Chapter 13 for a complete description of how the
re-entrant input scheme works.</p>
<p>The function returns:</p>
<taglist>
<tag><c>{done, <anno>Result</anno>, <anno>LeftOverChars</anno>}</c></tag>
<item>
<p>The input is complete. The result is one of the
following:</p>
<taglist>
<tag><c>{ok, <anno>InputList</anno>}</c></tag>
<item>
<p>The string was read. <c><anno>InputList</anno></c> is the list of
successfully matched and read items, and
<c><anno>LeftOverChars</anno></c> are the remaining characters.</p>
</item>
<tag><c>eof</c></tag>
<item>
<p>End of file has been encountered.
<c><anno>LeftOverChars</anno></c> are the input characters not
used.</p>
</item>
<tag><c>{error, <anno>What</anno>}</c></tag>
<item>
<p>An error occurred and the parameter <c><anno>What</anno></c> gives
a hint about the error.</p>
</item>
</taglist>
</item>
<tag><c>{more, <anno>Continuation</anno>}</c></tag>
<item>
<p>More data is required to build a term.
<c><anno>Continuation</anno></c> must be passed to <c>fread/3</c>,
when more data becomes available.</p>
</item>
</taglist>
</desc>
</func>
<func>
<name name="write_atom" arity="1"/>
<fsummary>Write an atom</fsummary>
<desc>
<p>Returns the list of characters needed to print the atom
<c><anno>Atom</anno></c>.</p>
</desc>
</func>
<func>
<name name="write_string" arity="1"/>
<fsummary>Write a string</fsummary>
<desc>
<p>Returns the list of characters needed to print
<c><anno>String</anno></c> as a string.</p>
</desc>
</func>
<func>
<name name="write_string_as_latin1" arity="1"/>
<fsummary>Write a string</fsummary>
<desc>
<p>Returns the list of characters needed to print
<c><anno>String</anno></c> as a string. Non-Latin-1
characters are escaped.</p>
</desc>
</func>
<func>
<name name="write_latin1_string" arity="1"/>
<fsummary>Write an ISO-latin-1 string</fsummary>
<desc>
<p>Returns the list of characters needed to print
<c><anno>Latin1String</anno></c> as a string.</p>
</desc>
</func>
<func>
<name name="write_char" arity="1"/>
<fsummary>Write a character</fsummary>
<desc>
<p>Returns the list of characters needed to print a character
constant in the Unicode character set.</p>
</desc>
</func>
<func>
<name name="write_char_as_latin1" arity="1"/>
<fsummary>Write a character</fsummary>
<desc>
<p>Returns the list of characters needed to print a character
constant in the Unicode character set. Non-Latin-1 characters
are escaped.</p>
</desc>
</func>
<func>
<name name="write_latin1_char" arity="1"/>
<fsummary>Write an ISO-latin-1 character</fsummary>
<desc>
<p>Returns the list of characters needed to print a character
constant in the ISO-latin-1 character set.</p>
</desc>
</func>
<func>
<name name="scan_format" arity="2"/>
<fsummary>Parse all control sequences in the format string</fsummary>
<desc>
<p>Returns a list corresponding to the given format string,
where control sequences have been replaced with
corresponding tuples. This list can be passed to <seealso
marker="#build_text/1">io_lib:build_text/1</seealso> to have
the same effect as <c>io_lib:format(Format, Args)</c>, or to
<seealso
marker="#unscan_format/1">io_lib:unscan_format/1</seealso>
in order to get the corresponding pair of <c>Format</c> and
<c>Args</c> (with every <c>*</c> and corresponding argument
expanded to numeric values).</p>
<p>A typical use of this function is to replace unbounded-size
control sequences like <c>~w</c> and <c>~p</c> with the
depth-limited variants <c>~W</c> and <c>~P</c> before
formatting to text, e.g. in a logger.</p>
</desc>
</func>
<func>
<name name="unscan_format" arity="1"/>
<fsummary>Revert a pre-parsed format list to a plain character list
and a list of arguments</fsummary>
<desc>
<p>See <seealso
marker="#scan_format/2">io_lib:scan_format/2</seealso> for
details.</p>
</desc>
</func>
<func>
<name name="build_text" arity="1"/>
<fsummary>Build the output text for a pre-parsed format list</fsummary>
<desc>
<p>See <seealso
marker="#scan_format/2">io_lib:scan_format/2</seealso> for
details.</p>
</desc>
</func>
<func>
<name name="indentation" arity="2"/>
<fsummary>Indentation after printing string</fsummary>
<desc>
<p>Returns the indentation if <c><anno>String</anno></c> has been printed,
starting at <c><anno>StartIndent</anno></c>.</p>
</desc>
</func>
<func>
<name name="char_list" arity="1"/>
<fsummary>Test for a list of characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of
characters in the Unicode range, otherwise it returns <c>false</c>.</p>
</desc>
</func>
<func>
<name name="latin1_char_list" arity="1"/>
<fsummary>Test for a list of ISO-latin-1 characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of
characters in the ISO-latin-1 range, otherwise it returns <c>false</c>.</p>
</desc>
</func>
<func>
<name name="deep_char_list" arity="1"/>
<fsummary>Test for a deep list of characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a, possibly deep, list
of characters in the Unicode range, otherwise it returns <c>false</c>.</p>
</desc>
</func>
<func>
<name name="deep_latin1_char_list" arity="1"/>
<fsummary>Test for a deep list of characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a, possibly deep, list
of characters in the ISO-latin-1 range, otherwise it returns <c>false</c>.</p>
</desc>
</func>
<func>
<name name="printable_list" arity="1"/>
<fsummary>Test for a list of printable characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of
printable characters, otherwise it returns <c>false</c>.</p>
<p>What is a printable character in this case is determined by the
<c>+pc</c> start up flag to the Erlang VM. See
<seealso marker="io#printable_range/0">io:printable_range/0</seealso>
and <seealso marker="erts:erl#erl">erl(1)</seealso>.</p>
</desc>
</func>
<func>
<name name="printable_latin1_list" arity="1"/>
<fsummary>Test for a list of printable ISO-latin-1 characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of
printable ISO-latin-1 characters, otherwise it returns <c>false</c>.</p>
</desc>
</func>
<func>
<name name="printable_unicode_list" arity="1"/>
<fsummary>Test for a list of printable Unicode characters</fsummary>
<desc>
<p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of
printable Unicode characters, otherwise it returns <c>false</c>.</p>
</desc>
</func>
</funcs>
</erlref>
|