symbols.c uses weak sets
[bpt/guile.git] / libguile / vports.c
CommitLineData
bf08e10f 1/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2002, 2003, 2006, 2009, 2010 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
dbb605f5 21#ifdef HAVE_CONFIG_H
fed43b8f
RB
22# include <config.h>
23#endif
0f2d19dd
JB
24
25#include <stdio.h>
e6e2e95a
MD
26#include <errno.h>
27
a0599745
MD
28#include "libguile/_scm.h"
29#include "libguile/eval.h"
30#include "libguile/chars.h"
31#include "libguile/fports.h"
32#include "libguile/root.h"
33#include "libguile/strings.h"
34#include "libguile/vectors.h"
20e6290e 35
a0599745
MD
36#include "libguile/validate.h"
37#include "libguile/vports.h"
0f2d19dd 38
95b88819
GH
39#ifdef HAVE_STRING_H
40#include <string.h>
41#endif
42
0f2d19dd
JB
43\f
44
45/* {Ports - soft ports}
46 *
47 */
48
49
92c2555f 50static scm_t_bits scm_tc16_sfport;
a98bddfd
DH
51
52
ee149d03 53static void
affc96b5 54sf_flush (SCM port)
0f2d19dd 55{
92c2555f 56 scm_t_port *pt = SCM_PTAB_ENTRY (port);
74a16888 57 SCM stream = SCM_PACK (pt->stream);
ee149d03
JB
58
59 if (pt->write_pos > pt->write_buf)
60 {
840ae05d 61 /* write the byte. */
4057a3e0
MV
62 scm_call_1 (SCM_SIMPLE_VECTOR_REF (stream, 0),
63 SCM_MAKE_CHAR (*pt->write_buf));
ee149d03
JB
64 pt->write_pos = pt->write_buf;
65
66 /* flush the output. */
67 {
4057a3e0 68 SCM f = SCM_SIMPLE_VECTOR_REF (stream, 2);
ee149d03 69
7888309b 70 if (scm_is_true (f))
fdc28395 71 scm_call_0 (f);
ee149d03
JB
72 }
73 }
0f2d19dd
JB
74}
75
31703ab8 76static void
8aa011a1 77sf_write (SCM port, const void *data, size_t size)
31703ab8 78{
74a16888 79 SCM p = SCM_PACK (SCM_STREAM (port));
31703ab8 80
bf08e10f
LC
81 /* DATA is assumed to be a locale-encoded C string, which makes it
82 hard to reliably pass binary data to a soft port. It can be
83 achieved by choosing a Latin-1 locale, though, but the recommended
84 approach is to use an R6RS "custom binary output port" instead. */
4057a3e0
MV
85 scm_call_1 (SCM_SIMPLE_VECTOR_REF (p, 1),
86 scm_from_locale_stringn ((char *) data, size));
31703ab8 87}
1cc91f1b 88
ee149d03
JB
89/* calling the flush proc (element 2) is in case old code needs it,
90 but perhaps softports could the use port buffer in the same way as
91 fports. */
92
affc96b5 93/* places a single char in the input buffer. */
0f2d19dd 94static int
affc96b5 95sf_fill_input (SCM port)
0f2d19dd 96{
74a16888 97 SCM p = SCM_PACK (SCM_STREAM (port));
0f2d19dd 98 SCM ans;
75192345 99 scm_t_port *pt;
ee149d03 100
4057a3e0 101 ans = scm_call_0 (SCM_SIMPLE_VECTOR_REF (p, 3)); /* get char. */
7888309b 102 if (scm_is_false (ans) || SCM_EOF_OBJECT_P (ans))
0f2d19dd 103 return EOF;
7866a09b 104 SCM_ASSERT (SCM_CHARP (ans), ans, SCM_ARG1, "sf_fill_input");
75192345
MG
105 pt = SCM_PTAB_ENTRY (port);
106
107 if (pt->encoding == NULL)
108 {
109 scm_t_port *pt = SCM_PTAB_ENTRY (port);
110
111 *pt->read_buf = SCM_CHAR (ans);
112 pt->read_pos = pt->read_buf;
113 pt->read_end = pt->read_buf + 1;
114 return *pt->read_buf;
115 }
116 else
117 scm_ungetc (SCM_CHAR (ans), port);
118 return SCM_CHAR (ans);
0f2d19dd
JB
119}
120
1cc91f1b 121
0f2d19dd 122static int
affc96b5 123sf_close (SCM port)
0f2d19dd 124{
74a16888 125 SCM p = SCM_PACK (SCM_STREAM (port));
4057a3e0 126 SCM f = SCM_SIMPLE_VECTOR_REF (p, 4);
7888309b 127 if (scm_is_false (f))
0f2d19dd 128 return 0;
fdc28395 129 f = scm_call_0 (f);
0f2d19dd 130 errno = 0;
7888309b 131 return scm_is_false (f) ? EOF : 0;
0f2d19dd
JB
132}
133
134
34010f56
NJ
135static int
136sf_input_waiting (SCM port)
137{
138 SCM p = SCM_PACK (SCM_STREAM (port));
4057a3e0 139 if (SCM_SIMPLE_VECTOR_LENGTH (p) >= 6)
34010f56 140 {
4057a3e0 141 SCM f = SCM_SIMPLE_VECTOR_REF (p, 5);
7888309b 142 if (scm_is_true (f))
b9bd8526 143 return scm_to_int (scm_call_0 (f));
34010f56
NJ
144 }
145 /* Default is such that char-ready? for soft ports returns #t, as it
146 did before this extension was implemented. */
147 return 1;
148}
149
150
0f2d19dd 151
3b3b36dd 152SCM_DEFINE (scm_make_soft_port, "make-soft-port", 2, 0, 0,
1bbd0b84 153 (SCM pv, SCM modes),
1e6808ea 154 "Return a port capable of receiving or delivering characters as\n"
d3818c29 155 "specified by the @var{modes} string (@pxref{File Ports,\n"
34010f56 156 "open-file}). @var{pv} must be a vector of length 5 or 6. Its\n"
1e6808ea
MG
157 "components are as follows:\n"
158 "\n"
d3818c29
MD
159 "@enumerate 0\n"
160 "@item\n"
161 "procedure accepting one character for output\n"
162 "@item\n"
163 "procedure accepting a string for output\n"
164 "@item\n"
165 "thunk for flushing output\n"
166 "@item\n"
167 "thunk for getting one character\n"
168 "@item\n"
169 "thunk for closing port (not by garbage collection)\n"
34010f56
NJ
170 "@item\n"
171 "(if present and not @code{#f}) thunk for computing the number of\n"
172 "characters that can be read from the port without blocking.\n"
1e6808ea
MG
173 "@end enumerate\n"
174 "\n"
d3818c29 175 "For an output-only port only elements 0, 1, 2, and 4 need be\n"
1e6808ea
MG
176 "procedures. For an input-only port only elements 3 and 4 need\n"
177 "be procedures. Thunks 2 and 4 can instead be @code{#f} if\n"
178 "there is no useful operation for them to perform.\n"
179 "\n"
180 "If thunk 3 returns @code{#f} or an @code{eof-object}\n"
7a095584 181 "(@pxref{Input, eof-object?, ,r5rs, The Revised^5 Report on\n"
1e6808ea
MG
182 "Scheme}) it indicates that the port has reached end-of-file.\n"
183 "For example:\n"
184 "\n"
185 "@lisp\n"
d3818c29
MD
186 "(define stdout (current-output-port))\n"
187 "(define p (make-soft-port\n"
188 " (vector\n"
189 " (lambda (c) (write c stdout))\n"
190 " (lambda (s) (display s stdout))\n"
191 " (lambda () (display \".\" stdout))\n"
192 " (lambda () (char-upcase (read-char)))\n"
193 " (lambda () (display \"@@\" stdout)))\n"
1e6808ea
MG
194 " \"rw\"))\n"
195 "\n"
ee826bae 196 "(write p p) @result{} #<input-output: soft 8081e20>\n"
1e6808ea 197 "@end lisp")
1bbd0b84 198#define FUNC_NAME s_scm_make_soft_port
0f2d19dd 199{
34010f56 200 int vlen;
92c2555f 201 scm_t_port *pt;
0f2d19dd 202 SCM z;
34010f56
NJ
203
204 SCM_VALIDATE_VECTOR (1, pv);
4057a3e0 205 vlen = SCM_SIMPLE_VECTOR_LENGTH (pv);
34010f56 206 SCM_ASSERT ((vlen == 5) || (vlen == 6), pv, 1, FUNC_NAME);
a6d9e5ab 207 SCM_VALIDATE_STRING (2, modes);
402788a9 208
9de87eea 209 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
da220f27 210 z = scm_new_port_table_entry (scm_tc16_sfport);
f07c886a 211 pt = SCM_PTAB_ENTRY (z);
70df8af6 212 scm_port_non_buffer (pt);
d617ee18 213 SCM_SET_CELL_TYPE (z, scm_tc16_sfport | scm_i_mode_bits (modes));
da220f27 214
74a16888 215 SCM_SETSTREAM (z, SCM_UNPACK (pv));
9de87eea 216 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
0f2d19dd
JB
217 return z;
218}
1bbd0b84 219#undef FUNC_NAME
0f2d19dd 220
1cc91f1b 221
92c2555f 222static scm_t_bits
10efca5b 223scm_make_sfptob ()
0f2d19dd 224{
92c2555f 225 scm_t_bits tc = scm_make_port_type ("soft", sf_fill_input, sf_write);
a98bddfd 226
affc96b5
GH
227 scm_set_port_flush (tc, sf_flush);
228 scm_set_port_close (tc, sf_close);
34010f56 229 scm_set_port_input_waiting (tc, sf_input_waiting);
a98bddfd
DH
230
231 return tc;
10efca5b 232}
1cc91f1b 233
0f2d19dd
JB
234void
235scm_init_vports ()
0f2d19dd 236{
a98bddfd
DH
237 scm_tc16_sfport = scm_make_sfptob ();
238
a0599745 239#include "libguile/vports.x"
0f2d19dd 240}
89e00824
ML
241
242/*
243 Local Variables:
244 c-file-style: "gnu"
245 End:
246*/