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