Make SRFI-6 string ports Unicode-capable.
[bpt/guile.git] / libguile / strports.c
CommitLineData
478848cb
LC
1/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006,
2 * 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
0f2d19dd 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0f2d19dd 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
1bbd0b84 19
1bbd0b84 20
0f2d19dd
JB
21\f
22
dbb605f5 23#ifdef HAVE_CONFIG_H
c986274f
RB
24# include <config.h>
25#endif
26
a0599745 27#include "libguile/_scm.h"
681b9005
MD
28
29#include <stdio.h>
30#ifdef HAVE_UNISTD_H
31#include <unistd.h>
32#endif
33
691fcf66 34#include "libguile/bytevectors.h"
a0599745
MD
35#include "libguile/eval.h"
36#include "libguile/ports.h"
37#include "libguile/read.h"
38#include "libguile/root.h"
39#include "libguile/strings.h"
07bcf91d 40#include "libguile/modules.h"
fe78b6c0 41#include "libguile/validate.h"
ca13a04a 42#include "libguile/deprecation.h"
889975e5 43#include "libguile/srfi-4.h"
20e6290e 44
a0599745 45#include "libguile/strports.h"
0f2d19dd 46
95b88819
GH
47#ifdef HAVE_STRING_H
48#include <string.h>
49#endif
50
0f2d19dd
JB
51\f
52
53/* {Ports - string ports}
54 *
55 */
56
3fe6190f 57/* NOTES:
cc95e00a 58
691fcf66
LC
59 write_buf/write_end point to the ends of the allocated bytevector.
60 read_buf/read_end in principle point to the part of the bytevector which
3fe6190f
GH
61 has been written to, but this is only updated after a flush.
62 read_pos and write_pos in principle should be equal, but this is only true
61e452ba 63 when rw_active is SCM_PORT_NEITHER.
bf5ad0da
KR
64
65 ENHANCE-ME - output blocks:
66
67 The current code keeps an output string as a single block. That means
68 when the size is increased the entire old contents must be copied. It'd
69 be more efficient to begin a new block when the old one is full, so
70 there's no re-copying of previous data.
71
72 To make seeking efficient, keeping the pieces in a vector might be best,
73 though appending is probably the most common operation. The size of each
74 block could be progressively increased, so the bigger the string the
75 bigger the blocks.
76
77 When `get-output-string' is called the blocks have to be coalesced into a
78 string, the result could be kept as a single big block. If blocks were
79 strings then `get-output-string' could notice when there's just one and
80 return that with a copy-on-write (though repeated calls to
81 `get-output-string' are probably unlikely).
82
83 Another possibility would be to extend the port mechanism to let SCM
84 strings come through directly from `display' and friends. That way if a
85 big string is written it can be kept as a copy-on-write, saving time
86 copying and maybe saving some space. */
87
1cc91f1b 88
92c2555f 89scm_t_bits scm_tc16_strport;
a98bddfd
DH
90
91
ee149d03
JB
92static int
93stfill_buffer (SCM port)
0f2d19dd 94{
92c2555f 95 scm_t_port *pt = SCM_PTAB_ENTRY (port);
ee149d03 96
ee149d03
JB
97 if (pt->read_pos >= pt->read_end)
98 return EOF;
99 else
41b0806d 100 return scm_return_first_int (*pt->read_pos, port);
0f2d19dd
JB
101}
102
691fcf66
LC
103/* Change the size of a port's bytevector to NEW_SIZE. This doesn't
104 change `read_buf_size'. */
105static void
f1ce9199 106st_resize_port (scm_t_port *pt, scm_t_off new_size)
754c9491 107{
94115ae3 108 SCM old_stream = SCM_PACK (pt->stream);
691fcf66
LC
109 const signed char *src = SCM_BYTEVECTOR_CONTENTS (old_stream);
110 SCM new_stream = scm_c_make_bytevector (new_size);
111 signed char *dst = SCM_BYTEVECTOR_CONTENTS (new_stream);
112 unsigned long int old_size = SCM_BYTEVECTOR_LENGTH (old_stream);
c014a02e 113 unsigned long int min_size = min (old_size, new_size);
74a16888 114
f1ce9199 115 scm_t_off index = pt->write_pos - pt->write_buf;
3fe6190f
GH
116
117 pt->write_buf_size = new_size;
118
691fcf66 119 memcpy (dst, src, min_size);
8824ac88
MV
120
121 scm_remember_upto_here_1 (old_stream);
754c9491 122
94115ae3 123 /* reset buffer. */
754c9491 124 {
729dbac3 125 pt->stream = SCM_UNPACK (new_stream);
5a6d139b 126 pt->read_buf = pt->write_buf = (unsigned char *)dst;
3fe6190f
GH
127 pt->read_pos = pt->write_pos = pt->write_buf + index;
128 pt->write_end = pt->write_buf + pt->write_buf_size;
129 pt->read_end = pt->read_buf + pt->read_buf_size;
754c9491
JB
130 }
131}
132
d8f1c216
LC
133/* Ensure that `write_pos' < `write_end' by enlarging the buffer when
134 necessary. Update `read_buf' to account for written chars. The
135 buffer is enlarged geometrically. */
ee149d03
JB
136static void
137st_flush (SCM port)
0f2d19dd 138{
92c2555f 139 scm_t_port *pt = SCM_PTAB_ENTRY (port);
ee149d03
JB
140
141 if (pt->write_pos == pt->write_end)
d8f1c216
LC
142 st_resize_port (pt, pt->write_buf_size * 2);
143
754c9491 144 pt->read_pos = pt->write_pos;
3fe6190f
GH
145 if (pt->read_pos > pt->read_end)
146 {
147 pt->read_end = (unsigned char *) pt->read_pos;
148 pt->read_buf_size = pt->read_end - pt->read_buf;
149 }
61e452ba 150 pt->rw_active = SCM_PORT_NEITHER;
754c9491
JB
151}
152
31703ab8 153static void
8aa011a1 154st_write (SCM port, const void *data, size_t size)
31703ab8 155{
92c2555f 156 scm_t_port *pt = SCM_PTAB_ENTRY (port);
31703ab8
GH
157 const char *input = (char *) data;
158
159 while (size > 0)
160 {
161 int space = pt->write_end - pt->write_pos;
162 int write_len = (size > space) ? space : size;
163
4b8ec619 164 memcpy ((char *) pt->write_pos, input, write_len);
31703ab8
GH
165 pt->write_pos += write_len;
166 size -= write_len;
167 input += write_len;
168 if (write_len == space)
169 st_flush (port);
170 }
171}
172
754c9491 173static void
affc96b5 174st_end_input (SCM port, int offset)
754c9491 175{
92c2555f 176 scm_t_port *pt = SCM_PTAB_ENTRY (port);
7dcb364d 177
cd19d608
GH
178 if (pt->read_pos - pt->read_buf < offset)
179 scm_misc_error ("st_end_input", "negative position", SCM_EOL);
180
a3c8b9fc 181 pt->write_pos = (unsigned char *) (pt->read_pos = pt->read_pos - offset);
61e452ba 182 pt->rw_active = SCM_PORT_NEITHER;
754c9491
JB
183}
184
f1ce9199
LC
185static scm_t_off
186st_seek (SCM port, scm_t_off offset, int whence)
754c9491 187{
92c2555f 188 scm_t_port *pt = SCM_PTAB_ENTRY (port);
f1ce9199 189 scm_t_off target;
754c9491 190
7dcb364d
GH
191 if (pt->rw_active == SCM_PORT_READ && offset == 0 && whence == SEEK_CUR)
192 /* special case to avoid disturbing the unread-char buffer. */
754c9491 193 {
7dcb364d
GH
194 if (pt->read_buf == pt->putback_buf)
195 {
196 target = pt->saved_read_pos - pt->saved_read_buf
197 - (pt->read_end - pt->read_pos);
198 }
199 else
200 {
201 target = pt->read_pos - pt->read_buf;
202 }
754c9491 203 }
7dcb364d
GH
204 else
205 /* all other cases. */
754c9491 206 {
7dcb364d
GH
207 if (pt->rw_active == SCM_PORT_WRITE)
208 st_flush (port);
209
210 if (pt->rw_active == SCM_PORT_READ)
211 scm_end_input (port);
212
213 switch (whence)
214 {
215 case SEEK_CUR:
216 target = pt->read_pos - pt->read_buf + offset;
217 break;
218 case SEEK_END:
219 target = pt->read_end - pt->read_buf + offset;
220 break;
221 default: /* SEEK_SET */
222 target = offset;
223 break;
224 }
225
226 if (target < 0)
227 scm_misc_error ("st_seek", "negative offset", SCM_EOL);
228
229 if (target >= pt->write_buf_size)
3fe6190f 230 {
206d3de3 231 if (!(SCM_CELL_WORD_0 (port) & SCM_WRTNG))
3fe6190f 232 {
7dcb364d
GH
233 if (target > pt->write_buf_size)
234 {
235 scm_misc_error ("st_seek",
236 "seek past end of read-only strport",
237 SCM_EOL);
238 }
239 }
d8f1c216
LC
240 else if (target == pt->write_buf_size)
241 st_resize_port (pt, target * 2);
3fe6190f 242 }
7dcb364d
GH
243 pt->read_pos = pt->write_pos = pt->read_buf + target;
244 if (pt->read_pos > pt->read_end)
3fe6190f 245 {
7dcb364d
GH
246 pt->read_end = (unsigned char *) pt->read_pos;
247 pt->read_buf_size = pt->read_end - pt->read_buf;
3fe6190f 248 }
ee149d03 249 }
754c9491
JB
250 return target;
251}
252
253static void
f1ce9199 254st_truncate (SCM port, scm_t_off length)
754c9491 255{
92c2555f 256 scm_t_port *pt = SCM_PTAB_ENTRY (port);
3fe6190f
GH
257
258 if (length > pt->write_buf_size)
259 st_resize_port (pt, length);
260
261 pt->read_buf_size = length;
262 pt->read_end = pt->read_buf + length;
263 if (pt->read_pos > pt->read_end)
264 pt->read_pos = pt->read_end;
754c9491 265
3fe6190f
GH
266 if (pt->write_pos > pt->read_end)
267 pt->write_pos = pt->read_end;
0f2d19dd
JB
268}
269
0b2c2ba3
LC
270/* The initial size in bytes of a string port's buffer. */
271#define INITIAL_BUFFER_SIZE 128
272
273/* Return a new string port with MODES. If STR is #f, a new backing
274 buffer is allocated; otherwise STR must be a string and a copy of it
275 serves as the buffer for the new port. */
7b041912
LC
276SCM
277scm_mkstrport (SCM pos, SCM str, long modes, const char *caller)
0f2d19dd 278{
691fcf66 279 SCM z, buf;
92c2555f 280 scm_t_port *pt;
7b041912 281 size_t str_len, c_pos;
691fcf66 282 char *c_buf;
e11e83f3 283
754c9491
JB
284 if (!((modes & SCM_WRTNG) || (modes & SCM_RDNG)))
285 scm_misc_error ("scm_mkstrport", "port must read or write", SCM_EOL);
5f16b897 286
7b041912
LC
287 scm_dynwind_begin (0);
288 scm_i_dynwind_pthread_mutex_lock (&scm_i_port_table_mutex);
289
da220f27
HWN
290 z = scm_new_port_table_entry (scm_tc16_strport);
291 pt = SCM_PTAB_ENTRY(z);
7b041912 292
0b2c2ba3
LC
293 if (scm_is_false (str))
294 {
295 /* Allocate a new buffer to write to. */
296 str_len = INITIAL_BUFFER_SIZE;
297 buf = scm_c_make_bytevector (str_len);
298 c_buf = (char *) SCM_BYTEVECTOR_CONTENTS (buf);
299
300 /* Reset `read_buf_size'. It will contain the actual number of
301 bytes written to PT. */
302 pt->read_buf_size = 0;
303 c_pos = 0;
304 }
305 else
306 {
307 /* STR is a string. */
308 char *copy;
691fcf66 309
0b2c2ba3 310 SCM_ASSERT (scm_is_string (str), str, SCM_ARG1, caller);
691fcf66 311
0b2c2ba3
LC
312 /* Create a copy of STR in the encoding of PT. */
313 copy = scm_to_stringn (str, &str_len, pt->encoding,
314 SCM_FAILED_CONVERSION_ERROR);
315 buf = scm_c_make_bytevector (str_len);
316 c_buf = (char *) SCM_BYTEVECTOR_CONTENTS (buf);
317 memcpy (c_buf, copy, str_len);
318 free (copy);
691fcf66 319
0b2c2ba3
LC
320 c_pos = scm_to_unsigned_integer (pos, 0, str_len);
321 pt->read_buf_size = str_len;
322 }
691fcf66
LC
323
324 SCM_SETSTREAM (z, SCM_UNPACK (buf));
325 SCM_SET_CELL_TYPE (z, scm_tc16_strport | modes);
7b041912 326
691fcf66 327 pt->write_buf = pt->read_buf = (unsigned char *) c_buf;
e11e83f3 328 pt->read_pos = pt->write_pos = pt->read_buf + c_pos;
691fcf66 329 pt->write_buf_size = str_len;
754c9491 330 pt->write_end = pt->read_end = pt->read_buf + pt->read_buf_size;
3fe6190f 331
0de97b83 332 pt->rw_random = 1;
3fe6190f 333
7b041912
LC
334 scm_dynwind_end ();
335
336 /* Ensure WRITE_POS is writable. */
754c9491
JB
337 if ((modes & SCM_WRTNG) && pt->write_pos == pt->write_end)
338 st_flush (z);
25ebc034 339
0f2d19dd
JB
340 return z;
341}
342
7b041912
LC
343/* Create a new string from the buffer of PORT, a string port, converting from
344 PORT's encoding to the standard string representation. */
345SCM
346scm_strport_to_string (SCM port)
3fe6190f 347{
36284627 348 SCM str;
7b041912
LC
349 scm_t_port *pt = SCM_PTAB_ENTRY (port);
350
3fe6190f
GH
351 if (pt->rw_active == SCM_PORT_WRITE)
352 st_flush (port);
36284627 353
fac32b51
MG
354 if (pt->read_buf_size == 0)
355 return scm_nullstr;
356
357 if (pt->encoding == NULL)
358 {
359 char *buf;
190d4b0d 360 str = scm_i_make_string (pt->read_buf_size, &buf, 0);
fac32b51
MG
361 memcpy (buf, pt->read_buf, pt->read_buf_size);
362 }
363 else
f7f4d047
MG
364 str = scm_from_stringn ((char *)pt->read_buf, pt->read_buf_size,
365 pt->encoding, pt->ilseq_handler);
36284627
DH
366 scm_remember_upto_here_1 (port);
367 return str;
3fe6190f
GH
368}
369
fe78b6c0
KN
370SCM_DEFINE (scm_object_to_string, "object->string", 1, 1, 0,
371 (SCM obj, SCM printer),
372 "Return a Scheme string obtained by printing @var{obj}.\n"
373 "Printing function can be specified by the optional second\n"
374 "argument @var{printer} (default: @code{write}).")
1f3908c4
KN
375#define FUNC_NAME s_scm_object_to_string
376{
8b263377 377 SCM port, result;
fe78b6c0
KN
378
379 if (!SCM_UNBNDP (printer))
380 SCM_VALIDATE_PROC (2, printer);
1f3908c4 381
0b2c2ba3
LC
382 port = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
383 SCM_OPN | SCM_WRTNG, FUNC_NAME);
fe78b6c0
KN
384
385 if (SCM_UNBNDP (printer))
386 scm_write (obj, port);
387 else
fdc28395 388 scm_call_2 (printer, obj, port);
fe78b6c0 389
8b263377
LC
390 result = scm_strport_to_string (port);
391
392 /* Explicitly close PORT so that the iconv CDs associated with it are
393 deallocated right away. This is important because CDs use a lot of
394 memory that's not visible to the GC, so not freeing them can lead
395 to almost large heap usage. See
396 <http://wingolog.org/archives/2011/02/25/ports-weaks-gc-and-dark-matter>
397 for details. */
398 scm_close_port (port);
399
400 return result;
1f3908c4
KN
401}
402#undef FUNC_NAME
403
3b3b36dd 404SCM_DEFINE (scm_call_with_output_string, "call-with-output-string", 1, 0, 0,
1bbd0b84 405 (SCM proc),
b380b885
MD
406 "Calls the one-argument procedure @var{proc} with a newly created output\n"
407 "port. When the function returns, the string composed of the characters\n"
408 "written into the port is returned.")
1bbd0b84 409#define FUNC_NAME s_scm_call_with_output_string
0f2d19dd
JB
410{
411 SCM p;
754c9491 412
0b2c2ba3 413 p = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
754c9491 414 SCM_OPN | SCM_WRTNG,
1bbd0b84 415 FUNC_NAME);
fdc28395 416 scm_call_1 (proc, p);
3fe6190f 417
184b85a3 418 return scm_get_output_string (p);
0f2d19dd 419}
1bbd0b84 420#undef FUNC_NAME
0f2d19dd 421
3b3b36dd 422SCM_DEFINE (scm_call_with_input_string, "call-with-input-string", 2, 0, 0,
1e6808ea
MG
423 (SCM string, SCM proc),
424 "Calls the one-argument procedure @var{proc} with a newly\n"
425 "created input port from which @var{string}'s contents may be\n"
426 "read. The value yielded by the @var{proc} is returned.")
1bbd0b84 427#define FUNC_NAME s_scm_call_with_input_string
0f2d19dd 428{
1e6808ea 429 SCM p = scm_mkstrport(SCM_INUM0, string, SCM_OPN | SCM_RDNG, FUNC_NAME);
fdc28395 430 return scm_call_1 (proc, p);
0f2d19dd 431}
1bbd0b84 432#undef FUNC_NAME
0f2d19dd 433
e87a03fc
MG
434SCM_DEFINE (scm_open_input_string, "open-input-string", 1, 0, 0,
435 (SCM str),
1e6808ea
MG
436 "Take a string and return an input port that delivers characters\n"
437 "from the string. The port can be closed by\n"
e87a03fc
MG
438 "@code{close-input-port}, though its storage will be reclaimed\n"
439 "by the garbage collector if it becomes inaccessible.")
440#define FUNC_NAME s_scm_open_input_string
441{
442 SCM p = scm_mkstrport(SCM_INUM0, str, SCM_OPN | SCM_RDNG, FUNC_NAME);
443 return p;
444}
445#undef FUNC_NAME
446
447SCM_DEFINE (scm_open_output_string, "open-output-string", 0, 0, 0,
448 (void),
1e6808ea 449 "Return an output port that will accumulate characters for\n"
e87a03fc
MG
450 "retrieval by @code{get-output-string}. The port can be closed\n"
451 "by the procedure @code{close-output-port}, though its storage\n"
452 "will be reclaimed by the garbage collector if it becomes\n"
453 "inaccessible.")
454#define FUNC_NAME s_scm_open_output_string
455{
456 SCM p;
457
0b2c2ba3 458 p = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
e87a03fc
MG
459 SCM_OPN | SCM_WRTNG,
460 FUNC_NAME);
461 return p;
462}
463#undef FUNC_NAME
464
465SCM_DEFINE (scm_get_output_string, "get-output-string", 1, 0, 0,
466 (SCM port),
467 "Given an output port created by @code{open-output-string},\n"
1e6808ea 468 "return a string consisting of the characters that have been\n"
e87a03fc
MG
469 "output to the port so far.")
470#define FUNC_NAME s_scm_get_output_string
471{
472 SCM_VALIDATE_OPOUTSTRPORT (1, port);
473 return scm_strport_to_string (port);
474}
475#undef FUNC_NAME
1cc91f1b 476
cd07a097 477
a8aa30d8
MD
478/* Given a null-terminated string EXPR containing a Scheme expression
479 read it, and return it as an SCM value. */
480SCM
ca13a04a 481scm_c_read_string (const char *expr)
a8aa30d8 482{
3fe6190f 483 SCM port = scm_mkstrport (SCM_INUM0,
cc95e00a 484 scm_from_locale_string (expr),
a8aa30d8 485 SCM_OPN | SCM_RDNG,
ca13a04a 486 "scm_c_read_string");
a8aa30d8
MD
487 SCM form;
488
deca31e1 489 form = scm_read (port);
a8aa30d8
MD
490
491 scm_close_port (port);
492 return form;
493}
494
cd07a097 495/* Given a null-terminated string EXPR containing Scheme program text,
a8aa30d8
MD
496 evaluate it, and return the result of the last expression evaluated. */
497SCM
ca13a04a 498scm_c_eval_string (const char *expr)
cd07a097 499{
cc95e00a 500 return scm_eval_string (scm_from_locale_string (expr));
b377f53e
JB
501}
502
209b52fe
MV
503SCM
504scm_c_eval_string_in_module (const char *expr, SCM module)
505{
cc95e00a 506 return scm_eval_string_in_module (scm_from_locale_string (expr), module);
209b52fe
MV
507}
508
509
209b52fe
MV
510SCM_DEFINE (scm_eval_string_in_module, "eval-string", 1, 1, 0,
511 (SCM string, SCM module),
96e83482
MV
512 "Evaluate @var{string} as the text representation of a Scheme\n"
513 "form or forms, and return whatever value they produce.\n"
209b52fe
MV
514 "Evaluation takes place in the given module, or the current\n"
515 "module when no module is given.\n"
516 "While the code is evaluated, the given module is made the\n"
517 "current one. The current module is restored when this\n"
518 "procedure returns.")
519#define FUNC_NAME s_scm_eval_string_in_module
96e83482 520{
0b0e066a
AW
521 static SCM eval_string = SCM_BOOL_F, k_module = SCM_BOOL_F;
522
523 if (scm_is_false (eval_string))
524 {
525 eval_string = scm_c_public_lookup ("ice-9 eval-string", "eval-string");
526 k_module = scm_from_locale_keyword ("module");
527 }
528
209b52fe
MV
529 if (SCM_UNBNDP (module))
530 module = scm_current_module ();
aeec5be1
MV
531 else
532 SCM_VALIDATE_MODULE (2, module);
0b0e066a
AW
533
534 return scm_call_3 (scm_variable_ref (eval_string), string, k_module, module);
96e83482 535}
1bbd0b84 536#undef FUNC_NAME
cd07a097 537
209b52fe
MV
538SCM
539scm_eval_string (SCM string)
540{
541 return scm_eval_string_in_module (string, SCM_UNDEFINED);
542}
543
92c2555f 544static scm_t_bits
0b6881fa 545scm_make_stptob ()
0f2d19dd 546{
92c2555f 547 scm_t_bits tc = scm_make_port_type ("string", stfill_buffer, st_write);
a98bddfd 548
affc96b5
GH
549 scm_set_port_end_input (tc, st_end_input);
550 scm_set_port_flush (tc, st_flush);
6c747373 551 scm_set_port_seek (tc, st_seek);
affc96b5 552 scm_set_port_truncate (tc, st_truncate);
a98bddfd
DH
553
554 return tc;
0f2d19dd
JB
555}
556
0f2d19dd
JB
557void
558scm_init_strports ()
0f2d19dd 559{
a98bddfd
DH
560 scm_tc16_strport = scm_make_stptob ();
561
a0599745 562#include "libguile/strports.x"
0f2d19dd
JB
563}
564
89e00824
ML
565
566/*
567 Local Variables:
568 c-file-style: "gnu"
569 End:
570*/