Remove incorrect comment in read.c
[bpt/guile.git] / libguile / ports.c
CommitLineData
f4bc4e59 1/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004,
b7e64f8b 2 * 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
f4bc4e59 3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
0f2d19dd 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0f2d19dd 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
1bbd0b84 19
1bbd0b84 20
0f2d19dd 21\f
d68fee48
JB
22/* Headers. */
23
2b829bbb
KR
24#define _LARGEFILE64_SOURCE /* ask for stat64 etc */
25
dbb605f5 26#ifdef HAVE_CONFIG_H
bd515f37
RB
27# include <config.h>
28#endif
29
0f2d19dd 30#include <stdio.h>
e6e2e95a 31#include <errno.h>
8ab3d8a0 32#include <fcntl.h> /* for chsize on mingw */
b5cb4464 33#include <assert.h>
f4bc4e59 34#include <iconv.h>
889975e5
MG
35#include <uniconv.h>
36#include <unistr.h>
37#include <striconveh.h>
e6e2e95a 38
fca43887
LC
39#include <assert.h>
40
a0599745 41#include "libguile/_scm.h"
4e047c3e 42#include "libguile/async.h"
8269ba5b 43#include "libguile/deprecation.h"
f0942910 44#include "libguile/eval.h"
8ab3d8a0 45#include "libguile/fports.h" /* direct access for seek and truncate */
9511876f 46#include "libguile/goops.h"
a0599745
MD
47#include "libguile/smob.h"
48#include "libguile/chars.h"
185e369a 49#include "libguile/dynwind.h"
0f2d19dd 50
a0599745 51#include "libguile/keywords.h"
5dbc6c06 52#include "libguile/hashtab.h"
a0599745
MD
53#include "libguile/root.h"
54#include "libguile/strings.h"
b42170a4 55#include "libguile/mallocs.h"
a0599745
MD
56#include "libguile/validate.h"
57#include "libguile/ports.h"
3a5fb14d 58#include "libguile/vectors.h"
5dbc6c06 59#include "libguile/weaks.h"
9de87eea 60#include "libguile/fluids.h"
889975e5 61#include "libguile/eq.h"
0f2d19dd 62
bd9e24b3
GH
63#ifdef HAVE_STRING_H
64#include <string.h>
65#endif
66
ec65f5da
MV
67#ifdef HAVE_IO_H
68#include <io.h>
69#endif
70
0f2d19dd
JB
71#ifdef HAVE_UNISTD_H
72#include <unistd.h>
73#endif
74
95b88819
GH
75#ifdef HAVE_SYS_IOCTL_H
76#include <sys/ioctl.h>
77#endif
d68fee48 78
8ab3d8a0
KR
79/* Mingw (version 3.4.5, circa 2006) has ftruncate as an alias for chsize
80 already, but have this code here in case that wasn't so in past versions,
81 or perhaps to help other minimal DOS environments.
82
83 gnulib ftruncate.c has code using fcntl F_CHSIZE and F_FREESP, which
84 might be possibilities if we've got other systems without ftruncate. */
85
56a3dcd4 86#if defined HAVE_CHSIZE && ! defined HAVE_FTRUNCATE
82893676 87#define ftruncate(fd, size) chsize (fd, size)
8ab3d8a0
KR
88#undef HAVE_FTRUNCATE
89#define HAVE_FTRUNCATE 1
82893676
MG
90#endif
91
0f2d19dd 92\f
d68fee48 93/* The port kind table --- a dynamically resized array of port types. */
0f2d19dd
JB
94
95
96/* scm_ptobs scm_numptob
5dbc6c06 97 * implement a dynamically resized array of ptob records.
0f2d19dd
JB
98 * Indexes into this table are used when generating type
99 * tags for smobjects (if you know a tag you can get an index and conversely).
100 */
dd3a26f3
AW
101scm_t_ptob_descriptor *scm_ptobs = NULL;
102long scm_numptob = 0;
0f2d19dd 103
ee149d03 104/* GC marker for a port with stream of SCM type. */
0f2d19dd 105SCM
a284e297 106scm_markstream (SCM ptr)
0f2d19dd
JB
107{
108 int openp;
f9a64404 109 openp = SCM_CELL_WORD_0 (ptr) & SCM_OPN;
0f2d19dd 110 if (openp)
74a16888 111 return SCM_PACK (SCM_STREAM (ptr));
0f2d19dd
JB
112 else
113 return SCM_BOOL_F;
114}
115
f12733c9 116/*
f12733c9 117 * We choose to use an interface similar to the smob interface with
affc96b5 118 * fill_input and write as standard fields, passed to the port
f12733c9
MD
119 * type constructor, and optional fields set by setters.
120 */
121
70df8af6 122static void
e81d98ec 123flush_port_default (SCM port SCM_UNUSED)
70df8af6
GH
124{
125}
126
127static void
e81d98ec 128end_input_default (SCM port SCM_UNUSED, int offset SCM_UNUSED)
70df8af6
GH
129{
130}
0f2d19dd 131
92c2555f 132scm_t_bits
f12733c9 133scm_make_port_type (char *name,
affc96b5 134 int (*fill_input) (SCM port),
8aa011a1 135 void (*write) (SCM port, const void *data, size_t size))
0f2d19dd
JB
136{
137 char *tmp;
0953b549 138 if (SCM_I_MAX_PORT_TYPE_COUNT - 1 <= scm_numptob)
0f2d19dd 139 goto ptoberr;
9de87eea 140 SCM_CRITICAL_SECTION_START;
fca43887
LC
141 tmp = (char *) scm_gc_realloc ((char *) scm_ptobs,
142 scm_numptob * sizeof (scm_t_ptob_descriptor),
143 (1 + scm_numptob)
144 * sizeof (scm_t_ptob_descriptor),
145 "port-type");
0f2d19dd
JB
146 if (tmp)
147 {
92c2555f 148 scm_ptobs = (scm_t_ptob_descriptor *) tmp;
affc96b5 149
f12733c9
MD
150 scm_ptobs[scm_numptob].name = name;
151 scm_ptobs[scm_numptob].mark = 0;
3051344b 152 scm_ptobs[scm_numptob].free = NULL;
f12733c9
MD
153 scm_ptobs[scm_numptob].print = scm_port_print;
154 scm_ptobs[scm_numptob].equalp = 0;
affc96b5
GH
155 scm_ptobs[scm_numptob].close = 0;
156
157 scm_ptobs[scm_numptob].write = write;
70df8af6 158 scm_ptobs[scm_numptob].flush = flush_port_default;
affc96b5 159
70df8af6 160 scm_ptobs[scm_numptob].end_input = end_input_default;
affc96b5
GH
161 scm_ptobs[scm_numptob].fill_input = fill_input;
162 scm_ptobs[scm_numptob].input_waiting = 0;
163
f12733c9 164 scm_ptobs[scm_numptob].seek = 0;
affc96b5
GH
165 scm_ptobs[scm_numptob].truncate = 0;
166
0f2d19dd
JB
167 scm_numptob++;
168 }
9de87eea 169 SCM_CRITICAL_SECTION_END;
0f2d19dd 170 if (!tmp)
2500356c
DH
171 {
172 ptoberr:
173 scm_memory_error ("scm_make_port_type");
174 }
f12733c9 175 /* Make a class object if Goops is present */
63385df2 176 if (SCM_UNPACK (scm_port_class[0]) != 0)
f12733c9 177 scm_make_port_classes (scm_numptob - 1, SCM_PTOBNAME (scm_numptob - 1));
0f2d19dd
JB
178 return scm_tc7_port + (scm_numptob - 1) * 256;
179}
180
f12733c9 181void
23f2b9a3 182scm_set_port_mark (scm_t_bits tc, SCM (*mark) (SCM))
f12733c9
MD
183{
184 scm_ptobs[SCM_TC2PTOBNUM (tc)].mark = mark;
185}
186
187void
23f2b9a3 188scm_set_port_free (scm_t_bits tc, size_t (*free) (SCM))
f12733c9
MD
189{
190 scm_ptobs[SCM_TC2PTOBNUM (tc)].free = free;
191}
192
193void
23f2b9a3 194scm_set_port_print (scm_t_bits tc, int (*print) (SCM exp, SCM port,
f12733c9
MD
195 scm_print_state *pstate))
196{
197 scm_ptobs[SCM_TC2PTOBNUM (tc)].print = print;
198}
199
200void
23f2b9a3 201scm_set_port_equalp (scm_t_bits tc, SCM (*equalp) (SCM, SCM))
f12733c9
MD
202{
203 scm_ptobs[SCM_TC2PTOBNUM (tc)].equalp = equalp;
204}
205
31703ab8 206void
23f2b9a3 207scm_set_port_flush (scm_t_bits tc, void (*flush) (SCM port))
31703ab8 208{
affc96b5 209 scm_ptobs[SCM_TC2PTOBNUM (tc)].flush = flush;
31703ab8
GH
210}
211
f12733c9 212void
23f2b9a3 213scm_set_port_end_input (scm_t_bits tc, void (*end_input) (SCM port, int offset))
f12733c9 214{
affc96b5 215 scm_ptobs[SCM_TC2PTOBNUM (tc)].end_input = end_input;
f12733c9
MD
216}
217
218void
23f2b9a3 219scm_set_port_close (scm_t_bits tc, int (*close) (SCM))
f12733c9 220{
affc96b5 221 scm_ptobs[SCM_TC2PTOBNUM (tc)].close = close;
f12733c9
MD
222}
223
224void
f1ce9199
LC
225scm_set_port_seek (scm_t_bits tc,
226 scm_t_off (*seek) (SCM, scm_t_off, int))
f12733c9
MD
227{
228 scm_ptobs[SCM_TC2PTOBNUM (tc)].seek = seek;
229}
230
231void
f1ce9199 232scm_set_port_truncate (scm_t_bits tc, void (*truncate) (SCM, scm_t_off))
f12733c9 233{
affc96b5 234 scm_ptobs[SCM_TC2PTOBNUM (tc)].truncate = truncate;
f12733c9
MD
235}
236
237void
23f2b9a3 238scm_set_port_input_waiting (scm_t_bits tc, int (*input_waiting) (SCM))
f12733c9 239{
affc96b5 240 scm_ptobs[SCM_TC2PTOBNUM (tc)].input_waiting = input_waiting;
f12733c9
MD
241}
242
0f2d19dd 243\f
0f2d19dd 244
3b3b36dd 245SCM_DEFINE (scm_char_ready_p, "char-ready?", 0, 1, 0,
1e6808ea
MG
246 (SCM port),
247 "Return @code{#t} if a character is ready on input @var{port}\n"
248 "and return @code{#f} otherwise. If @code{char-ready?} returns\n"
249 "@code{#t} then the next @code{read-char} operation on\n"
250 "@var{port} is guaranteed not to hang. If @var{port} is a file\n"
251 "port at end of file then @code{char-ready?} returns @code{#t}.\n"
c2dfff19
KR
252 "\n"
253 "@code{char-ready?} exists to make it possible for a\n"
1e6808ea
MG
254 "program to accept characters from interactive ports without\n"
255 "getting stuck waiting for input. Any input editors associated\n"
256 "with such ports must make sure that characters whose existence\n"
257 "has been asserted by @code{char-ready?} cannot be rubbed out.\n"
258 "If @code{char-ready?} were to return @code{#f} at end of file,\n"
259 "a port at end of file would be indistinguishable from an\n"
c2dfff19 260 "interactive port that has no ready characters.")
1bbd0b84 261#define FUNC_NAME s_scm_char_ready_p
0f2d19dd 262{
92c2555f 263 scm_t_port *pt;
6c951427 264
0f2d19dd 265 if (SCM_UNBNDP (port))
9de87eea 266 port = scm_current_input_port ();
b2456dd4
AW
267 /* It's possible to close the current input port, so validate even in
268 this case. */
269 SCM_VALIDATE_OPINPORT (1, port);
d68fee48 270
ae4c4016
JB
271 pt = SCM_PTAB_ENTRY (port);
272
6c951427
GH
273 /* if the current read buffer is filled, or the
274 last pushed-back char has been read and the saved buffer is
275 filled, result is true. */
276 if (pt->read_pos < pt->read_end
277 || (pt->read_buf == pt->putback_buf
278 && pt->saved_read_pos < pt->saved_read_end))
0f2d19dd 279 return SCM_BOOL_T;
ee149d03
JB
280 else
281 {
92c2555f 282 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
ee149d03 283
affc96b5 284 if (ptob->input_waiting)
7888309b 285 return scm_from_bool(ptob->input_waiting (port));
ee149d03 286 else
6c951427 287 return SCM_BOOL_T;
ee149d03 288 }
0f2d19dd 289}
1bbd0b84 290#undef FUNC_NAME
0f2d19dd 291
c2da2648
GH
292/* move up to read_len chars from port's putback and/or read buffers
293 into memory starting at dest. returns the number of chars moved. */
294size_t scm_take_from_input_buffers (SCM port, char *dest, size_t read_len)
295{
92c2555f 296 scm_t_port *pt = SCM_PTAB_ENTRY (port);
c2da2648
GH
297 size_t chars_read = 0;
298 size_t from_buf = min (pt->read_end - pt->read_pos, read_len);
299
300 if (from_buf > 0)
301 {
302 memcpy (dest, pt->read_pos, from_buf);
303 pt->read_pos += from_buf;
304 chars_read += from_buf;
305 read_len -= from_buf;
306 dest += from_buf;
307 }
308
309 /* if putback was active, try the real input buffer too. */
310 if (pt->read_buf == pt->putback_buf)
311 {
312 from_buf = min (pt->saved_read_end - pt->saved_read_pos, read_len);
313 if (from_buf > 0)
314 {
315 memcpy (dest, pt->saved_read_pos, from_buf);
316 pt->saved_read_pos += from_buf;
317 chars_read += from_buf;
318 }
319 }
320 return chars_read;
321}
322
6c951427 323/* Clear a port's read buffers, returning the contents. */
a1ec6916 324SCM_DEFINE (scm_drain_input, "drain-input", 1, 0, 0,
1bbd0b84 325 (SCM port),
4a151b3d
GH
326 "This procedure clears a port's input buffers, similar\n"
327 "to the way that force-output clears the output buffer. The\n"
328 "contents of the buffers are returned as a single string, e.g.,\n"
329 "\n"
330 "@lisp\n"
331 "(define p (open-input-file ...))\n"
332 "(drain-input p) => empty string, nothing buffered yet.\n"
333 "(unread-char (read-char p) p)\n"
334 "(drain-input p) => initial chars from p, up to the buffer size.\n"
335 "@end lisp\n\n"
336 "Draining the buffers may be useful for cleanly finishing\n"
337 "buffered I/O so that the file descriptor can be used directly\n"
338 "for further input.")
1bbd0b84 339#define FUNC_NAME s_scm_drain_input
ee149d03 340{
840ae05d 341 SCM result;
3a5fb14d 342 char *data;
28a6e1b0 343 scm_t_port *pt;
c014a02e 344 long count;
ee149d03 345
34d19ef6 346 SCM_VALIDATE_OPINPORT (1, port);
28a6e1b0 347 pt = SCM_PTAB_ENTRY (port);
840ae05d 348
6c951427
GH
349 count = pt->read_end - pt->read_pos;
350 if (pt->read_buf == pt->putback_buf)
351 count += pt->saved_read_end - pt->saved_read_pos;
840ae05d 352
67a72dc1
AW
353 if (count)
354 {
190d4b0d 355 result = scm_i_make_string (count, &data, 0);
67a72dc1
AW
356 scm_take_from_input_buffers (port, data, count);
357 }
358 else
359 result = scm_nullstr;
360
840ae05d 361 return result;
ee149d03 362}
1bbd0b84 363#undef FUNC_NAME
0f2d19dd
JB
364
365\f
d68fee48 366/* Standard ports --- current input, output, error, and more(!). */
0f2d19dd 367
34297700
AW
368static SCM cur_inport_fluid = SCM_BOOL_F;
369static SCM cur_outport_fluid = SCM_BOOL_F;
370static SCM cur_errport_fluid = SCM_BOOL_F;
371static SCM cur_loadport_fluid = SCM_BOOL_F;
9de87eea 372
3b3b36dd 373SCM_DEFINE (scm_current_input_port, "current-input-port", 0, 0, 0,
e1546b65
MG
374 (),
375 "Return the current input port. This is the default port used\n"
376 "by many input procedures. Initially, @code{current-input-port}\n"
377 "returns the @dfn{standard input} in Unix and C terminology.")
1bbd0b84 378#define FUNC_NAME s_scm_current_input_port
0f2d19dd 379{
34297700 380 if (scm_is_true (cur_inport_fluid))
889975e5
MG
381 return scm_fluid_ref (cur_inport_fluid);
382 else
383 return SCM_BOOL_F;
0f2d19dd 384}
1bbd0b84 385#undef FUNC_NAME
0f2d19dd 386
3b3b36dd 387SCM_DEFINE (scm_current_output_port, "current-output-port", 0, 0, 0,
e1546b65
MG
388 (),
389 "Return the current output port. This is the default port used\n"
9401323e 390 "by many output procedures. Initially,\n"
e1546b65
MG
391 "@code{current-output-port} returns the @dfn{standard output} in\n"
392 "Unix and C terminology.")
1bbd0b84 393#define FUNC_NAME s_scm_current_output_port
0f2d19dd 394{
34297700 395 if (scm_is_true (cur_outport_fluid))
889975e5
MG
396 return scm_fluid_ref (cur_outport_fluid);
397 else
398 return SCM_BOOL_F;
0f2d19dd 399}
1bbd0b84 400#undef FUNC_NAME
0f2d19dd 401
3b3b36dd 402SCM_DEFINE (scm_current_error_port, "current-error-port", 0, 0, 0,
1bbd0b84 403 (),
b380b885
MD
404 "Return the port to which errors and warnings should be sent (the\n"
405 "@dfn{standard error} in Unix and C terminology).")
1bbd0b84 406#define FUNC_NAME s_scm_current_error_port
0f2d19dd 407{
34297700 408 if (scm_is_true (cur_errport_fluid))
889975e5
MG
409 return scm_fluid_ref (cur_errport_fluid);
410 else
411 return SCM_BOOL_F;
0f2d19dd 412}
1bbd0b84 413#undef FUNC_NAME
0f2d19dd 414
3972de76
AW
415SCM
416scm_current_warning_port (void)
417{
418 static SCM cwp_var = SCM_BOOL_F;
419
420 if (scm_is_false (cwp_var))
421 cwp_var = scm_c_private_lookup ("guile", "current-warning-port");
422
423 return scm_call_0 (scm_variable_ref (cwp_var));
424}
425
3b3b36dd 426SCM_DEFINE (scm_current_load_port, "current-load-port", 0, 0, 0,
e1546b65 427 (),
b450f070 428 "Return the current-load-port.\n"
e1546b65 429 "The load port is used internally by @code{primitive-load}.")
1bbd0b84 430#define FUNC_NAME s_scm_current_load_port
31614d8e 431{
9de87eea 432 return scm_fluid_ref (cur_loadport_fluid);
31614d8e 433}
1bbd0b84 434#undef FUNC_NAME
31614d8e 435
3b3b36dd 436SCM_DEFINE (scm_set_current_input_port, "set-current-input-port", 1, 0, 0,
1bbd0b84 437 (SCM port),
8f85c0c6
NJ
438 "@deffnx {Scheme Procedure} set-current-output-port port\n"
439 "@deffnx {Scheme Procedure} set-current-error-port port\n"
b380b885
MD
440 "Change the ports returned by @code{current-input-port},\n"
441 "@code{current-output-port} and @code{current-error-port}, respectively,\n"
442 "so that they use the supplied @var{port} for input or output.")
1bbd0b84 443#define FUNC_NAME s_scm_set_current_input_port
0f2d19dd 444{
9de87eea 445 SCM oinp = scm_fluid_ref (cur_inport_fluid);
34d19ef6 446 SCM_VALIDATE_OPINPORT (1, port);
9de87eea 447 scm_fluid_set_x (cur_inport_fluid, port);
0f2d19dd
JB
448 return oinp;
449}
1bbd0b84 450#undef FUNC_NAME
0f2d19dd
JB
451
452
3b3b36dd 453SCM_DEFINE (scm_set_current_output_port, "set-current-output-port", 1, 0, 0,
e1546b65
MG
454 (SCM port),
455 "Set the current default output port to @var{port}.")
1bbd0b84 456#define FUNC_NAME s_scm_set_current_output_port
0f2d19dd 457{
9de87eea 458 SCM ooutp = scm_fluid_ref (cur_outport_fluid);
78446828 459 port = SCM_COERCE_OUTPORT (port);
34d19ef6 460 SCM_VALIDATE_OPOUTPORT (1, port);
9de87eea 461 scm_fluid_set_x (cur_outport_fluid, port);
0f2d19dd
JB
462 return ooutp;
463}
1bbd0b84 464#undef FUNC_NAME
0f2d19dd
JB
465
466
3b3b36dd 467SCM_DEFINE (scm_set_current_error_port, "set-current-error-port", 1, 0, 0,
e1546b65
MG
468 (SCM port),
469 "Set the current default error port to @var{port}.")
1bbd0b84 470#define FUNC_NAME s_scm_set_current_error_port
0f2d19dd 471{
9de87eea 472 SCM oerrp = scm_fluid_ref (cur_errport_fluid);
78446828 473 port = SCM_COERCE_OUTPORT (port);
34d19ef6 474 SCM_VALIDATE_OPOUTPORT (1, port);
9de87eea 475 scm_fluid_set_x (cur_errport_fluid, port);
0f2d19dd
JB
476 return oerrp;
477}
1bbd0b84 478#undef FUNC_NAME
0f2d19dd 479
3972de76
AW
480
481SCM
482scm_set_current_warning_port (SCM port)
483{
484 static SCM cwp_var = SCM_BOOL_F;
485
486 if (scm_is_false (cwp_var))
487 cwp_var = scm_c_private_lookup ("guile", "current-warning-port");
488
489 return scm_call_1 (scm_variable_ref (cwp_var), port);
490}
491
492
185e369a 493void
661ae7ab 494scm_dynwind_current_input_port (SCM port)
9de87eea 495#define FUNC_NAME NULL
185e369a 496{
9de87eea 497 SCM_VALIDATE_OPINPORT (1, port);
661ae7ab 498 scm_dynwind_fluid (cur_inport_fluid, port);
185e369a 499}
9de87eea 500#undef FUNC_NAME
185e369a
MV
501
502void
661ae7ab 503scm_dynwind_current_output_port (SCM port)
9de87eea 504#define FUNC_NAME NULL
185e369a 505{
9de87eea
MV
506 port = SCM_COERCE_OUTPORT (port);
507 SCM_VALIDATE_OPOUTPORT (1, port);
661ae7ab 508 scm_dynwind_fluid (cur_outport_fluid, port);
185e369a 509}
9de87eea 510#undef FUNC_NAME
185e369a
MV
511
512void
661ae7ab 513scm_dynwind_current_error_port (SCM port)
9de87eea
MV
514#define FUNC_NAME NULL
515{
516 port = SCM_COERCE_OUTPORT (port);
517 SCM_VALIDATE_OPOUTPORT (1, port);
661ae7ab 518 scm_dynwind_fluid (cur_errport_fluid, port);
9de87eea
MV
519}
520#undef FUNC_NAME
521
522void
661ae7ab 523scm_i_dynwind_current_load_port (SCM port)
185e369a 524{
661ae7ab 525 scm_dynwind_fluid (cur_loadport_fluid, port);
185e369a
MV
526}
527
0f2d19dd 528\f
840ae05d 529/* The port table --- an array of pointers to ports. */
0f2d19dd 530
5dbc6c06
HWN
531/*
532 We need a global registry of ports to flush them all at exit, and to
533 get all the ports matching a file descriptor.
534 */
535SCM scm_i_port_weak_hash;
0f2d19dd 536
9de87eea 537scm_i_pthread_mutex_t scm_i_port_table_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
b9ad392e 538
651a0735
LC
539\f
540/* Port finalization. */
541
1cc91f1b 542
651a0735
LC
543static void finalize_port (GC_PTR, GC_PTR);
544
f4bc4e59 545/* Register a finalizer for PORT. */
651a0735
LC
546static SCM_C_INLINE_KEYWORD void
547register_finalizer_for_port (SCM port)
548{
f4bc4e59
LC
549 GC_finalization_proc prev_finalizer;
550 GC_PTR prev_finalization_data;
651a0735 551
f4bc4e59
LC
552 /* Register a finalizer for PORT so that its iconv CDs get freed and
553 optionally its type's `free' function gets called. */
554 GC_REGISTER_FINALIZER_NO_ORDER (SCM2PTR (port), finalize_port, 0,
555 &prev_finalizer,
556 &prev_finalization_data);
651a0735
LC
557}
558
559/* Finalize the object (a port) pointed to by PTR. */
560static void
561finalize_port (GC_PTR ptr, GC_PTR data)
562{
563 long port_type;
564 SCM port = PTR2SCM (ptr);
565
566 if (!SCM_PORTP (port))
567 abort ();
568
569 if (SCM_OPENP (port))
570 {
571 if (SCM_REVEALED (port) > 0)
572 /* Keep "revealed" ports alive and re-register a finalizer. */
573 register_finalizer_for_port (port);
574 else
575 {
f4bc4e59
LC
576 scm_t_port *entry;
577
651a0735
LC
578 port_type = SCM_TC2PTOBNUM (SCM_CELL_TYPE (port));
579 if (port_type >= scm_numptob)
580 abort ();
581
582 if (scm_ptobs[port_type].free)
583 /* Yes, I really do mean `.free' rather than `.close'. `.close'
584 is for explicit `close-port' by user. */
585 scm_ptobs[port_type].free (port);
586
f4bc4e59
LC
587 entry = SCM_PTAB_ENTRY (port);
588
589 if (entry->input_cd != (iconv_t) -1)
590 iconv_close (entry->input_cd);
591 if (entry->output_cd != (iconv_t) -1)
592 iconv_close (entry->output_cd);
593
651a0735
LC
594 SCM_SETSTREAM (port, 0);
595 SCM_CLR_PORT_OPEN_FLAG (port);
651a0735
LC
596
597 scm_gc_ports_collected++;
598 }
599 }
600}
601
602
603
604\f
605
606/* This function is not and should not be thread safe. */
da220f27
HWN
607SCM
608scm_new_port_table_entry (scm_t_bits tag)
402788a9 609#define FUNC_NAME "scm_new_port_table_entry"
0f2d19dd 610{
85835e59
HWN
611 /*
612 We initialize the cell to empty, this is in case scm_gc_calloc
613 triggers GC ; we don't want the GC to scan a half-finished Z.
614 */
615
67329a9e 616 SCM z = scm_cons (SCM_EOL, SCM_EOL);
39e8f371 617 scm_t_port *entry = (scm_t_port *) scm_gc_calloc (sizeof (scm_t_port), "port");
889975e5 618 const char *enc;
5f16b897 619
840ae05d 620 entry->file_name = SCM_BOOL_F;
61e452ba 621 entry->rw_active = SCM_PORT_NEITHER;
5dbc6c06 622 entry->port = z;
9d9c66ba 623
889975e5
MG
624 /* Initialize this port with the thread's current default
625 encoding. */
9d9c66ba
LC
626 enc = scm_i_default_port_encoding ();
627 entry->encoding = enc ? scm_gc_strdup (enc, "port") : NULL;
f4bc4e59
LC
628
629 /* The conversion descriptors will be opened lazily. */
630 entry->input_cd = (iconv_t) -1;
631 entry->output_cd = (iconv_t) -1;
632
889975e5 633 entry->ilseq_handler = scm_i_get_conversion_strategy (SCM_BOOL_F);
5f16b897 634
5dbc6c06
HWN
635 SCM_SET_CELL_TYPE (z, tag);
636 SCM_SETPTAB_ENTRY (z, entry);
840ae05d 637
5dbc6c06 638 scm_hashq_set_x (scm_i_port_weak_hash, z, SCM_BOOL_F);
651a0735
LC
639
640 /* For each new port, register a finalizer so that it port type's free
641 function can be invoked eventually. */
642 register_finalizer_for_port (z);
643
da220f27 644 return z;
0f2d19dd 645}
c6c79933 646#undef FUNC_NAME
0f2d19dd 647
67329a9e 648#if SCM_ENABLE_DEPRECATED==1
8269ba5b 649scm_t_port *
67329a9e
HWN
650scm_add_to_port_table (SCM port)
651{
8269ba5b
AW
652 SCM z;
653 scm_t_port * pt;
67329a9e 654
8269ba5b
AW
655 scm_c_issue_deprecation_warning ("scm_add_to_port_table is deprecated.");
656
657 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
658 z = scm_new_port_table_entry (scm_tc7_port);
659 pt = SCM_PTAB_ENTRY(z);
67329a9e 660 pt->port = port;
5dbc6c06
HWN
661 SCM_SETCAR (z, SCM_EOL);
662 SCM_SETCDR (z, SCM_EOL);
85835e59 663 SCM_SETPTAB_ENTRY (port, pt);
8269ba5b
AW
664 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
665
67329a9e
HWN
666 return pt;
667}
668#endif
669
670
6c951427 671/* Remove a port from the table and destroy it. */
b9ad392e 672
8269ba5b 673static void
5dbc6c06
HWN
674scm_i_remove_port (SCM port)
675#define FUNC_NAME "scm_remove_port"
0f2d19dd 676{
8269ba5b 677 scm_t_port *p;
682d78d0 678
8269ba5b 679 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
682d78d0 680
8269ba5b
AW
681 p = SCM_PTAB_ENTRY (port);
682 scm_port_non_buffer (p);
682d78d0
LC
683 p->putback_buf = NULL;
684 p->putback_buf_size = 0;
3e05fc04
AW
685
686 if (p->input_cd != (iconv_t) -1)
687 {
688 iconv_close (p->input_cd);
689 p->input_cd = (iconv_t) -1;
690 }
691
692 if (p->output_cd != (iconv_t) -1)
693 {
694 iconv_close (p->output_cd);
695 p->output_cd = (iconv_t) -1;
696 }
697
0f2d19dd 698 SCM_SETPTAB_ENTRY (port, 0);
8269ba5b 699
5dbc6c06 700 scm_hashq_remove_x (scm_i_port_weak_hash, port);
8269ba5b
AW
701
702 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
0f2d19dd 703}
db4b4ca6
DH
704#undef FUNC_NAME
705
0f2d19dd 706
b450f070 707/* Functions for debugging. */
5dbc6c06 708#ifdef GUILE_DEBUG
3b3b36dd 709SCM_DEFINE (scm_pt_size, "pt-size", 0, 0, 0,
b450f070 710 (),
1e6808ea 711 "Return the number of ports in the port table. @code{pt-size}\n"
5352393c 712 "is only included in @code{--enable-guile-debug} builds.")
1bbd0b84 713#define FUNC_NAME s_scm_pt_size
0f2d19dd 714{
5dbc6c06 715 return scm_from_int (SCM_HASHTABLE_N_ITEMS (scm_i_port_weak_hash));
0f2d19dd 716}
1bbd0b84 717#undef FUNC_NAME
0f2d19dd
JB
718#endif
719
70df8af6 720void
92c2555f 721scm_port_non_buffer (scm_t_port *pt)
70df8af6
GH
722{
723 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
724 pt->write_buf = pt->write_pos = &pt->shortbuf;
725 pt->read_buf_size = pt->write_buf_size = 1;
726 pt->write_end = pt->write_buf + pt->write_buf_size;
727}
0f2d19dd 728
d68fee48
JB
729\f
730/* Revealed counts --- an oddity inherited from SCSH. */
731
8b13c6b3
GH
732/* Find a port in the table and return its revealed count.
733 Also used by the garbage collector.
0f2d19dd 734 */
1cc91f1b 735
0f2d19dd 736int
a284e297 737scm_revealed_count (SCM port)
0f2d19dd
JB
738{
739 return SCM_REVEALED(port);
740}
741
742
743
744/* Return the revealed count for a port. */
745
3b3b36dd 746SCM_DEFINE (scm_port_revealed, "port-revealed", 1, 0, 0,
1bbd0b84 747 (SCM port),
1e6808ea 748 "Return the revealed count for @var{port}.")
1bbd0b84 749#define FUNC_NAME s_scm_port_revealed
0f2d19dd 750{
78446828 751 port = SCM_COERCE_OUTPORT (port);
34d19ef6 752 SCM_VALIDATE_OPENPORT (1, port);
e11e83f3 753 return scm_from_int (scm_revealed_count (port));
0f2d19dd 754}
1bbd0b84 755#undef FUNC_NAME
0f2d19dd
JB
756
757/* Set the revealed count for a port. */
3b3b36dd 758SCM_DEFINE (scm_set_port_revealed_x, "set-port-revealed!", 2, 0, 0,
1bbd0b84 759 (SCM port, SCM rcount),
b450f070 760 "Sets the revealed count for a port to a given value.\n"
b380b885 761 "The return value is unspecified.")
1bbd0b84 762#define FUNC_NAME s_scm_set_port_revealed_x
0f2d19dd 763{
78446828 764 port = SCM_COERCE_OUTPORT (port);
34d19ef6 765 SCM_VALIDATE_OPENPORT (1, port);
a55c2b68 766 SCM_REVEALED (port) = scm_to_int (rcount);
8b13c6b3 767 return SCM_UNSPECIFIED;
0f2d19dd 768}
1bbd0b84 769#undef FUNC_NAME
0f2d19dd 770
d68fee48
JB
771
772\f
773/* Retrieving a port's mode. */
774
eadd48de
GH
775/* Return the flags that characterize a port based on the mode
776 * string used to open a file for that port.
777 *
778 * See PORT FLAGS in scm.h
779 */
780
3a5fb14d 781static long
889975e5 782scm_i_mode_bits_n (SCM modes)
3a5fb14d
MV
783{
784 return (SCM_OPN
889975e5
MG
785 | (scm_i_string_contains_char (modes, 'r')
786 || scm_i_string_contains_char (modes, '+') ? SCM_RDNG : 0)
787 | (scm_i_string_contains_char (modes, 'w')
788 || scm_i_string_contains_char (modes, 'a')
789 || scm_i_string_contains_char (modes, '+') ? SCM_WRTNG : 0)
790 | (scm_i_string_contains_char (modes, '0') ? SCM_BUF0 : 0)
791 | (scm_i_string_contains_char (modes, 'l') ? SCM_BUFLINE : 0));
3a5fb14d
MV
792}
793
eadd48de 794long
a284e297 795scm_mode_bits (char *modes)
eadd48de 796{
889975e5 797 return scm_i_mode_bits (scm_from_locale_string (modes));
eadd48de
GH
798}
799
d617ee18
MV
800long
801scm_i_mode_bits (SCM modes)
802{
803 long bits;
804
805 if (!scm_is_string (modes))
806 scm_wrong_type_arg_msg (NULL, 0, modes, "string");
807
889975e5 808 bits = scm_i_mode_bits_n (modes);
d617ee18
MV
809 scm_remember_upto_here_1 (modes);
810 return bits;
811}
eadd48de
GH
812
813/* Return the mode flags from an open port.
814 * Some modes such as "append" are only used when opening
815 * a file and are not returned here. */
816
3b3b36dd 817SCM_DEFINE (scm_port_mode, "port-mode", 1, 0, 0,
1bbd0b84 818 (SCM port),
1e6808ea
MG
819 "Return the port modes associated with the open port @var{port}.\n"
820 "These will not necessarily be identical to the modes used when\n"
821 "the port was opened, since modes such as \"append\" which are\n"
822 "used only during port creation are not retained.")
1bbd0b84 823#define FUNC_NAME s_scm_port_mode
eadd48de 824{
26a3038d 825 char modes[4];
eadd48de 826 modes[0] = '\0';
78446828
MV
827
828 port = SCM_COERCE_OUTPORT (port);
34d19ef6 829 SCM_VALIDATE_OPPORT (1, port);
f9a64404
DH
830 if (SCM_CELL_WORD_0 (port) & SCM_RDNG) {
831 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
eadd48de
GH
832 strcpy (modes, "r+");
833 else
834 strcpy (modes, "r");
835 }
f9a64404 836 else if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
eadd48de 837 strcpy (modes, "w");
f9a64404 838 if (SCM_CELL_WORD_0 (port) & SCM_BUF0)
eadd48de 839 strcat (modes, "0");
3a5fb14d 840 return scm_from_locale_string (modes);
eadd48de 841}
1bbd0b84 842#undef FUNC_NAME
eadd48de
GH
843
844
d68fee48
JB
845\f
846/* Closing ports. */
847
0f2d19dd
JB
848/* scm_close_port
849 * Call the close operation on a port object.
eadd48de 850 * see also scm_close.
0f2d19dd 851 */
3b3b36dd 852SCM_DEFINE (scm_close_port, "close-port", 1, 0, 0,
1bbd0b84 853 (SCM port),
1e6808ea
MG
854 "Close the specified port object. Return @code{#t} if it\n"
855 "successfully closes a port or @code{#f} if it was already\n"
856 "closed. An exception may be raised if an error occurs, for\n"
857 "example when flushing buffered output. See also @ref{Ports and\n"
858 "File Descriptors, close}, for a procedure which can close file\n"
859 "descriptors.")
1bbd0b84 860#define FUNC_NAME s_scm_close_port
0f2d19dd 861{
1be6b49c 862 size_t i;
eadd48de
GH
863 int rv;
864
78446828
MV
865 port = SCM_COERCE_OUTPORT (port);
866
7a754ca6 867 SCM_VALIDATE_PORT (1, port);
0f2d19dd 868 if (SCM_CLOSEDP (port))
eadd48de 869 return SCM_BOOL_F;
0f2d19dd 870 i = SCM_PTOBNUM (port);
affc96b5
GH
871 if (scm_ptobs[i].close)
872 rv = (scm_ptobs[i].close) (port);
eadd48de
GH
873 else
874 rv = 0;
5dbc6c06 875 scm_i_remove_port (port);
22a52da1 876 SCM_CLR_PORT_OPEN_FLAG (port);
7888309b 877 return scm_from_bool (rv >= 0);
7a754ca6
MD
878}
879#undef FUNC_NAME
880
881SCM_DEFINE (scm_close_input_port, "close-input-port", 1, 0, 0,
882 (SCM port),
883 "Close the specified input port object. The routine has no effect if\n"
884 "the file has already been closed. An exception may be raised if an\n"
885 "error occurs. The value returned is unspecified.\n\n"
886 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
887 "which can close file descriptors.")
888#define FUNC_NAME s_scm_close_input_port
889{
890 SCM_VALIDATE_INPUT_PORT (1, port);
891 scm_close_port (port);
892 return SCM_UNSPECIFIED;
893}
894#undef FUNC_NAME
895
896SCM_DEFINE (scm_close_output_port, "close-output-port", 1, 0, 0,
897 (SCM port),
898 "Close the specified output port object. The routine has no effect if\n"
899 "the file has already been closed. An exception may be raised if an\n"
900 "error occurs. The value returned is unspecified.\n\n"
901 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
902 "which can close file descriptors.")
903#define FUNC_NAME s_scm_close_output_port
904{
905 port = SCM_COERCE_OUTPORT (port);
906 SCM_VALIDATE_OUTPUT_PORT (1, port);
907 scm_close_port (port);
908 return SCM_UNSPECIFIED;
0f2d19dd 909}
1bbd0b84 910#undef FUNC_NAME
0f2d19dd 911
5dbc6c06 912static SCM
b7b4aef9 913collect_keys (void *unused, SCM key, SCM value, SCM result)
5dbc6c06 914{
b7b4aef9 915 return scm_cons (key, result);
5dbc6c06
HWN
916}
917
c536b4b3
MV
918void
919scm_c_port_for_each (void (*proc)(void *data, SCM p), void *data)
c2ca4493 920{
fdfe6305
MV
921 SCM ports;
922
b7b4aef9
AW
923 /* Copy out the port table as a list so that we get strong references
924 to all the values. */
5dbc6c06 925 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
b7b4aef9
AW
926 ports = scm_internal_hash_fold (collect_keys, NULL,
927 SCM_EOL, scm_i_port_weak_hash);
9de87eea 928 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
3a5fb14d 929
b7b4aef9
AW
930 for (; scm_is_pair (ports); ports = scm_cdr (ports))
931 {
932 SCM p = scm_car (ports);
933 if (SCM_PORTP (p))
934 proc (data, p);
935 }
c536b4b3 936}
fdfe6305 937
c536b4b3
MV
938SCM_DEFINE (scm_port_for_each, "port-for-each", 1, 0, 0,
939 (SCM proc),
940 "Apply @var{proc} to each port in the Guile port table\n"
941 "in turn. The return value is unspecified. More specifically,\n"
942 "@var{proc} is applied exactly once to every port that exists\n"
b7e64f8b
BT
943 "in the system at the time @code{port-for-each} is invoked.\n"
944 "Changes to the port table while @code{port-for-each} is running\n"
945 "have no effect as far as @code{port-for-each} is concerned.")
c536b4b3
MV
946#define FUNC_NAME s_scm_port_for_each
947{
1b3daef0
AW
948 SCM ports;
949
c536b4b3
MV
950 SCM_VALIDATE_PROC (1, proc);
951
1b3daef0
AW
952 /* Copy out the port table as a list so that we get strong references
953 to all the values. */
954 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
955 ports = scm_internal_hash_fold (collect_keys, NULL,
956 SCM_EOL, scm_i_port_weak_hash);
957 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
958
959 for (; scm_is_pair (ports); ports = scm_cdr (ports))
960 if (SCM_PORTP (SCM_CAR (ports)))
961 scm_call_1 (proc, SCM_CAR (ports));
962
c2ca4493
GH
963 return SCM_UNSPECIFIED;
964}
965#undef FUNC_NAME
966
c536b4b3 967
d68fee48
JB
968\f
969/* Utter miscellany. Gosh, we should clean this up some time. */
970
3b3b36dd 971SCM_DEFINE (scm_input_port_p, "input-port?", 1, 0, 0,
1bbd0b84 972 (SCM x),
1e6808ea
MG
973 "Return @code{#t} if @var{x} is an input port, otherwise return\n"
974 "@code{#f}. Any object satisfying this predicate also satisfies\n"
975 "@code{port?}.")
1bbd0b84 976#define FUNC_NAME s_scm_input_port_p
0f2d19dd 977{
7888309b 978 return scm_from_bool (SCM_INPUT_PORT_P (x));
0f2d19dd 979}
1bbd0b84 980#undef FUNC_NAME
0f2d19dd 981
3b3b36dd 982SCM_DEFINE (scm_output_port_p, "output-port?", 1, 0, 0,
1bbd0b84 983 (SCM x),
1e6808ea
MG
984 "Return @code{#t} if @var{x} is an output port, otherwise return\n"
985 "@code{#f}. Any object satisfying this predicate also satisfies\n"
986 "@code{port?}.")
1bbd0b84 987#define FUNC_NAME s_scm_output_port_p
0f2d19dd 988{
82893676 989 x = SCM_COERCE_OUTPORT (x);
7888309b 990 return scm_from_bool (SCM_OUTPUT_PORT_P (x));
0f2d19dd 991}
1bbd0b84 992#undef FUNC_NAME
0f2d19dd 993
eb5c0a2a
GH
994SCM_DEFINE (scm_port_p, "port?", 1, 0, 0,
995 (SCM x),
1e6808ea 996 "Return a boolean indicating whether @var{x} is a port.\n"
5352393c
MG
997 "Equivalent to @code{(or (input-port? @var{x}) (output-port?\n"
998 "@var{x}))}.")
eb5c0a2a
GH
999#define FUNC_NAME s_scm_port_p
1000{
7888309b 1001 return scm_from_bool (SCM_PORTP (x));
eb5c0a2a
GH
1002}
1003#undef FUNC_NAME
1004
3b3b36dd 1005SCM_DEFINE (scm_port_closed_p, "port-closed?", 1, 0, 0,
1bbd0b84 1006 (SCM port),
1e6808ea
MG
1007 "Return @code{#t} if @var{port} is closed or @code{#f} if it is\n"
1008 "open.")
1bbd0b84 1009#define FUNC_NAME s_scm_port_closed_p
60d0643d 1010{
34d19ef6 1011 SCM_VALIDATE_PORT (1, port);
7888309b 1012 return scm_from_bool (!SCM_OPPORTP (port));
60d0643d 1013}
1bbd0b84 1014#undef FUNC_NAME
0f2d19dd 1015
3b3b36dd 1016SCM_DEFINE (scm_eof_object_p, "eof-object?", 1, 0, 0,
1bbd0b84 1017 (SCM x),
1e6808ea
MG
1018 "Return @code{#t} if @var{x} is an end-of-file object; otherwise\n"
1019 "return @code{#f}.")
1bbd0b84 1020#define FUNC_NAME s_scm_eof_object_p
0f2d19dd 1021{
7888309b 1022 return scm_from_bool(SCM_EOF_OBJECT_P (x));
0f2d19dd 1023}
1bbd0b84 1024#undef FUNC_NAME
0f2d19dd 1025
3b3b36dd 1026SCM_DEFINE (scm_force_output, "force-output", 0, 1, 0,
1bbd0b84 1027 (SCM port),
b380b885 1028 "Flush the specified output port, or the current output port if @var{port}\n"
9401323e 1029 "is omitted. The current output buffer contents are passed to the\n"
b380b885
MD
1030 "underlying port implementation (e.g., in the case of fports, the\n"
1031 "data will be written to the file and the output buffer will be cleared.)\n"
1032 "It has no effect on an unbuffered port.\n\n"
1033 "The return value is unspecified.")
1bbd0b84 1034#define FUNC_NAME s_scm_force_output
0f2d19dd
JB
1035{
1036 if (SCM_UNBNDP (port))
9de87eea 1037 port = scm_current_output_port ();
0f2d19dd 1038 else
78446828
MV
1039 {
1040 port = SCM_COERCE_OUTPORT (port);
34d19ef6 1041 SCM_VALIDATE_OPOUTPORT (1, port);
78446828 1042 }
affc96b5 1043 scm_flush (port);
ee149d03 1044 return SCM_UNSPECIFIED;
0f2d19dd 1045}
1bbd0b84 1046#undef FUNC_NAME
0f2d19dd 1047
5dbc6c06
HWN
1048
1049static void
61d3568b 1050flush_output_port (void *closure, SCM port)
5dbc6c06 1051{
5dbc6c06
HWN
1052 if (SCM_OPOUTPORTP (port))
1053 scm_flush (port);
1054}
1055
a1ec6916 1056SCM_DEFINE (scm_flush_all_ports, "flush-all-ports", 0, 0, 0,
1bbd0b84 1057 (),
b380b885
MD
1058 "Equivalent to calling @code{force-output} on\n"
1059 "all open output ports. The return value is unspecified.")
1bbd0b84 1060#define FUNC_NAME s_scm_flush_all_ports
89ea5b7c 1061{
5dbc6c06 1062 scm_c_port_for_each (&flush_output_port, NULL);
89ea5b7c
GH
1063 return SCM_UNSPECIFIED;
1064}
1bbd0b84 1065#undef FUNC_NAME
0f2d19dd 1066
3b3b36dd 1067SCM_DEFINE (scm_read_char, "read-char", 0, 1, 0,
1bbd0b84 1068 (SCM port),
1e6808ea
MG
1069 "Return the next character available from @var{port}, updating\n"
1070 "@var{port} to point to the following character. If no more\n"
c62da8f8
LC
1071 "characters are available, the end-of-file object is returned.\n"
1072 "\n"
1073 "When @var{port}'s data cannot be decoded according to its\n"
1074 "character encoding, a @code{decoding-error} is raised and\n"
1075 "@var{port} points past the erroneous byte sequence.\n")
1bbd0b84 1076#define FUNC_NAME s_scm_read_char
0f2d19dd 1077{
889975e5 1078 scm_t_wchar c;
0f2d19dd 1079 if (SCM_UNBNDP (port))
9de87eea 1080 port = scm_current_input_port ();
34d19ef6 1081 SCM_VALIDATE_OPINPORT (1, port);
b7f3516f 1082 c = scm_getc (port);
0f2d19dd
JB
1083 if (EOF == c)
1084 return SCM_EOF_VAL;
7866a09b 1085 return SCM_MAKE_CHAR (c);
0f2d19dd 1086}
1bbd0b84 1087#undef FUNC_NAME
0f2d19dd 1088
f4bc4e59
LC
1089/* Update the line and column number of PORT after consumption of C. */
1090static inline void
1091update_port_lf (scm_t_wchar c, SCM port)
1092{
1093 switch (c)
1094 {
1095 case '\a':
7b292a9d 1096 case EOF:
f4bc4e59
LC
1097 break;
1098 case '\b':
1099 SCM_DECCOL (port);
1100 break;
1101 case '\n':
1102 SCM_INCLINE (port);
1103 break;
1104 case '\r':
1105 SCM_ZEROCOL (port);
1106 break;
1107 case '\t':
1108 SCM_TABCOL (port);
1109 break;
1110 default:
1111 SCM_INCCOL (port);
1112 break;
1113 }
1114}
1115
889975e5
MG
1116#define SCM_MBCHAR_BUF_SIZE (4)
1117
f4bc4e59
LC
1118/* Convert the SIZE-byte UTF-8 sequence in UTF8_BUF to a codepoint.
1119 UTF8_BUF is assumed to contain a valid UTF-8 sequence. */
1120static scm_t_wchar
1121utf8_to_codepoint (const scm_t_uint8 *utf8_buf, size_t size)
1122{
1123 scm_t_wchar codepoint;
1124
1125 if (utf8_buf[0] <= 0x7f)
1126 {
1127 assert (size == 1);
1128 codepoint = utf8_buf[0];
1129 }
1130 else if ((utf8_buf[0] & 0xe0) == 0xc0)
1131 {
1132 assert (size == 2);
1133 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x1f) << 6UL
1134 | (utf8_buf[1] & 0x3f);
1135 }
1136 else if ((utf8_buf[0] & 0xf0) == 0xe0)
1137 {
1138 assert (size == 3);
1139 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x0f) << 12UL
1140 | ((scm_t_wchar) utf8_buf[1] & 0x3f) << 6UL
1141 | (utf8_buf[2] & 0x3f);
1142 }
1143 else
1144 {
1145 assert (size == 4);
1146 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x07) << 18UL
1147 | ((scm_t_wchar) utf8_buf[1] & 0x3f) << 12UL
1148 | ((scm_t_wchar) utf8_buf[2] & 0x3f) << 6UL
1149 | (utf8_buf[3] & 0x3f);
1150 }
1151
1152 return codepoint;
1153}
1154
7b292a9d
LC
1155/* Read a UTF-8 sequence from PORT. On success, return 0 and set
1156 *CODEPOINT to the codepoint that was read, fill BUF with its UTF-8
1157 representation, and set *LEN to the length in bytes. Return
1158 `EILSEQ' on error. */
c62da8f8 1159static int
7b292a9d
LC
1160get_utf8_codepoint (SCM port, scm_t_wchar *codepoint,
1161 scm_t_uint8 buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
889975e5 1162{
7b292a9d
LC
1163#define ASSERT_NOT_EOF(b) \
1164 if (SCM_UNLIKELY ((b) == EOF)) \
1165 goto invalid_seq
7be1705d
LC
1166#define CONSUME_PEEKED_BYTE() \
1167 pt->read_pos++
7b292a9d
LC
1168
1169 int byte;
7be1705d 1170 scm_t_port *pt;
7b292a9d
LC
1171
1172 *len = 0;
7be1705d 1173 pt = SCM_PTAB_ENTRY (port);
7b292a9d
LC
1174
1175 byte = scm_get_byte_or_eof (port);
1176 if (byte == EOF)
1177 {
1178 *codepoint = EOF;
1179 return 0;
1180 }
1181
1182 buf[0] = (scm_t_uint8) byte;
1183 *len = 1;
1184
1185 if (buf[0] <= 0x7f)
1186 /* 1-byte form. */
1187 *codepoint = buf[0];
1188 else if (buf[0] >= 0xc2 && buf[0] <= 0xdf)
1189 {
1190 /* 2-byte form. */
7be1705d 1191 byte = scm_peek_byte_or_eof (port);
7b292a9d
LC
1192 ASSERT_NOT_EOF (byte);
1193
7b292a9d
LC
1194 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1195 goto invalid_seq;
1196
7be1705d
LC
1197 CONSUME_PEEKED_BYTE ();
1198 buf[1] = (scm_t_uint8) byte;
1199 *len = 2;
1200
7b292a9d
LC
1201 *codepoint = ((scm_t_wchar) buf[0] & 0x1f) << 6UL
1202 | (buf[1] & 0x3f);
1203 }
1204 else if ((buf[0] & 0xf0) == 0xe0)
1205 {
1206 /* 3-byte form. */
7be1705d
LC
1207 byte = scm_peek_byte_or_eof (port);
1208 ASSERT_NOT_EOF (byte);
7b292a9d
LC
1209
1210 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80
1211 || (buf[0] == 0xe0 && byte < 0xa0)
1212 || (buf[0] == 0xed && byte > 0x9f)))
7be1705d 1213 goto invalid_seq;
7b292a9d 1214
7be1705d
LC
1215 CONSUME_PEEKED_BYTE ();
1216 buf[1] = (scm_t_uint8) byte;
1217 *len = 2;
7b292a9d 1218
7be1705d 1219 byte = scm_peek_byte_or_eof (port);
7b292a9d
LC
1220 ASSERT_NOT_EOF (byte);
1221
7b292a9d
LC
1222 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1223 goto invalid_seq;
1224
7be1705d
LC
1225 CONSUME_PEEKED_BYTE ();
1226 buf[2] = (scm_t_uint8) byte;
1227 *len = 3;
1228
7b292a9d
LC
1229 *codepoint = ((scm_t_wchar) buf[0] & 0x0f) << 12UL
1230 | ((scm_t_wchar) buf[1] & 0x3f) << 6UL
1231 | (buf[2] & 0x3f);
1232 }
1233 else if (buf[0] >= 0xf0 && buf[0] <= 0xf4)
1234 {
1235 /* 4-byte form. */
7be1705d 1236 byte = scm_peek_byte_or_eof (port);
7b292a9d
LC
1237 ASSERT_NOT_EOF (byte);
1238
7b292a9d
LC
1239 if (SCM_UNLIKELY (((byte & 0xc0) != 0x80)
1240 || (buf[0] == 0xf0 && byte < 0x90)
1241 || (buf[0] == 0xf4 && byte > 0x8f)))
7be1705d 1242 goto invalid_seq;
7b292a9d 1243
7be1705d
LC
1244 CONSUME_PEEKED_BYTE ();
1245 buf[1] = (scm_t_uint8) byte;
1246 *len = 2;
1247
1248 byte = scm_peek_byte_or_eof (port);
7b292a9d
LC
1249 ASSERT_NOT_EOF (byte);
1250
7be1705d
LC
1251 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1252 goto invalid_seq;
1253
1254 CONSUME_PEEKED_BYTE ();
7b292a9d
LC
1255 buf[2] = (scm_t_uint8) byte;
1256 *len = 3;
1257
7be1705d 1258 byte = scm_peek_byte_or_eof (port);
7b292a9d
LC
1259 ASSERT_NOT_EOF (byte);
1260
7b292a9d
LC
1261 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1262 goto invalid_seq;
1263
7be1705d
LC
1264 CONSUME_PEEKED_BYTE ();
1265 buf[3] = (scm_t_uint8) byte;
1266 *len = 4;
1267
7b292a9d
LC
1268 *codepoint = ((scm_t_wchar) buf[0] & 0x07) << 18UL
1269 | ((scm_t_wchar) buf[1] & 0x3f) << 12UL
1270 | ((scm_t_wchar) buf[2] & 0x3f) << 6UL
1271 | (buf[3] & 0x3f);
1272 }
1273 else
1274 goto invalid_seq;
1275
1276 return 0;
1277
1278 invalid_seq:
7be1705d
LC
1279 /* Here we could choose the consume the faulty byte when it's not a
1280 valid starting byte, but it's not a requirement. What Section 3.9
1281 of Unicode 6.0.0 mandates, though, is to not consume a byte that
1282 would otherwise be a valid starting byte. */
1283
7b292a9d
LC
1284 return EILSEQ;
1285
7be1705d 1286#undef CONSUME_PEEKED_BYTE
7b292a9d
LC
1287#undef ASSERT_NOT_EOF
1288}
1289
1290/* Likewise, read a byte sequence from PORT, passing it through its
1291 input conversion descriptor. */
1292static int
1293get_iconv_codepoint (SCM port, scm_t_wchar *codepoint,
1294 char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1295{
1296 scm_t_port *pt;
f4bc4e59
LC
1297 int err, byte_read;
1298 size_t bytes_consumed, output_size;
f4bc4e59
LC
1299 char *output;
1300 scm_t_uint8 utf8_buf[SCM_MBCHAR_BUF_SIZE];
889975e5 1301
7b292a9d 1302 pt = SCM_PTAB_ENTRY (port);
889975e5 1303
f4bc4e59
LC
1304 for (output_size = 0, output = (char *) utf8_buf,
1305 bytes_consumed = 0, err = 0;
1306 err == 0 && output_size == 0
1307 && (bytes_consumed == 0 || byte_read != EOF);
1308 bytes_consumed++)
63479112 1309 {
f4bc4e59
LC
1310 char *input;
1311 size_t input_left, output_left, done;
889975e5 1312
f4bc4e59
LC
1313 byte_read = scm_get_byte_or_eof (port);
1314 if (byte_read == EOF)
889975e5 1315 {
f4bc4e59 1316 if (bytes_consumed == 0)
c62da8f8
LC
1317 {
1318 *codepoint = (scm_t_wchar) EOF;
1319 *len = 0;
1320 return 0;
1321 }
f4bc4e59
LC
1322 else
1323 continue;
889975e5
MG
1324 }
1325
f4bc4e59 1326 buf[bytes_consumed] = byte_read;
889975e5 1327
f4bc4e59
LC
1328 input = buf;
1329 input_left = bytes_consumed + 1;
1330 output_left = sizeof (utf8_buf);
889975e5 1331
f4bc4e59
LC
1332 done = iconv (pt->input_cd, &input, &input_left,
1333 &output, &output_left);
1334 if (done == (size_t) -1)
889975e5 1335 {
f4bc4e59
LC
1336 err = errno;
1337 if (err == EINVAL)
1338 /* Missing input: keep trying. */
1339 err = 0;
889975e5 1340 }
f4bc4e59
LC
1341 else
1342 output_size = sizeof (utf8_buf) - output_left;
889975e5
MG
1343 }
1344
a42d7971
LC
1345 if (SCM_UNLIKELY (output_size == 0))
1346 /* An unterminated sequence. */
1347 err = EILSEQ;
7b292a9d 1348 else if (SCM_LIKELY (err == 0))
cc540d0b 1349 {
7b292a9d
LC
1350 /* Convert the UTF8_BUF sequence to a Unicode code point. */
1351 *codepoint = utf8_to_codepoint (utf8_buf, output_size);
1352 *len = bytes_consumed;
1353 }
cc540d0b 1354
7b292a9d
LC
1355 return err;
1356}
c62da8f8 1357
7b292a9d
LC
1358/* Read a codepoint from PORT and return it in *CODEPOINT. Fill BUF
1359 with the byte representation of the codepoint in PORT's encoding, and
1360 set *LEN to the length in bytes of that representation. Return 0 on
1361 success and an errno value on error. */
1362static int
1363get_codepoint (SCM port, scm_t_wchar *codepoint,
1364 char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1365{
1366 int err;
1367 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1368
1369 if (pt->input_cd == (iconv_t) -1)
1370 /* Initialize the conversion descriptors, if needed. */
1371 scm_i_set_port_encoding_x (port, pt->encoding);
1372
1373 /* FIXME: In 2.1, add a flag to determine whether a port is UTF-8. */
1374 if (pt->input_cd == (iconv_t) -1)
1375 err = get_utf8_codepoint (port, codepoint, (scm_t_uint8 *) buf, len);
cc540d0b 1376 else
7b292a9d
LC
1377 err = get_iconv_codepoint (port, codepoint, buf, len);
1378
1379 if (SCM_LIKELY (err == 0))
1380 update_port_lf (*codepoint, port);
1381 else if (pt->ilseq_handler == SCM_ICONVEH_QUESTION_MARK)
a42d7971 1382 {
7b292a9d
LC
1383 *codepoint = '?';
1384 err = 0;
a42d7971
LC
1385 update_port_lf (*codepoint, port);
1386 }
889975e5 1387
c62da8f8 1388 return err;
889975e5
MG
1389}
1390
fd5eec2b
LC
1391/* Read a codepoint from PORT and return it. */
1392scm_t_wchar
1393scm_getc (SCM port)
c62da8f8 1394#define FUNC_NAME "scm_getc"
fd5eec2b 1395{
c62da8f8 1396 int err;
fd5eec2b 1397 size_t len;
c62da8f8 1398 scm_t_wchar codepoint;
fd5eec2b
LC
1399 char buf[SCM_MBCHAR_BUF_SIZE];
1400
c62da8f8
LC
1401 err = get_codepoint (port, &codepoint, buf, &len);
1402 if (SCM_UNLIKELY (err != 0))
1403 /* At this point PORT should point past the invalid encoding, as per
1404 R6RS-lib Section 8.2.4. */
1405 scm_decoding_error (FUNC_NAME, err, "input decoding error", port);
1406
1407 return codepoint;
fd5eec2b 1408}
c62da8f8 1409#undef FUNC_NAME
889975e5 1410
5c070ca7 1411/* this should only be called when the read buffer is empty. it
affc96b5 1412 tries to refill the read buffer. it returns the first char from
5c070ca7 1413 the port, which is either EOF or *(pt->read_pos). */
6c951427 1414int
affc96b5 1415scm_fill_input (SCM port)
6c951427 1416{
92c2555f 1417 scm_t_port *pt = SCM_PTAB_ENTRY (port);
283a1a0e 1418
b5cb4464
NJ
1419 assert (pt->read_pos == pt->read_end);
1420
6c951427
GH
1421 if (pt->read_buf == pt->putback_buf)
1422 {
1423 /* finished reading put-back chars. */
1424 pt->read_buf = pt->saved_read_buf;
1425 pt->read_pos = pt->saved_read_pos;
1426 pt->read_end = pt->saved_read_end;
1427 pt->read_buf_size = pt->saved_read_buf_size;
1428 if (pt->read_pos < pt->read_end)
5c070ca7 1429 return *(pt->read_pos);
6c951427 1430 }
affc96b5 1431 return scm_ptobs[SCM_PTOBNUM (port)].fill_input (port);
6c951427
GH
1432}
1433
3cb988bd 1434
6fe692e9
MD
1435/* scm_lfwrite
1436 *
53802ea8
MV
1437 * This function differs from scm_c_write; it updates port line and
1438 * column. */
6fe692e9 1439
9c44cd45 1440void
1be6b49c 1441scm_lfwrite (const char *ptr, size_t size, SCM port)
ee149d03 1442{
92c2555f
MV
1443 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1444 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
3e2043c4 1445
840ae05d 1446 if (pt->rw_active == SCM_PORT_READ)
affc96b5 1447 scm_end_input (port);
283a1a0e 1448
31703ab8 1449 ptob->write (port, ptr, size);
840ae05d 1450
9c44cd45
MG
1451 for (; size; ptr++, size--)
1452 update_port_lf ((scm_t_wchar) (unsigned char) *ptr, port);
1453
1454 if (pt->rw_random)
1455 pt->rw_active = SCM_PORT_WRITE;
1456}
1457
4325620f 1458/* Write STR to PORT from START inclusive to END exclusive. */
9c44cd45
MG
1459void
1460scm_lfwrite_substr (SCM str, size_t start, size_t end, SCM port)
1461{
9c44cd45 1462 scm_t_port *pt = SCM_PTAB_ENTRY (port);
9c44cd45
MG
1463
1464 if (pt->rw_active == SCM_PORT_READ)
1465 scm_end_input (port);
1466
4325620f
LC
1467 if (end == (size_t) -1)
1468 end = scm_i_string_length (str);
9c44cd45 1469
4325620f 1470 scm_display (scm_c_substring (str, start, end), port);
53802ea8 1471
840ae05d
JB
1472 if (pt->rw_random)
1473 pt->rw_active = SCM_PORT_WRITE;
ee149d03 1474}
3cb988bd 1475
6fe692e9
MD
1476/* scm_c_read
1477 *
1478 * Used by an application to read arbitrary number of bytes from an
1479 * SCM port. Same semantics as libc read, except that scm_c_read only
1480 * returns less than SIZE bytes if at end-of-file.
1481 *
1482 * Warning: Doesn't update port line and column counts! */
1483
b5cb4464
NJ
1484/* This structure, and the following swap_buffer function, are used
1485 for temporarily swapping a port's own read buffer, and the buffer
1486 that the caller of scm_c_read provides. */
1487struct port_and_swap_buffer
1488{
1489 scm_t_port *pt;
1490 unsigned char *buffer;
1491 size_t size;
1492};
1493
1494static void
1495swap_buffer (void *data)
1496{
1497 struct port_and_swap_buffer *psb = (struct port_and_swap_buffer *) data;
1498 unsigned char *old_buf = psb->pt->read_buf;
1499 size_t old_size = psb->pt->read_buf_size;
1500
1501 /* Make the port use (buffer, size) from the struct. */
1502 psb->pt->read_pos = psb->pt->read_buf = psb->pt->read_end = psb->buffer;
1503 psb->pt->read_buf_size = psb->size;
1504
1505 /* Save the port's old (buffer, size) in the struct. */
1506 psb->buffer = old_buf;
1507 psb->size = old_size;
1508}
1509
1be6b49c
ML
1510size_t
1511scm_c_read (SCM port, void *buffer, size_t size)
693758d5 1512#define FUNC_NAME "scm_c_read"
6fe692e9 1513{
693758d5 1514 scm_t_port *pt;
1be6b49c 1515 size_t n_read = 0, n_available;
b5cb4464 1516 struct port_and_swap_buffer psb;
6fe692e9 1517
693758d5
LC
1518 SCM_VALIDATE_OPINPORT (1, port);
1519
1520 pt = SCM_PTAB_ENTRY (port);
6fe692e9
MD
1521 if (pt->rw_active == SCM_PORT_WRITE)
1522 scm_ptobs[SCM_PTOBNUM (port)].flush (port);
1523
1524 if (pt->rw_random)
1525 pt->rw_active = SCM_PORT_READ;
1526
b5cb4464
NJ
1527 /* Take bytes first from the port's read buffer. */
1528 if (pt->read_pos < pt->read_end)
6fe692e9 1529 {
b5cb4464 1530 n_available = min (size, pt->read_end - pt->read_pos);
6fe692e9 1531 memcpy (buffer, pt->read_pos, n_available);
910d1e40 1532 buffer = (char *) buffer + n_available;
6fe692e9
MD
1533 pt->read_pos += n_available;
1534 n_read += n_available;
6fe692e9 1535 size -= n_available;
6fe692e9
MD
1536 }
1537
b5cb4464
NJ
1538 /* Avoid the scm_dynwind_* costs if we now have enough data. */
1539 if (size == 0)
1540 return n_read;
1541
1542 /* Now we will call scm_fill_input repeatedly until we have read the
1543 requested number of bytes. (Note that a single scm_fill_input
1544 call does not guarantee to fill the whole of the port's read
6d227556 1545 buffer.) */
75192345 1546 if (pt->read_buf_size <= 1 && pt->encoding == NULL)
b5cb4464 1547 {
6d227556
NJ
1548 /* The port that we are reading from is unbuffered - i.e. does
1549 not have its own persistent buffer - but we have a buffer,
1550 provided by our caller, that is the right size for the data
1551 that is wanted. For the following scm_fill_input calls,
1552 therefore, we use the buffer in hand as the port's read
1553 buffer.
1554
1555 We need to make sure that the port's normal (1 byte) buffer
1556 is reinstated in case one of the scm_fill_input () calls
1557 throws an exception; we use the scm_dynwind_* API to achieve
75192345
MG
1558 that.
1559
1560 A consequence of this optimization is that the fill_input
1561 functions can't unget characters. That'll push data to the
1562 pushback buffer instead of this psb buffer. */
1563#if SCM_DEBUG == 1
1564 unsigned char *pback = pt->putback_buf;
1565#endif
6d227556
NJ
1566 psb.pt = pt;
1567 psb.buffer = buffer;
1568 psb.size = size;
1569 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
1570 scm_dynwind_rewind_handler (swap_buffer, &psb, SCM_F_WIND_EXPLICITLY);
1571 scm_dynwind_unwind_handler (swap_buffer, &psb, SCM_F_WIND_EXPLICITLY);
1572
1573 /* Call scm_fill_input until we have all the bytes that we need,
1574 or we hit EOF. */
1575 while (pt->read_buf_size && (scm_fill_input (port) != EOF))
1576 {
1577 pt->read_buf_size -= (pt->read_end - pt->read_pos);
1578 pt->read_pos = pt->read_buf = pt->read_end;
1579 }
75192345
MG
1580#if SCM_DEBUG == 1
1581 if (pback != pt->putback_buf
1582 || pt->read_buf - (unsigned char *) buffer < 0)
1583 scm_misc_error (FUNC_NAME,
1584 "scm_c_read must not call a fill function that pushes "
1585 "back characters onto an unbuffered port", SCM_EOL);
1586#endif
6d227556 1587 n_read += pt->read_buf - (unsigned char *) buffer;
75192345 1588
6d227556
NJ
1589 /* Reinstate the port's normal buffer. */
1590 scm_dynwind_end ();
1591 }
1592 else
1593 {
1594 /* The port has its own buffer. It is important that we use it,
1595 even if it happens to be smaller than our caller's buffer, so
1596 that a custom port implementation's entry points (in
1597 particular, fill_input) can rely on the buffer always being
1598 the same as they first set up. */
1599 while (size && (scm_fill_input (port) != EOF))
1600 {
1601 n_available = min (size, pt->read_end - pt->read_pos);
1602 memcpy (buffer, pt->read_pos, n_available);
1603 buffer = (char *) buffer + n_available;
1604 pt->read_pos += n_available;
1605 n_read += n_available;
1606 size -= n_available;
1607 }
1608 }
6fe692e9 1609
b5cb4464 1610 return n_read;
6fe692e9 1611}
693758d5 1612#undef FUNC_NAME
6fe692e9
MD
1613
1614/* scm_c_write
1615 *
1616 * Used by an application to write arbitrary number of bytes to an SCM
1617 * port. Similar semantics as libc write. However, unlike libc
1618 * write, scm_c_write writes the requested number of bytes and has no
1619 * return value.
1620 *
1621 * Warning: Doesn't update port line and column counts!
1622 */
1623
693758d5 1624void
1be6b49c 1625scm_c_write (SCM port, const void *ptr, size_t size)
693758d5 1626#define FUNC_NAME "scm_c_write"
6fe692e9 1627{
693758d5
LC
1628 scm_t_port *pt;
1629 scm_t_ptob_descriptor *ptob;
1630
1631 SCM_VALIDATE_OPOUTPORT (1, port);
1632
1633 pt = SCM_PTAB_ENTRY (port);
1634 ptob = &scm_ptobs[SCM_PTOBNUM (port)];
6fe692e9
MD
1635
1636 if (pt->rw_active == SCM_PORT_READ)
1637 scm_end_input (port);
1638
1639 ptob->write (port, ptr, size);
1640
1641 if (pt->rw_random)
1642 pt->rw_active = SCM_PORT_WRITE;
1643}
693758d5 1644#undef FUNC_NAME
3cb988bd 1645
fca43887 1646void
a284e297 1647scm_flush (SCM port)
ee149d03 1648{
c014a02e 1649 long i = SCM_PTOBNUM (port);
7f2a6c38 1650 assert (i >= 0);
affc96b5 1651 (scm_ptobs[i].flush) (port);
ee149d03
JB
1652}
1653
283a1a0e 1654void
a284e297 1655scm_end_input (SCM port)
283a1a0e 1656{
c014a02e 1657 long offset;
92c2555f 1658 scm_t_port *pt = SCM_PTAB_ENTRY (port);
283a1a0e
GH
1659
1660 if (pt->read_buf == pt->putback_buf)
1661 {
1662 offset = pt->read_end - pt->read_pos;
1663 pt->read_buf = pt->saved_read_buf;
1664 pt->read_pos = pt->saved_read_pos;
1665 pt->read_end = pt->saved_read_end;
1666 pt->read_buf_size = pt->saved_read_buf_size;
1667 }
1668 else
1669 offset = 0;
1670
affc96b5 1671 scm_ptobs[SCM_PTOBNUM (port)].end_input (port, offset);
283a1a0e
GH
1672}
1673
ee149d03
JB
1674\f
1675
1676
1677void
889975e5
MG
1678scm_unget_byte (int c, SCM port)
1679#define FUNC_NAME "scm_unget_byte"
ee149d03 1680{
92c2555f 1681 scm_t_port *pt = SCM_PTAB_ENTRY (port);
840ae05d 1682
6c951427
GH
1683 if (pt->read_buf == pt->putback_buf)
1684 /* already using the put-back buffer. */
1685 {
1686 /* enlarge putback_buf if necessary. */
1687 if (pt->read_end == pt->read_buf + pt->read_buf_size
1688 && pt->read_buf == pt->read_pos)
1689 {
1be6b49c 1690 size_t new_size = pt->read_buf_size * 2;
c6c79933 1691 unsigned char *tmp = (unsigned char *)
4c9419ac
MV
1692 scm_gc_realloc (pt->putback_buf, pt->read_buf_size, new_size,
1693 "putback buffer");
6c951427 1694
6c951427
GH
1695 pt->read_pos = pt->read_buf = pt->putback_buf = tmp;
1696 pt->read_end = pt->read_buf + pt->read_buf_size;
1697 pt->read_buf_size = pt->putback_buf_size = new_size;
1698 }
1699
1700 /* shift any existing bytes to buffer + 1. */
1701 if (pt->read_pos == pt->read_end)
1702 pt->read_end = pt->read_buf + 1;
1703 else if (pt->read_pos != pt->read_buf + 1)
1704 {
1705 int count = pt->read_end - pt->read_pos;
1706
1707 memmove (pt->read_buf + 1, pt->read_pos, count);
1708 pt->read_end = pt->read_buf + 1 + count;
1709 }
1710
1711 pt->read_pos = pt->read_buf;
1712 }
1713 else
1714 /* switch to the put-back buffer. */
1715 {
1716 if (pt->putback_buf == NULL)
1717 {
c357d546 1718 pt->putback_buf
92d8fd32
LC
1719 = (unsigned char *) scm_gc_malloc_pointerless
1720 (SCM_INITIAL_PUTBACK_BUF_SIZE, "putback buffer");
6c951427
GH
1721 pt->putback_buf_size = SCM_INITIAL_PUTBACK_BUF_SIZE;
1722 }
1723
1724 pt->saved_read_buf = pt->read_buf;
1725 pt->saved_read_pos = pt->read_pos;
1726 pt->saved_read_end = pt->read_end;
1727 pt->saved_read_buf_size = pt->read_buf_size;
1728
1729 pt->read_pos = pt->read_buf = pt->putback_buf;
1730 pt->read_end = pt->read_buf + 1;
1731 pt->read_buf_size = pt->putback_buf_size;
1732 }
1733
1734 *pt->read_buf = c;
ee149d03 1735
840ae05d
JB
1736 if (pt->rw_random)
1737 pt->rw_active = SCM_PORT_READ;
889975e5
MG
1738}
1739#undef FUNC_NAME
1740
63479112 1741void
889975e5
MG
1742scm_ungetc (scm_t_wchar c, SCM port)
1743#define FUNC_NAME "scm_ungetc"
1744{
1745 scm_t_port *pt = SCM_PTAB_ENTRY (port);
63479112
LC
1746 char *result;
1747 char result_buf[10];
1748 const char *encoding;
889975e5
MG
1749 size_t len;
1750 int i;
1751
63479112
LC
1752 if (pt->encoding != NULL)
1753 encoding = pt->encoding;
1754 else
1755 encoding = "ISO-8859-1";
1756
1757 len = sizeof (result_buf);
1758 result = u32_conv_to_encoding (encoding,
1759 (enum iconv_ilseq_handler) pt->ilseq_handler,
1760 (uint32_t *) &c, 1, NULL,
1761 result_buf, &len);
1762
1763 if (SCM_UNLIKELY (result == NULL || len == 0))
6851d3be
LC
1764 scm_encoding_error (FUNC_NAME, errno,
1765 "conversion to port encoding failed",
1766 SCM_BOOL_F, SCM_MAKE_CHAR (c));
63479112 1767
889975e5 1768 for (i = len - 1; i >= 0; i--)
63479112
LC
1769 scm_unget_byte (result[i], port);
1770
1771 if (SCM_UNLIKELY (result != result_buf))
1772 free (result);
840ae05d 1773
ee149d03
JB
1774 if (c == '\n')
1775 {
1776 /* What should col be in this case?
1777 * We'll leave it at -1.
1778 */
1779 SCM_LINUM (port) -= 1;
1780 }
1781 else
1782 SCM_COL(port) -= 1;
1783}
c6c79933 1784#undef FUNC_NAME
ee149d03
JB
1785
1786
1787void
70d63753 1788scm_ungets (const char *s, int n, SCM port)
ee149d03
JB
1789{
1790 /* This is simple minded and inefficient, but unreading strings is
1791 * probably not a common operation, and remember that line and
1792 * column numbers have to be handled...
1793 *
1794 * Please feel free to write an optimized version!
1795 */
1796 while (n--)
1797 scm_ungetc (s[n], port);
1798}
1799
1800
3b3b36dd 1801SCM_DEFINE (scm_peek_char, "peek-char", 0, 1, 0,
1bbd0b84 1802 (SCM port),
1e6808ea
MG
1803 "Return the next character available from @var{port},\n"
1804 "@emph{without} updating @var{port} to point to the following\n"
1805 "character. If no more characters are available, the\n"
c2dfff19
KR
1806 "end-of-file object is returned.\n"
1807 "\n"
1808 "The value returned by\n"
1e6808ea
MG
1809 "a call to @code{peek-char} is the same as the value that would\n"
1810 "have been returned by a call to @code{read-char} on the same\n"
1811 "port. The only difference is that the very next call to\n"
1812 "@code{read-char} or @code{peek-char} on that @var{port} will\n"
1813 "return the value returned by the preceding call to\n"
1814 "@code{peek-char}. In particular, a call to @code{peek-char} on\n"
1815 "an interactive port will hang waiting for input whenever a call\n"
c62da8f8
LC
1816 "to @code{read-char} would have hung.\n"
1817 "\n"
1818 "As for @code{read-char}, a @code{decoding-error} may be raised\n"
1819 "if such a situation occurs. However, unlike with @code{read-char},\n"
1820 "@var{port} still points at the beginning of the erroneous byte\n"
1821 "sequence when the error is raised.\n")
1bbd0b84 1822#define FUNC_NAME s_scm_peek_char
ee149d03 1823{
c62da8f8 1824 int err;
fd5eec2b
LC
1825 SCM result;
1826 scm_t_wchar c;
1827 char bytes[SCM_MBCHAR_BUF_SIZE];
c62da8f8 1828 long column, line, i;
fd5eec2b
LC
1829 size_t len;
1830
ee149d03 1831 if (SCM_UNBNDP (port))
9de87eea 1832 port = scm_current_input_port ();
b2456dd4 1833 SCM_VALIDATE_OPINPORT (1, port);
fd5eec2b
LC
1834
1835 column = SCM_COL (port);
1836 line = SCM_LINUM (port);
1837
c62da8f8 1838 err = get_codepoint (port, &c, bytes, &len);
fd5eec2b 1839
c62da8f8
LC
1840 for (i = len - 1; i >= 0; i--)
1841 scm_unget_byte (bytes[i], port);
fd5eec2b 1842
c62da8f8
LC
1843 SCM_COL (port) = column;
1844 SCM_LINUM (port) = line;
fd5eec2b 1845
c62da8f8
LC
1846 if (SCM_UNLIKELY (err != 0))
1847 {
1848 scm_decoding_error (FUNC_NAME, err, "input decoding error", port);
1849
1850 /* Shouldn't happen since `catch' always aborts to prompt. */
1851 result = SCM_BOOL_F;
fd5eec2b 1852 }
c62da8f8
LC
1853 else if (c == EOF)
1854 result = SCM_EOF_VAL;
1855 else
1856 result = SCM_MAKE_CHAR (c);
fd5eec2b
LC
1857
1858 return result;
3cb988bd 1859}
1bbd0b84 1860#undef FUNC_NAME
3cb988bd 1861
1be4270a 1862SCM_DEFINE (scm_unread_char, "unread-char", 1, 1, 0,
1bbd0b84 1863 (SCM cobj, SCM port),
b7e64f8b
BT
1864 "Place character @var{cobj} in @var{port} so that it will be\n"
1865 "read by the next read operation. If called multiple times, the\n"
1866 "unread characters will be read again in last-in first-out\n"
1867 "order. If @var{port} is not supplied, the current input port\n"
1868 "is used.")
1bbd0b84 1869#define FUNC_NAME s_scm_unread_char
0f2d19dd
JB
1870{
1871 int c;
1872
34d19ef6 1873 SCM_VALIDATE_CHAR (1, cobj);
0f2d19dd 1874 if (SCM_UNBNDP (port))
9de87eea 1875 port = scm_current_input_port ();
b2456dd4 1876 SCM_VALIDATE_OPINPORT (2, port);
0f2d19dd 1877
7866a09b 1878 c = SCM_CHAR (cobj);
0f2d19dd 1879
b7f3516f 1880 scm_ungetc (c, port);
0f2d19dd
JB
1881 return cobj;
1882}
1bbd0b84 1883#undef FUNC_NAME
0f2d19dd 1884
a1ec6916 1885SCM_DEFINE (scm_unread_string, "unread-string", 2, 0, 0,
1bbd0b84 1886 (SCM str, SCM port),
b380b885
MD
1887 "Place the string @var{str} in @var{port} so that its characters will be\n"
1888 "read in subsequent read operations. If called multiple times, the\n"
1889 "unread characters will be read again in last-in first-out order. If\n"
1890 "@var{port} is not supplied, the current-input-port is used.")
1bbd0b84 1891#define FUNC_NAME s_scm_unread_string
ee1e7e13 1892{
889975e5 1893 int n;
34d19ef6 1894 SCM_VALIDATE_STRING (1, str);
ee1e7e13 1895 if (SCM_UNBNDP (port))
9de87eea 1896 port = scm_current_input_port ();
b2456dd4 1897 SCM_VALIDATE_OPINPORT (2, port);
ee1e7e13 1898
889975e5
MG
1899 n = scm_i_string_length (str);
1900
1901 while (n--)
1902 scm_ungetc (scm_i_string_ref (str, n), port);
ee1e7e13
MD
1903
1904 return str;
1905}
1bbd0b84 1906#undef FUNC_NAME
ee1e7e13 1907
a1ec6916 1908SCM_DEFINE (scm_seek, "seek", 3, 0, 0,
1e6808ea 1909 (SCM fd_port, SCM offset, SCM whence),
b7e64f8b 1910 "Sets the current position of @var{fd_port} to the integer\n"
1e6808ea
MG
1911 "@var{offset}, which is interpreted according to the value of\n"
1912 "@var{whence}.\n"
1913 "\n"
1914 "One of the following variables should be supplied for\n"
1915 "@var{whence}:\n"
b380b885
MD
1916 "@defvar SEEK_SET\n"
1917 "Seek from the beginning of the file.\n"
1918 "@end defvar\n"
1919 "@defvar SEEK_CUR\n"
1920 "Seek from the current position.\n"
1921 "@end defvar\n"
1922 "@defvar SEEK_END\n"
1923 "Seek from the end of the file.\n"
1e6808ea 1924 "@end defvar\n"
b7e64f8b 1925 "If @var{fd_port} is a file descriptor, the underlying system\n"
1e6808ea
MG
1926 "call is @code{lseek}. @var{port} may be a string port.\n"
1927 "\n"
1928 "The value returned is the new position in the file. This means\n"
1929 "that the current position of a port can be obtained using:\n"
1930 "@lisp\n"
b380b885 1931 "(seek port 0 SEEK_CUR)\n"
1e6808ea 1932 "@end lisp")
1bbd0b84 1933#define FUNC_NAME s_scm_seek
840ae05d 1934{
840ae05d
JB
1935 int how;
1936
1e6808ea 1937 fd_port = SCM_COERCE_OUTPORT (fd_port);
840ae05d 1938
a55c2b68 1939 how = scm_to_int (whence);
840ae05d 1940 if (how != SEEK_SET && how != SEEK_CUR && how != SEEK_END)
1bbd0b84 1941 SCM_OUT_OF_RANGE (3, whence);
23f2b9a3 1942
0a94eb00 1943 if (SCM_OPPORTP (fd_port))
840ae05d 1944 {
92c2555f 1945 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (fd_port);
f1ce9199
LC
1946 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1947 off_t_or_off64_t rv;
840ae05d
JB
1948
1949 if (!ptob->seek)
1bbd0b84 1950 SCM_MISC_ERROR ("port is not seekable",
1e6808ea 1951 scm_cons (fd_port, SCM_EOL));
840ae05d 1952 else
1e6808ea 1953 rv = ptob->seek (fd_port, off, how);
f1ce9199 1954 return scm_from_off_t_or_off64_t (rv);
840ae05d
JB
1955 }
1956 else /* file descriptor?. */
1957 {
23f2b9a3
KR
1958 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1959 off_t_or_off64_t rv;
1960 rv = lseek_or_lseek64 (scm_to_int (fd_port), off, how);
840ae05d 1961 if (rv == -1)
1bbd0b84 1962 SCM_SYSERROR;
23f2b9a3 1963 return scm_from_off_t_or_off64_t (rv);
840ae05d 1964 }
840ae05d 1965}
1bbd0b84 1966#undef FUNC_NAME
840ae05d 1967
8ab3d8a0
KR
1968#ifndef O_BINARY
1969#define O_BINARY 0
1970#endif
1971
1972/* Mingw has ftruncate(), perhaps implemented above using chsize, but
1973 doesn't have the filename version truncate(), hence this code. */
1974#if HAVE_FTRUNCATE && ! HAVE_TRUNCATE
1975static int
1976truncate (const char *file, off_t length)
82893676 1977{
8ab3d8a0
KR
1978 int ret, fdes;
1979
1980 fdes = open (file, O_BINARY | O_WRONLY);
1981 if (fdes == -1)
1982 return -1;
1983
1984 ret = ftruncate (fdes, length);
1985 if (ret == -1)
82893676 1986 {
8ab3d8a0 1987 int save_errno = errno;
82893676 1988 close (fdes);
8ab3d8a0
KR
1989 errno = save_errno;
1990 return -1;
82893676 1991 }
8ab3d8a0
KR
1992
1993 return close (fdes);
82893676 1994}
8ab3d8a0 1995#endif /* HAVE_FTRUNCATE && ! HAVE_TRUNCATE */
82893676 1996
a1ec6916 1997SCM_DEFINE (scm_truncate_file, "truncate-file", 1, 1, 0,
1bbd0b84 1998 (SCM object, SCM length),
b7e64f8b
BT
1999 "Truncate file @var{object} to @var{length} bytes. @var{object}\n"
2000 "can be a filename string, a port object, or an integer file\n"
2001 "descriptor.\n"
8ab3d8a0
KR
2002 "The return value is unspecified.\n"
2003 "\n"
2004 "For a port or file descriptor @var{length} can be omitted, in\n"
2005 "which case the file is truncated at the current position (per\n"
2006 "@code{ftell} above).\n"
2007 "\n"
2008 "On most systems a file can be extended by giving a length\n"
2009 "greater than the current size, but this is not mandatory in the\n"
2010 "POSIX standard.")
1bbd0b84 2011#define FUNC_NAME s_scm_truncate_file
840ae05d 2012{
69bc9ff3 2013 int rv;
69bc9ff3 2014
2b829bbb
KR
2015 /* "object" can be a port, fdes or filename.
2016
2017 Negative "length" makes no sense, but it's left to truncate() or
2018 ftruncate() to give back an error for that (normally EINVAL).
2019 */
840ae05d 2020
840ae05d
JB
2021 if (SCM_UNBNDP (length))
2022 {
69bc9ff3 2023 /* must supply length if object is a filename. */
7f9994d9 2024 if (scm_is_string (object))
34d19ef6 2025 SCM_MISC_ERROR("must supply length if OBJECT is a filename", SCM_EOL);
69bc9ff3 2026
e11e83f3 2027 length = scm_seek (object, SCM_INUM0, scm_from_int (SEEK_CUR));
840ae05d 2028 }
3fe6190f 2029
69bc9ff3 2030 object = SCM_COERCE_OUTPORT (object);
e11e83f3 2031 if (scm_is_integer (object))
69bc9ff3 2032 {
23f2b9a3
KR
2033 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2034 SCM_SYSCALL (rv = ftruncate_or_ftruncate64 (scm_to_int (object),
2035 c_length));
69bc9ff3 2036 }
0c95b57d 2037 else if (SCM_OPOUTPORTP (object))
69bc9ff3 2038 {
f1ce9199 2039 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
92c2555f
MV
2040 scm_t_port *pt = SCM_PTAB_ENTRY (object);
2041 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (object);
69bc9ff3 2042
affc96b5 2043 if (!ptob->truncate)
1bbd0b84 2044 SCM_MISC_ERROR ("port is not truncatable", SCM_EOL);
69bc9ff3 2045 if (pt->rw_active == SCM_PORT_READ)
affc96b5 2046 scm_end_input (object);
69bc9ff3 2047 else if (pt->rw_active == SCM_PORT_WRITE)
affc96b5 2048 ptob->flush (object);
69bc9ff3 2049
affc96b5 2050 ptob->truncate (object, c_length);
69bc9ff3
GH
2051 rv = 0;
2052 }
2053 else
2054 {
2b829bbb 2055 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
7f9994d9
MV
2056 char *str = scm_to_locale_string (object);
2057 int eno;
2b829bbb 2058 SCM_SYSCALL (rv = truncate_or_truncate64 (str, c_length));
7f9994d9
MV
2059 eno = errno;
2060 free (str);
2061 errno = eno;
69bc9ff3
GH
2062 }
2063 if (rv == -1)
1bbd0b84 2064 SCM_SYSERROR;
840ae05d
JB
2065 return SCM_UNSPECIFIED;
2066}
1bbd0b84 2067#undef FUNC_NAME
840ae05d 2068
a1ec6916 2069SCM_DEFINE (scm_port_line, "port-line", 1, 0, 0,
1bbd0b84 2070 (SCM port),
a150979d
KR
2071 "Return the current line number for @var{port}.\n"
2072 "\n"
2073 "The first line of a file is 0. But you might want to add 1\n"
2074 "when printing line numbers, since starting from 1 is\n"
2075 "traditional in error messages, and likely to be more natural to\n"
2076 "non-programmers.")
1bbd0b84 2077#define FUNC_NAME s_scm_port_line
0f2d19dd 2078{
78446828 2079 port = SCM_COERCE_OUTPORT (port);
34d19ef6 2080 SCM_VALIDATE_OPENPORT (1, port);
651f2cd2 2081 return scm_from_long (SCM_LINUM (port));
0f2d19dd 2082}
1bbd0b84 2083#undef FUNC_NAME
0f2d19dd 2084
a1ec6916 2085SCM_DEFINE (scm_set_port_line_x, "set-port-line!", 2, 0, 0,
1bbd0b84 2086 (SCM port, SCM line),
a150979d
KR
2087 "Set the current line number for @var{port} to @var{line}. The\n"
2088 "first line of a file is 0.")
1bbd0b84 2089#define FUNC_NAME s_scm_set_port_line_x
d043d8c2 2090{
360fc44c 2091 port = SCM_COERCE_OUTPORT (port);
34d19ef6 2092 SCM_VALIDATE_OPENPORT (1, port);
651f2cd2 2093 SCM_PTAB_ENTRY (port)->line_number = scm_to_long (line);
564478fd 2094 return SCM_UNSPECIFIED;
d043d8c2 2095}
1bbd0b84 2096#undef FUNC_NAME
d043d8c2 2097
a1ec6916 2098SCM_DEFINE (scm_port_column, "port-column", 1, 0, 0,
1bbd0b84 2099 (SCM port),
a150979d
KR
2100 "Return the current column number of @var{port}.\n"
2101 "If the number is\n"
b380b885
MD
2102 "unknown, the result is #f. Otherwise, the result is a 0-origin integer\n"
2103 "- i.e. the first character of the first line is line 0, column 0.\n"
2104 "(However, when you display a file position, for example in an error\n"
650a1cf9 2105 "message, we recommend you add 1 to get 1-origin integers. This is\n"
b380b885
MD
2106 "because lines and column numbers traditionally start with 1, and that is\n"
2107 "what non-programmers will find most natural.)")
1bbd0b84 2108#define FUNC_NAME s_scm_port_column
0f2d19dd 2109{
78446828 2110 port = SCM_COERCE_OUTPORT (port);
34d19ef6 2111 SCM_VALIDATE_OPENPORT (1, port);
e11e83f3 2112 return scm_from_int (SCM_COL (port));
0f2d19dd 2113}
1bbd0b84 2114#undef FUNC_NAME
0f2d19dd 2115
a1ec6916 2116SCM_DEFINE (scm_set_port_column_x, "set-port-column!", 2, 0, 0,
1bbd0b84 2117 (SCM port, SCM column),
a150979d
KR
2118 "Set the current column of @var{port}. Before reading the first\n"
2119 "character on a line the column should be 0.")
1bbd0b84 2120#define FUNC_NAME s_scm_set_port_column_x
d043d8c2 2121{
360fc44c 2122 port = SCM_COERCE_OUTPORT (port);
34d19ef6 2123 SCM_VALIDATE_OPENPORT (1, port);
a55c2b68 2124 SCM_PTAB_ENTRY (port)->column_number = scm_to_int (column);
564478fd 2125 return SCM_UNSPECIFIED;
d043d8c2 2126}
1bbd0b84 2127#undef FUNC_NAME
d043d8c2 2128
a1ec6916 2129SCM_DEFINE (scm_port_filename, "port-filename", 1, 0, 0,
1bbd0b84 2130 (SCM port),
ac012a27
AW
2131 "Return the filename associated with @var{port}, or @code{#f}\n"
2132 "if no filename is associated with the port.")
1bbd0b84 2133#define FUNC_NAME s_scm_port_filename
0f2d19dd 2134{
78446828 2135 port = SCM_COERCE_OUTPORT (port);
34d19ef6 2136 SCM_VALIDATE_OPENPORT (1, port);
b24b5e13 2137 return SCM_FILENAME (port);
0f2d19dd 2138}
1bbd0b84 2139#undef FUNC_NAME
0f2d19dd 2140
a1ec6916 2141SCM_DEFINE (scm_set_port_filename_x, "set-port-filename!", 2, 0, 0,
1bbd0b84 2142 (SCM port, SCM filename),
b380b885
MD
2143 "Change the filename associated with @var{port}, using the current input\n"
2144 "port if none is specified. Note that this does not change the port's\n"
2145 "source of data, but only the value that is returned by\n"
2146 "@code{port-filename} and reported in diagnostic output.")
1bbd0b84 2147#define FUNC_NAME s_scm_set_port_filename_x
d14af9f2 2148{
360fc44c 2149 port = SCM_COERCE_OUTPORT (port);
34d19ef6 2150 SCM_VALIDATE_OPENPORT (1, port);
360fc44c 2151 /* We allow the user to set the filename to whatever he likes. */
b24b5e13
DH
2152 SCM_SET_FILENAME (port, filename);
2153 return SCM_UNSPECIFIED;
d14af9f2 2154}
1bbd0b84 2155#undef FUNC_NAME
d14af9f2 2156
d6a6989e
LC
2157/* A fluid specifying the default encoding for newly created ports. If it is
2158 a string, that is the encoding. If it is #f, it is in the "native"
2159 (Latin-1) encoding. */
2160SCM_VARIABLE (default_port_encoding_var, "%default-port-encoding");
2161
889975e5
MG
2162static int scm_port_encoding_init = 0;
2163
9d9c66ba
LC
2164/* Use ENCODING as the default encoding for future ports. */
2165void
2166scm_i_set_default_port_encoding (const char *encoding)
2167{
2168 if (!scm_port_encoding_init
2169 || !scm_is_fluid (SCM_VARIABLE_REF (default_port_encoding_var)))
2170 scm_misc_error (NULL, "tried to set port encoding fluid before it is initialized",
2171 SCM_EOL);
2172
2173 if (encoding == NULL
2174 || !strcmp (encoding, "ASCII")
2175 || !strcmp (encoding, "ANSI_X3.4-1968")
2176 || !strcmp (encoding, "ISO-8859-1"))
2177 scm_fluid_set_x (SCM_VARIABLE_REF (default_port_encoding_var), SCM_BOOL_F);
2178 else
2179 scm_fluid_set_x (SCM_VARIABLE_REF (default_port_encoding_var),
2180 scm_from_locale_string (encoding));
2181}
2182
2183/* Return the name of the default encoding for newly created ports; a
2184 return value of NULL means "ISO-8859-1". */
889975e5 2185const char *
9d9c66ba 2186scm_i_default_port_encoding (void)
889975e5 2187{
9d9c66ba
LC
2188 if (!scm_port_encoding_init)
2189 return NULL;
2190 else if (!scm_is_fluid (SCM_VARIABLE_REF (default_port_encoding_var)))
2191 return NULL;
2192 else
889975e5 2193 {
9d9c66ba
LC
2194 SCM encoding;
2195
2196 encoding = scm_fluid_ref (SCM_VARIABLE_REF (default_port_encoding_var));
2197 if (!scm_is_string (encoding))
889975e5
MG
2198 return NULL;
2199 else
9d9c66ba 2200 return scm_i_string_chars (encoding);
889975e5
MG
2201 }
2202}
2203
889975e5 2204void
064c27c4 2205scm_i_set_port_encoding_x (SCM port, const char *encoding)
889975e5 2206{
889975e5 2207 scm_t_port *pt;
9d9c66ba 2208 iconv_t new_input_cd, new_output_cd;
889975e5 2209
9d9c66ba
LC
2210 new_input_cd = (iconv_t) -1;
2211 new_output_cd = (iconv_t) -1;
f4bc4e59 2212
9d9c66ba
LC
2213 /* Set the character encoding for this port. */
2214 pt = SCM_PTAB_ENTRY (port);
f4bc4e59 2215
9d9c66ba
LC
2216 if (encoding == NULL)
2217 encoding = "ISO-8859-1";
f4bc4e59 2218
7b292a9d
LC
2219 if (pt->encoding != encoding)
2220 pt->encoding = scm_gc_strdup (encoding, "port");
d9544bf0 2221
7b292a9d
LC
2222 /* If ENCODING is UTF-8, then no conversion descriptor is opened
2223 because we do I/O ourselves. This saves 100+ KiB for each
2224 descriptor. */
2225 if (strcmp (encoding, "UTF-8"))
9d9c66ba 2226 {
7b292a9d
LC
2227 if (SCM_CELL_WORD_0 (port) & SCM_RDNG)
2228 {
2229 /* Open an input iconv conversion descriptor, from ENCODING
2230 to UTF-8. We choose UTF-8, not UTF-32, because iconv
2231 implementations can typically convert from anything to
2232 UTF-8, but not to UTF-32 (see
2233 <http://lists.gnu.org/archive/html/bug-libunistring/2010-09/msg00007.html>). */
2234 new_input_cd = iconv_open ("UTF-8", encoding);
2235 if (new_input_cd == (iconv_t) -1)
2236 goto invalid_encoding;
2237 }
f4bc4e59 2238
7b292a9d 2239 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
f4bc4e59 2240 {
7b292a9d
LC
2241 new_output_cd = iconv_open (encoding, "UTF-8");
2242 if (new_output_cd == (iconv_t) -1)
2243 {
2244 if (new_input_cd != (iconv_t) -1)
2245 iconv_close (new_input_cd);
2246 goto invalid_encoding;
2247 }
f4bc4e59 2248 }
9d9c66ba 2249 }
f4bc4e59 2250
9d9c66ba
LC
2251 if (pt->input_cd != (iconv_t) -1)
2252 iconv_close (pt->input_cd);
2253 if (pt->output_cd != (iconv_t) -1)
2254 iconv_close (pt->output_cd);
f4bc4e59 2255
9d9c66ba
LC
2256 pt->input_cd = new_input_cd;
2257 pt->output_cd = new_output_cd;
f4bc4e59
LC
2258
2259 return;
2260
2261 invalid_encoding:
2262 {
2263 SCM err;
064c27c4
LC
2264 err = scm_from_locale_string (encoding);
2265 scm_misc_error ("scm_i_set_port_encoding_x",
2266 "invalid or unknown character encoding ~s",
f4bc4e59
LC
2267 scm_list_1 (err));
2268 }
889975e5
MG
2269}
2270
2271SCM_DEFINE (scm_port_encoding, "port-encoding", 1, 0, 0,
2272 (SCM port),
2273 "Returns, as a string, the character encoding that @var{port}\n"
2274 "uses to interpret its input and output.\n")
2275#define FUNC_NAME s_scm_port_encoding
2276{
2277 scm_t_port *pt;
2278 const char *enc;
2279
2280 SCM_VALIDATE_PORT (1, port);
2281
2282 pt = SCM_PTAB_ENTRY (port);
9d9c66ba 2283 enc = pt->encoding;
889975e5
MG
2284 if (enc)
2285 return scm_from_locale_string (pt->encoding);
2286 else
0af34a3f 2287 return SCM_BOOL_F;
889975e5
MG
2288}
2289#undef FUNC_NAME
d6a6989e 2290
889975e5
MG
2291SCM_DEFINE (scm_set_port_encoding_x, "set-port-encoding!", 2, 0, 0,
2292 (SCM port, SCM enc),
2293 "Sets the character encoding that will be used to interpret all\n"
2294 "port I/O. New ports are created with the encoding\n"
2295 "appropriate for the current locale if @code{setlocale} has \n"
2296 "been called or ISO-8859-1 otherwise\n"
2297 "and this procedure can be used to modify that encoding.\n")
889975e5
MG
2298#define FUNC_NAME s_scm_set_port_encoding_x
2299{
2300 char *enc_str;
889975e5
MG
2301
2302 SCM_VALIDATE_PORT (1, port);
2303 SCM_VALIDATE_STRING (2, enc);
2304
2305 enc_str = scm_to_locale_string (enc);
da288f50 2306 scm_i_set_port_encoding_x (port, enc_str);
3e05fc04 2307 free (enc_str);
da288f50 2308
889975e5
MG
2309 return SCM_UNSPECIFIED;
2310}
2311#undef FUNC_NAME
2312
2313
2314/* This determines how conversions handle unconvertible characters. */
2315SCM_GLOBAL_VARIABLE (scm_conversion_strategy, "%port-conversion-strategy");
2316static int scm_conversion_strategy_init = 0;
2317
2318scm_t_string_failed_conversion_handler
2319scm_i_get_conversion_strategy (SCM port)
2320{
2321 SCM encoding;
2322
2323 if (scm_is_false (port))
2324 {
2325 if (!scm_conversion_strategy_init
2326 || !scm_is_fluid (SCM_VARIABLE_REF (scm_conversion_strategy)))
2327 return SCM_FAILED_CONVERSION_QUESTION_MARK;
2328 else
2329 {
2330 encoding = scm_fluid_ref (SCM_VARIABLE_REF (scm_conversion_strategy));
2331 if (scm_is_false (encoding))
2332 return SCM_FAILED_CONVERSION_QUESTION_MARK;
2333 else
2334 return (scm_t_string_failed_conversion_handler) scm_to_int (encoding);
2335 }
2336 }
2337 else
2338 {
2339 scm_t_port *pt;
2340 pt = SCM_PTAB_ENTRY (port);
e1ee45e7 2341 return pt->ilseq_handler;
889975e5
MG
2342 }
2343
2344}
2345
2346void
2347scm_i_set_conversion_strategy_x (SCM port,
2348 scm_t_string_failed_conversion_handler handler)
2349{
2350 SCM strategy;
2351 scm_t_port *pt;
2352
2353 strategy = scm_from_int ((int) handler);
2354
2355 if (scm_is_false (port))
2356 {
2357 /* Set the default encoding for future ports. */
2e16a342 2358 if (!scm_conversion_strategy_init
889975e5
MG
2359 || !scm_is_fluid (SCM_VARIABLE_REF (scm_conversion_strategy)))
2360 scm_misc_error (NULL, "tried to set conversion strategy fluid before it is initialized",
2361 SCM_EOL);
2362 scm_fluid_set_x (SCM_VARIABLE_REF (scm_conversion_strategy), strategy);
2363 }
2364 else
2365 {
2366 /* Set the character encoding for this port. */
2367 pt = SCM_PTAB_ENTRY (port);
2368 pt->ilseq_handler = handler;
2369 }
2370}
2371
2372SCM_DEFINE (scm_port_conversion_strategy, "port-conversion-strategy",
2373 1, 0, 0, (SCM port),
2374 "Returns the behavior of the port when handling a character that\n"
2375 "is not representable in the port's current encoding.\n"
2376 "It returns the symbol @code{error} if unrepresentable characters\n"
2377 "should cause exceptions, @code{substitute} if the port should\n"
2378 "try to replace unrepresentable characters with question marks or\n"
2379 "approximate characters, or @code{escape} if unrepresentable\n"
2380 "characters should be converted to string escapes.\n"
2381 "\n"
2382 "If @var{port} is @code{#f}, then the current default behavior\n"
2383 "will be returned. New ports will have this default behavior\n"
2384 "when they are created.\n")
2385#define FUNC_NAME s_scm_port_conversion_strategy
2386{
2387 scm_t_string_failed_conversion_handler h;
2388
2389 SCM_VALIDATE_OPPORT (1, port);
2390
2391 if (!scm_is_false (port))
2392 {
2393 SCM_VALIDATE_OPPORT (1, port);
2394 }
2395
2396 h = scm_i_get_conversion_strategy (port);
2397 if (h == SCM_FAILED_CONVERSION_ERROR)
4a655e50 2398 return scm_from_latin1_symbol ("error");
889975e5 2399 else if (h == SCM_FAILED_CONVERSION_QUESTION_MARK)
4a655e50 2400 return scm_from_latin1_symbol ("substitute");
889975e5 2401 else if (h == SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE)
4a655e50 2402 return scm_from_latin1_symbol ("escape");
889975e5
MG
2403 else
2404 abort ();
2405
2406 /* Never gets here. */
2407 return SCM_UNDEFINED;
2408}
2409#undef FUNC_NAME
2410
2411SCM_DEFINE (scm_set_port_conversion_strategy_x, "set-port-conversion-strategy!",
2412 2, 0, 0,
2413 (SCM port, SCM sym),
2414 "Sets the behavior of the interpreter when outputting a character\n"
2415 "that is not representable in the port's current encoding.\n"
2416 "@var{sym} can be either @code{'error}, @code{'substitute}, or\n"
2417 "@code{'escape}. If it is @code{'error}, an error will be thrown\n"
2418 "when an unconvertible character is encountered. If it is\n"
2419 "@code{'substitute}, then unconvertible characters will \n"
2420 "be replaced with approximate characters, or with question marks\n"
2421 "if no approximately correct character is available.\n"
2422 "If it is @code{'escape},\n"
2423 "it will appear as a hex escape when output.\n"
2424 "\n"
2425 "If @var{port} is an open port, the conversion error behavior\n"
2426 "is set for that port. If it is @code{#f}, it is set as the\n"
2427 "default behavior for any future ports that get created in\n"
2428 "this thread.\n")
2429#define FUNC_NAME s_scm_set_port_conversion_strategy_x
2430{
2431 SCM err;
2432 SCM qm;
2433 SCM esc;
2434
2435 if (!scm_is_false (port))
2436 {
2437 SCM_VALIDATE_OPPORT (1, port);
2438 }
2439
4a655e50 2440 err = scm_from_latin1_symbol ("error");
889975e5
MG
2441 if (scm_is_true (scm_eqv_p (sym, err)))
2442 {
2443 scm_i_set_conversion_strategy_x (port, SCM_FAILED_CONVERSION_ERROR);
2444 return SCM_UNSPECIFIED;
2445 }
2446
4a655e50 2447 qm = scm_from_latin1_symbol ("substitute");
889975e5
MG
2448 if (scm_is_true (scm_eqv_p (sym, qm)))
2449 {
2450 scm_i_set_conversion_strategy_x (port,
2451 SCM_FAILED_CONVERSION_QUESTION_MARK);
2452 return SCM_UNSPECIFIED;
2453 }
2454
4a655e50 2455 esc = scm_from_latin1_symbol ("escape");
889975e5
MG
2456 if (scm_is_true (scm_eqv_p (sym, esc)))
2457 {
2458 scm_i_set_conversion_strategy_x (port,
2459 SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE);
2460 return SCM_UNSPECIFIED;
2461 }
2462
2463 SCM_MISC_ERROR ("unknown conversion behavior ~s", scm_list_1 (sym));
2464
2465 return SCM_UNSPECIFIED;
2466}
2467#undef FUNC_NAME
2468
2469
2470
f12733c9
MD
2471void
2472scm_print_port_mode (SCM exp, SCM port)
2473{
2474 scm_puts (SCM_CLOSEDP (exp)
2475 ? "closed: "
f9a64404
DH
2476 : (SCM_RDNG & SCM_CELL_WORD_0 (exp)
2477 ? (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
f12733c9
MD
2478 ? "input-output: "
2479 : "input: ")
f9a64404 2480 : (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
f12733c9
MD
2481 ? "output: "
2482 : "bogus: ")),
2483 port);
2484}
1cc91f1b 2485
f12733c9 2486int
e81d98ec 2487scm_port_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
0f2d19dd 2488{
f12733c9
MD
2489 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
2490 if (!type)
2491 type = "port";
b7f3516f 2492 scm_puts ("#<", port);
f12733c9 2493 scm_print_port_mode (exp, port);
b7f3516f
TT
2494 scm_puts (type, port);
2495 scm_putc (' ', port);
0345e278 2496 scm_uintprint (SCM_CELL_WORD_1 (exp), 16, port);
b7f3516f 2497 scm_putc ('>', port);
f12733c9 2498 return 1;
0f2d19dd
JB
2499}
2500
0f2d19dd 2501\f
ee149d03 2502
d68fee48 2503/* Void ports. */
0f2d19dd 2504
92c2555f 2505scm_t_bits scm_tc16_void_port = 0;
0f2d19dd 2506
e81d98ec 2507static int fill_input_void_port (SCM port SCM_UNUSED)
283a1a0e 2508{
70df8af6 2509 return EOF;
283a1a0e
GH
2510}
2511
31703ab8 2512static void
e81d98ec
DH
2513write_void_port (SCM port SCM_UNUSED,
2514 const void *data SCM_UNUSED,
2515 size_t size SCM_UNUSED)
31703ab8
GH
2516{
2517}
2518
d617ee18
MV
2519static SCM
2520scm_i_void_port (long mode_bits)
0f2d19dd 2521{
9de87eea 2522 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
402788a9 2523 {
da220f27
HWN
2524 SCM answer = scm_new_port_table_entry (scm_tc16_void_port);
2525 scm_t_port * pt = SCM_PTAB_ENTRY(answer);
2526
402788a9 2527 scm_port_non_buffer (pt);
402788a9
HWN
2528
2529 SCM_SETSTREAM (answer, 0);
2530 SCM_SET_CELL_TYPE (answer, scm_tc16_void_port | mode_bits);
9de87eea 2531 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
402788a9
HWN
2532 return answer;
2533 }
0f2d19dd
JB
2534}
2535
d617ee18
MV
2536SCM
2537scm_void_port (char *mode_str)
2538{
2539 return scm_i_void_port (scm_mode_bits (mode_str));
2540}
2541
a1ec6916 2542SCM_DEFINE (scm_sys_make_void_port, "%make-void-port", 1, 0, 0,
1bbd0b84 2543 (SCM mode),
70df8af6 2544 "Create and return a new void port. A void port acts like\n"
bb2c02f2 2545 "@file{/dev/null}. The @var{mode} argument\n"
70df8af6 2546 "specifies the input/output modes for this port: see the\n"
b380b885 2547 "documentation for @code{open-file} in @ref{File Ports}.")
1bbd0b84 2548#define FUNC_NAME s_scm_sys_make_void_port
0f2d19dd 2549{
d617ee18 2550 return scm_i_void_port (scm_i_mode_bits (mode));
0f2d19dd 2551}
1bbd0b84 2552#undef FUNC_NAME
0f2d19dd 2553
0f2d19dd 2554\f
89545eba 2555/* Initialization. */
1cc91f1b 2556
0f2d19dd
JB
2557void
2558scm_init_ports ()
0f2d19dd 2559{
840ae05d 2560 /* lseek() symbols. */
e11e83f3
MV
2561 scm_c_define ("SEEK_SET", scm_from_int (SEEK_SET));
2562 scm_c_define ("SEEK_CUR", scm_from_int (SEEK_CUR));
2563 scm_c_define ("SEEK_END", scm_from_int (SEEK_END));
840ae05d 2564
70df8af6
GH
2565 scm_tc16_void_port = scm_make_port_type ("void", fill_input_void_port,
2566 write_void_port);
9de87eea 2567
f39448c5
AW
2568 cur_inport_fluid = scm_make_fluid ();
2569 cur_outport_fluid = scm_make_fluid ();
2570 cur_errport_fluid = scm_make_fluid ();
2571 cur_loadport_fluid = scm_make_fluid ();
9de87eea 2572
f39448c5 2573 scm_i_port_weak_hash = scm_make_weak_key_hash_table (SCM_I_MAKINUM(31));
d6a6989e 2574
a0599745 2575#include "libguile/ports.x"
889975e5 2576
d6a6989e 2577 /* Use Latin-1 as the default port encoding. */
c81c2ad3
AW
2578 SCM_VARIABLE_SET (default_port_encoding_var,
2579 scm_make_fluid_with_default (SCM_BOOL_F));
889975e5 2580 scm_port_encoding_init = 1;
d6a6989e 2581
c81c2ad3
AW
2582 SCM_VARIABLE_SET (scm_conversion_strategy,
2583 scm_make_fluid_with_default
2584 (scm_from_int ((int) SCM_FAILED_CONVERSION_QUESTION_MARK)));
889975e5
MG
2585 scm_conversion_strategy_init = 1;
2586
9670f238
AW
2587 /* These bindings are used when boot-9 turns `current-input-port' et
2588 al into parameters. They are then removed from the guile module. */
2589 scm_c_define ("%current-input-port-fluid", cur_inport_fluid);
2590 scm_c_define ("%current-output-port-fluid", cur_outport_fluid);
2591 scm_c_define ("%current-error-port-fluid", cur_errport_fluid);
0f2d19dd 2592}
89e00824
ML
2593
2594/*
2595 Local Variables:
2596 c-file-style: "gnu"
2597 End:
2598*/