Only include strings.h where it is actually needed.
[bpt/guile.git] / libguile / strports.c
CommitLineData
754c9491 1/* Copyright (C) 1995,1996,1998,1999 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
0f2d19dd
JB
45\f
46
0f2d19dd 47#include "_scm.h"
681b9005
MD
48
49#include <stdio.h>
50#ifdef HAVE_UNISTD_H
51#include <unistd.h>
52#endif
53
20e6290e
JB
54#include "unif.h"
55#include "eval.h"
f04d8caf 56#include "ports.h"
cd07a097 57#include "read.h"
7ab3fdd5 58#include "strings.h"
003d1fd0 59#include "vectors.h"
20e6290e
JB
60
61#include "strports.h"
0f2d19dd 62
95b88819
GH
63#ifdef HAVE_STRING_H
64#include <string.h>
65#endif
66
0f2d19dd
JB
67\f
68
69/* {Ports - string ports}
70 *
71 */
72
3fe6190f
GH
73/* NOTES:
74 write_buf/write_end point to the ends of the allocated string.
75 read_buf/read_end in principle point to the part of the string which
76 has been written to, but this is only updated after a flush.
77 read_pos and write_pos in principle should be equal, but this is only true
61e452ba 78 when rw_active is SCM_PORT_NEITHER.
3fe6190f 79*/
1cc91f1b 80
ee149d03
JB
81static int
82stfill_buffer (SCM port)
0f2d19dd 83{
754c9491 84 scm_port *pt = SCM_PTAB_ENTRY (port);
ee149d03 85
ee149d03
JB
86 if (pt->read_pos >= pt->read_end)
87 return EOF;
88 else
41b0806d 89 return scm_return_first_int (*pt->read_pos, port);
0f2d19dd
JB
90}
91
3fe6190f
GH
92/* change the size of a port's string to new_size. this doesn't
93 change read_buf_size. */
754c9491 94static void
3fe6190f 95st_resize_port (scm_port *pt, off_t new_size)
754c9491 96{
3fe6190f
GH
97 off_t index = pt->write_pos - pt->write_buf;
98
99 pt->write_buf_size = new_size;
100
101 scm_vector_set_length_x (pt->stream, SCM_MAKINUM (new_size));
754c9491 102
754c9491
JB
103 /* reset buffer in case reallocation moved the string. */
104 {
754c9491 105 pt->read_buf = pt->write_buf = SCM_CHARS (pt->stream);
3fe6190f
GH
106 pt->read_pos = pt->write_pos = pt->write_buf + index;
107 pt->write_end = pt->write_buf + pt->write_buf_size;
108 pt->read_end = pt->read_buf + pt->read_buf_size;
754c9491
JB
109 }
110}
111
3fe6190f
GH
112/* amount by which write_buf is expanded. */
113#define SCM_WRITE_BLOCK 80
114
115/* ensure that write_pos < write_end by enlarging the buffer when
116 necessary. update read_buf to account for written chars. */
ee149d03
JB
117static void
118st_flush (SCM port)
0f2d19dd 119{
754c9491 120 scm_port *pt = SCM_PTAB_ENTRY (port);
ee149d03
JB
121
122 if (pt->write_pos == pt->write_end)
123 {
3fe6190f 124 st_resize_port (pt, pt->write_buf_size + SCM_WRITE_BLOCK);
754c9491
JB
125 }
126 pt->read_pos = pt->write_pos;
3fe6190f
GH
127 if (pt->read_pos > pt->read_end)
128 {
129 pt->read_end = (unsigned char *) pt->read_pos;
130 pt->read_buf_size = pt->read_end - pt->read_buf;
131 }
61e452ba 132 pt->rw_active = SCM_PORT_NEITHER;
754c9491
JB
133}
134
31703ab8 135static void
8aa011a1 136st_write (SCM port, const void *data, size_t size)
31703ab8
GH
137{
138 scm_port *pt = SCM_PTAB_ENTRY (port);
139 const char *input = (char *) data;
140
141 while (size > 0)
142 {
143 int space = pt->write_end - pt->write_pos;
144 int write_len = (size > space) ? space : size;
145
146 strncpy (pt->write_pos, input, write_len);
147 pt->write_pos += write_len;
148 size -= write_len;
149 input += write_len;
150 if (write_len == space)
151 st_flush (port);
152 }
153}
154
754c9491 155static void
affc96b5 156st_end_input (SCM port, int offset)
754c9491
JB
157{
158 scm_port *pt = SCM_PTAB_ENTRY (port);
7dcb364d 159
cd19d608
GH
160 if (pt->read_pos - pt->read_buf < offset)
161 scm_misc_error ("st_end_input", "negative position", SCM_EOL);
162
a3c8b9fc 163 pt->write_pos = (unsigned char *) (pt->read_pos = pt->read_pos - offset);
61e452ba 164 pt->rw_active = SCM_PORT_NEITHER;
754c9491
JB
165}
166
167static off_t
168st_seek (SCM port, off_t offset, int whence)
169{
170 scm_port *pt = SCM_PTAB_ENTRY (port);
171 off_t target;
172
7dcb364d
GH
173 if (pt->rw_active == SCM_PORT_READ && offset == 0 && whence == SEEK_CUR)
174 /* special case to avoid disturbing the unread-char buffer. */
754c9491 175 {
7dcb364d
GH
176 if (pt->read_buf == pt->putback_buf)
177 {
178 target = pt->saved_read_pos - pt->saved_read_buf
179 - (pt->read_end - pt->read_pos);
180 }
181 else
182 {
183 target = pt->read_pos - pt->read_buf;
184 }
754c9491 185 }
7dcb364d
GH
186 else
187 /* all other cases. */
754c9491 188 {
7dcb364d
GH
189 if (pt->rw_active == SCM_PORT_WRITE)
190 st_flush (port);
191
192 if (pt->rw_active == SCM_PORT_READ)
193 scm_end_input (port);
194
195 switch (whence)
196 {
197 case SEEK_CUR:
198 target = pt->read_pos - pt->read_buf + offset;
199 break;
200 case SEEK_END:
201 target = pt->read_end - pt->read_buf + offset;
202 break;
203 default: /* SEEK_SET */
204 target = offset;
205 break;
206 }
207
208 if (target < 0)
209 scm_misc_error ("st_seek", "negative offset", SCM_EOL);
210
211 if (target >= pt->write_buf_size)
3fe6190f 212 {
f1267706 213 if (!(SCM_UNPACK_CAR (port) & SCM_WRTNG))
3fe6190f 214 {
7dcb364d
GH
215 if (target > pt->write_buf_size)
216 {
217 scm_misc_error ("st_seek",
218 "seek past end of read-only strport",
219 SCM_EOL);
220 }
221 }
222 else
223 {
224 st_resize_port (pt, target + (target == pt->write_buf_size
225 ? SCM_WRITE_BLOCK
226 : 0));
3fe6190f
GH
227 }
228 }
7dcb364d
GH
229 pt->read_pos = pt->write_pos = pt->read_buf + target;
230 if (pt->read_pos > pt->read_end)
3fe6190f 231 {
7dcb364d
GH
232 pt->read_end = (unsigned char *) pt->read_pos;
233 pt->read_buf_size = pt->read_end - pt->read_buf;
3fe6190f 234 }
ee149d03 235 }
754c9491
JB
236 return target;
237}
238
239static void
affc96b5 240st_truncate (SCM port, off_t length)
754c9491
JB
241{
242 scm_port *pt = SCM_PTAB_ENTRY (port);
3fe6190f
GH
243
244 if (length > pt->write_buf_size)
245 st_resize_port (pt, length);
246
247 pt->read_buf_size = length;
248 pt->read_end = pt->read_buf + length;
249 if (pt->read_pos > pt->read_end)
250 pt->read_pos = pt->read_end;
754c9491 251
3fe6190f
GH
252 if (pt->write_pos > pt->read_end)
253 pt->write_pos = pt->read_end;
0f2d19dd
JB
254}
255
0f2d19dd 256SCM
1bbd0b84 257scm_mkstrport (SCM pos, SCM str, long modes, const char *caller)
0f2d19dd
JB
258{
259 SCM z;
754c9491
JB
260 scm_port *pt;
261 int str_len;
262
263 SCM_ASSERT (SCM_INUMP(pos) && SCM_INUM(pos) >= 0, pos, SCM_ARG1, caller);
0c95b57d 264 SCM_ASSERT (SCM_ROSTRINGP(str), str, SCM_ARG1, caller);
754c9491
JB
265 str_len = SCM_ROLENGTH (str);
266 if (SCM_INUM (pos) > str_len)
267 scm_out_of_range (caller, pos);
268 if (!((modes & SCM_WRTNG) || (modes & SCM_RDNG)))
269 scm_misc_error ("scm_mkstrport", "port must read or write", SCM_EOL);
0f2d19dd
JB
270 SCM_NEWCELL (z);
271 SCM_DEFER_INTS;
272 pt = scm_add_to_port_table (z);
a6c64c3c 273 SCM_SETCAR (z, scm_tc16_strport | modes);
0f2d19dd 274 SCM_SETPTAB_ENTRY (z, pt);
754c9491 275 SCM_SETSTREAM (z, str);
ee149d03 276 pt->write_buf = pt->read_buf = SCM_ROCHARS (str);
754c9491
JB
277 pt->read_pos = pt->write_pos = pt->read_buf + SCM_INUM (pos);
278 pt->write_buf_size = pt->read_buf_size = str_len;
279 pt->write_end = pt->read_end = pt->read_buf + pt->read_buf_size;
3fe6190f 280
0de97b83 281 pt->rw_random = 1;
3fe6190f 282
0f2d19dd 283 SCM_ALLOW_INTS;
3fe6190f
GH
284
285 /* ensure write_pos is writable. */
754c9491
JB
286 if ((modes & SCM_WRTNG) && pt->write_pos == pt->write_end)
287 st_flush (z);
0f2d19dd
JB
288 return z;
289}
290
3fe6190f
GH
291/* create a new string from a string port's buffer. */
292SCM scm_strport_to_string (SCM port)
293{
294 scm_port *pt = SCM_PTAB_ENTRY (port);
295
296 if (pt->rw_active == SCM_PORT_WRITE)
297 st_flush (port);
e684c60f 298 return scm_makfromstr (pt->read_buf, pt->read_buf_size, 0);
3fe6190f
GH
299}
300
3b3b36dd 301SCM_DEFINE (scm_call_with_output_string, "call-with-output-string", 1, 0, 0,
1bbd0b84 302 (SCM proc),
b380b885
MD
303 "Calls the one-argument procedure @var{proc} with a newly created output\n"
304 "port. When the function returns, the string composed of the characters\n"
305 "written into the port is returned.")
1bbd0b84 306#define FUNC_NAME s_scm_call_with_output_string
0f2d19dd
JB
307{
308 SCM p;
754c9491
JB
309
310 p = scm_mkstrport (SCM_INUM0,
311 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
312 SCM_OPN | SCM_WRTNG,
1bbd0b84 313 FUNC_NAME);
0f2d19dd 314 scm_apply (proc, p, scm_listofnull);
3fe6190f
GH
315
316 return scm_strport_to_string (p);
0f2d19dd 317}
1bbd0b84 318#undef FUNC_NAME
0f2d19dd
JB
319
320
321
322/* Return a Scheme string obtained by printing a given object.
323 */
324
1cc91f1b 325
0f2d19dd 326SCM
1bbd0b84 327scm_strprint_obj (SCM obj)
0f2d19dd
JB
328{
329 SCM str;
330 SCM port;
331
3fe6190f
GH
332 str = scm_makstr (0, 0);
333 port = scm_mkstrport (SCM_INUM0, str, SCM_OPN | SCM_WRTNG, "scm_strprint_obj");
87818069 334 scm_prin1 (obj, port, 1);
0f2d19dd 335 {
3fe6190f 336 return scm_strport_to_string (port);
0f2d19dd
JB
337 }
338}
339
340
341
342
3b3b36dd 343SCM_DEFINE (scm_call_with_input_string, "call-with-input-string", 2, 0, 0,
1bbd0b84 344 (SCM str, SCM proc),
b380b885
MD
345 "Calls the one-argument procedure @var{proc} with a newly created input\n"
346 "port from which @var{string}'s contents may be read. The value yielded\n"
347 "by the @var{proc} is returned.")
1bbd0b84 348#define FUNC_NAME s_scm_call_with_input_string
0f2d19dd 349{
1bbd0b84 350 SCM p = scm_mkstrport(SCM_INUM0, str, SCM_OPN | SCM_RDNG, FUNC_NAME);
0f2d19dd
JB
351 return scm_apply (proc, p, scm_listofnull);
352}
1bbd0b84 353#undef FUNC_NAME
0f2d19dd 354
1cc91f1b 355
cd07a097 356
a8aa30d8
MD
357/* Given a null-terminated string EXPR containing a Scheme expression
358 read it, and return it as an SCM value. */
359SCM
1bbd0b84 360scm_read_0str (char *expr)
a8aa30d8 361{
3fe6190f 362 SCM port = scm_mkstrport (SCM_INUM0,
a8aa30d8
MD
363 scm_makfrom0str (expr),
364 SCM_OPN | SCM_RDNG,
365 "scm_eval_0str");
366 SCM form;
367
368 /* Read expressions from that port; ignore the values. */
deca31e1 369 form = scm_read (port);
a8aa30d8
MD
370
371 scm_close_port (port);
372 return form;
373}
374
cd07a097 375/* Given a null-terminated string EXPR containing Scheme program text,
a8aa30d8
MD
376 evaluate it, and return the result of the last expression evaluated. */
377SCM
6e706938 378scm_eval_0str (const char *expr)
cd07a097 379{
b377f53e
JB
380 return scm_eval_string (scm_makfrom0str (expr));
381}
382
383
a1ec6916 384SCM_DEFINE (scm_eval_string, "eval-string", 1, 0, 0,
1bbd0b84 385 (SCM string),
b380b885
MD
386 "Evaluate @var{string} as the text representation of a Scheme form\n"
387 "or forms, and return whatever value they produce.")
1bbd0b84 388#define FUNC_NAME s_scm_eval_string
b377f53e 389{
3fe6190f 390 SCM port = scm_mkstrport (SCM_INUM0, string, SCM_OPN | SCM_RDNG,
cd07a097
JB
391 "scm_eval_0str");
392 SCM form;
b377f53e 393 SCM ans = SCM_UNSPECIFIED;
cd07a097
JB
394
395 /* Read expressions from that port; ignore the values. */
0c32d76c 396 while (!SCM_EOF_OBJECT_P (form = scm_read (port)))
a8aa30d8 397 ans = scm_eval_x (form);
cd07a097 398
0d7368d7
JB
399 /* Don't close the port here; if we re-enter this function via a
400 continuation, then the next time we enter it, we'll get an error.
401 It's a string port anyway, so there's no advantage to closing it
402 early. */
403
a8aa30d8 404 return ans;
cd07a097 405}
1bbd0b84 406#undef FUNC_NAME
cd07a097 407
0b6881fa 408void scm_make_stptob (void); /* Called from ports.c */
cd07a097 409
0b6881fa
MD
410void
411scm_make_stptob ()
0f2d19dd 412{
affc96b5 413 long tc = scm_make_port_type ("string", stfill_buffer, st_write);
6c747373 414 scm_set_port_mark (tc, scm_markstream);
affc96b5
GH
415 scm_set_port_end_input (tc, st_end_input);
416 scm_set_port_flush (tc, st_flush);
6c747373 417 scm_set_port_seek (tc, st_seek);
affc96b5 418 scm_set_port_truncate (tc, st_truncate);
0f2d19dd
JB
419}
420
0f2d19dd
JB
421void
422scm_init_strports ()
0f2d19dd
JB
423{
424#include "strports.x"
425}
426