aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/io_lib.xml
blob: a3df2897ac0dc2a0afd74e3b3c1cca4a48c2b9bb (plain) (blame)
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
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1996</year><year>2018</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    
    </legalnotice>

    <title>io_lib</title>
    <prepared></prepared>
    <docno></docno>
    <date></date>
    <rev></rev>
  </header>
  <module>io_lib</module>
  <modulesummary>I/O 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 <seealso marker="io"><c>io</c></seealso> module.
      There is no guarantee that the
      character lists returned from some of the functions are flat,
      they can be deep lists. Function
      <seealso marker="lists#flatten/1"><c>lists:flatten/1</c></seealso>
      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="chars_limit"/>
    </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>Where:</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 translation
          modifier <c>t</c> is present.</p>
        </item>
        <item><p><c>strings</c> is set to <c>false</c> if modifier
          <c>l</c> is present.</p>
        </item>
      </list>
      </desc>
    </datatype>
  </datatypes>

  <funcs>
    <func>
      <name name="build_text" arity="1"/>
      <fsummary>Build the output text for a preparsed format list.</fsummary>
      <desc>
        <p>For details, see
          <seealso marker="#scan_format/2"><c>scan_format/2</c></seealso>.</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 <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 <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
          <c>false</c>.</p>
      </desc>
    </func>

    <func>
      <name name="format" arity="2"/>
      <name name="fwrite" arity="2"/>
      <fsummary>Write formatted output.</fsummary>
      <desc>
        <p>Returns a character list that represents <c><anno>Data</anno></c>
          formatted in accordance with <c><anno>Format</anno></c>.
          For a detailed description of the available formatting options, see
          <seealso marker="io#fwrite/1"><c>io:fwrite/1,2,3</c></seealso>.
          If the format string or argument list contains an error, a fault is
          generated.</p>
        <p>If and only if the Unicode translation modifier is used in the
          format string (that is, <c>~ts</c> or <c>~tc</c>), the resulting list
          can contain characters beyond the ISO Latin-1 character range
          (that is, numbers &gt; 255). If so, the
          result is still an ordinary Erlang <c>string()</c>, and can well be
          used in any context where Unicode data is allowed.</p>
      </desc>
    </func>

    <func>
      <name name="format" arity="3"/>
      <name name="fwrite" arity="3"/>
      <fsummary>Write formatted output.</fsummary>
      <desc>
        <p>Returns a character list that represents <c><anno>Data</anno></c>
          formatted in accordance with <c><anno>Format</anno></c> in
          the same way as
          <seealso marker="#fwrite/2"><c>fwrite/2</c></seealso> and
          <seealso marker="#format/2"><c>format/2</c></seealso>,
          but takes an extra argument, a list of options.</p>
          <p>Valid option:</p>
          <taglist>
            <tag><c>{chars_limit, <anno>CharsLimit</anno>}</c></tag>
            <item>
              <p>A soft limit on the number of characters returned.
                When the number of characters is reached, remaining
                structures are replaced by "<c>...</c>".
                <c><anno>CharsLimit</anno></c> defaults to -1, which
		means no limit on the number of characters returned.</p>
            </item>
          </taglist>
      </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>.
          For a detailed description of the available formatting options, see
          <seealso marker="io#fread/3"><c>io:fread/3</c></seealso>. It is
          assumed that <c><anno>String</anno></c> contains whole lines.</p>
        <p>The function 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 to complete the
              original format string. <c><anno>RestFormat</anno></c> is the
              remaining format string, <c><anno>Nchars</anno></c> is 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 parameter <c><anno>What</anno></c>
              gives a hint about the error.</p>
          </item>
        </taglist>
        <p><em>Example:</em></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>. For a complete
          description of how the re-entrant input scheme works, see
          Armstrong, Virding, Williams: 'Concurrent Programming in
          Erlang', Chapter 13.</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 was 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 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="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="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 <c>false</c>.</p>
      </desc>
    </func>

    <func>
      <name name="nl" arity="0"/>
      <fsummary>Write a newline.</fsummary>
      <desc>
        <p>Returns a character list that represents a new line character.</p>
      </desc>
    </func>

    <func>
      <name name="print" arity="1"/>
      <name name="print" arity="4"/>
      <fsummary>Pretty print a term.</fsummary>
      <desc>
        <p>Returns a list of characters that represents
          <c><anno>Term</anno></c>, but breaks representations longer
          than one line into many lines and indents each line sensibly.
          Also tries to detect and output lists of printable characters
          as strings.</p>
        <list type="bulleted">
          <item><c><anno>Column</anno></c> is the starting column; defaults
            to 1.</item>
          <item><c><anno>LineLength</anno></c> is the maximum line length;
            defaults to 80.</item>
          <item><c><anno>Depth</anno></c> is the maximum print depth;
            defaults to -1, which means no limitation.</item>
        </list>
      </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 <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 <c>false</c>.</p>
        <p>What is a printable character in this case is determined by
          startup flag <c>+pc</c> to the Erlang VM; see
          <seealso marker="io#printable_range/0">
          <c>io:printable_range/0</c></seealso> and 
          <seealso marker="erts:erl"><c>erl(1)</c></seealso>.</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 <c>false</c>.</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 specified format string,
          where control sequences have been replaced with
          corresponding tuples. This list can be passed to:</p>
        <list type="bulleted">
          <item>
            <p><seealso marker="#build_text/1"><c>build_text/1</c></seealso>
              to have the same effect as <c>format(Format, Args)</c></p>
          </item>
          <item>
            <p><seealso marker="#unscan_format/1">
              <c>unscan_format/1</c></seealso> 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>
          </item>
        </list>
        <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 in, for example, a logger.</p>
      </desc>
    </func>

    <func>
      <name name="unscan_format" arity="1"/>
      <fsummary>Revert a preparsed format list to a plain character list
        and a list of arguments.</fsummary>
      <desc>
        <p>For details, see
          <seealso marker="#scan_format/2"><c>scan_format/2</c></seealso>.</p>
      </desc>
    </func>

    <func>
      <name name="write" arity="1"/>
      <name name="write" arity="2" clause_i="1"/>
      <name name="write" arity="2" clause_i="2"/>
      <fsummary>Write a term.</fsummary>
      <desc>
        <p>Returns a character list that represents <c><anno>Term</anno></c>.
          Option <c><anno>Depth</anno></c> controls the depth of the
          structures written. When the specified depth is reached,
          everything below this level is replaced by "<c>...</c>".
          <c><anno>Depth</anno></c> defaults to -1, which means
          no limitation. Option <c><anno>CharsLimit</anno></c> puts a
          soft limit on the number of characters returned. When the
          number of characters is reached, remaining structures are
          replaced by "<c>...</c>". <c><anno>CharsLimit</anno></c>
          defaults to -1, which means no limit on the number of
          characters returned.</p>
        <p><em>Example:</em></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],[...],...}"
3> <input>lists:flatten(io_lib:write({[1,2,3],[4,5],6,7,8,9}, [{chars_limit,20}])).</input>
"{[1,2|...],[4|...],...}"</pre>
      </desc>
    </func>

    <func>
      <name name="write_atom" arity="1"/>
      <fsummary>Write an atom.</fsummary>
      <desc>
        <p>Returns the list of characters needed to print atom
          <c><anno>Atom</anno></c>.</p>
      </desc>
    </func>

    <func>
      <name name="write_atom_as_latin1" arity="1"/>
      <fsummary>Write an atom.</fsummary>
      <desc>
        <p>Returns the list of characters needed to print atom
          <c><anno>Atom</anno></c>. Non-Latin-1 characters
          are escaped.</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="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_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>
  </funcs>
</erlref>