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