Make SRFI-6 string ports Unicode-capable.
[bpt/guile.git] / libguile / strports.c
1 /* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006,
2 * 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
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.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
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
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
18 */
19
20
21 \f
22
23 #ifdef HAVE_CONFIG_H
24 # include <config.h>
25 #endif
26
27 #include "libguile/_scm.h"
28
29 #include <stdio.h>
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33
34 #include "libguile/bytevectors.h"
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"
40 #include "libguile/modules.h"
41 #include "libguile/validate.h"
42 #include "libguile/deprecation.h"
43 #include "libguile/srfi-4.h"
44
45 #include "libguile/strports.h"
46
47 #ifdef HAVE_STRING_H
48 #include <string.h>
49 #endif
50
51 \f
52
53 /* {Ports - string ports}
54 *
55 */
56
57 /* NOTES:
58
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
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
63 when rw_active is SCM_PORT_NEITHER.
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
88
89 scm_t_bits scm_tc16_strport;
90
91
92 static int
93 stfill_buffer (SCM port)
94 {
95 scm_t_port *pt = SCM_PTAB_ENTRY (port);
96
97 if (pt->read_pos >= pt->read_end)
98 return EOF;
99 else
100 return scm_return_first_int (*pt->read_pos, port);
101 }
102
103 /* Change the size of a port's bytevector to NEW_SIZE. This doesn't
104 change `read_buf_size'. */
105 static void
106 st_resize_port (scm_t_port *pt, scm_t_off new_size)
107 {
108 SCM old_stream = SCM_PACK (pt->stream);
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);
113 unsigned long int min_size = min (old_size, new_size);
114
115 scm_t_off index = pt->write_pos - pt->write_buf;
116
117 pt->write_buf_size = new_size;
118
119 memcpy (dst, src, min_size);
120
121 scm_remember_upto_here_1 (old_stream);
122
123 /* reset buffer. */
124 {
125 pt->stream = SCM_UNPACK (new_stream);
126 pt->read_buf = pt->write_buf = (unsigned char *)dst;
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;
130 }
131 }
132
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. */
136 static void
137 st_flush (SCM port)
138 {
139 scm_t_port *pt = SCM_PTAB_ENTRY (port);
140
141 if (pt->write_pos == pt->write_end)
142 st_resize_port (pt, pt->write_buf_size * 2);
143
144 pt->read_pos = pt->write_pos;
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 }
150 pt->rw_active = SCM_PORT_NEITHER;
151 }
152
153 static void
154 st_write (SCM port, const void *data, size_t size)
155 {
156 scm_t_port *pt = SCM_PTAB_ENTRY (port);
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
164 memcpy ((char *) pt->write_pos, input, write_len);
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
173 static void
174 st_end_input (SCM port, int offset)
175 {
176 scm_t_port *pt = SCM_PTAB_ENTRY (port);
177
178 if (pt->read_pos - pt->read_buf < offset)
179 scm_misc_error ("st_end_input", "negative position", SCM_EOL);
180
181 pt->write_pos = (unsigned char *) (pt->read_pos = pt->read_pos - offset);
182 pt->rw_active = SCM_PORT_NEITHER;
183 }
184
185 static scm_t_off
186 st_seek (SCM port, scm_t_off offset, int whence)
187 {
188 scm_t_port *pt = SCM_PTAB_ENTRY (port);
189 scm_t_off target;
190
191 if (pt->rw_active == SCM_PORT_READ && offset == 0 && whence == SEEK_CUR)
192 /* special case to avoid disturbing the unread-char buffer. */
193 {
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 }
203 }
204 else
205 /* all other cases. */
206 {
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)
230 {
231 if (!(SCM_CELL_WORD_0 (port) & SCM_WRTNG))
232 {
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 }
240 else if (target == pt->write_buf_size)
241 st_resize_port (pt, target * 2);
242 }
243 pt->read_pos = pt->write_pos = pt->read_buf + target;
244 if (pt->read_pos > pt->read_end)
245 {
246 pt->read_end = (unsigned char *) pt->read_pos;
247 pt->read_buf_size = pt->read_end - pt->read_buf;
248 }
249 }
250 return target;
251 }
252
253 static void
254 st_truncate (SCM port, scm_t_off length)
255 {
256 scm_t_port *pt = SCM_PTAB_ENTRY (port);
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;
265
266 if (pt->write_pos > pt->read_end)
267 pt->write_pos = pt->read_end;
268 }
269
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. */
276 SCM
277 scm_mkstrport (SCM pos, SCM str, long modes, const char *caller)
278 {
279 SCM z, buf;
280 scm_t_port *pt;
281 size_t str_len, c_pos;
282 char *c_buf;
283
284 if (!((modes & SCM_WRTNG) || (modes & SCM_RDNG)))
285 scm_misc_error ("scm_mkstrport", "port must read or write", SCM_EOL);
286
287 scm_dynwind_begin (0);
288 scm_i_dynwind_pthread_mutex_lock (&scm_i_port_table_mutex);
289
290 z = scm_new_port_table_entry (scm_tc16_strport);
291 pt = SCM_PTAB_ENTRY(z);
292
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;
309
310 SCM_ASSERT (scm_is_string (str), str, SCM_ARG1, caller);
311
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);
319
320 c_pos = scm_to_unsigned_integer (pos, 0, str_len);
321 pt->read_buf_size = str_len;
322 }
323
324 SCM_SETSTREAM (z, SCM_UNPACK (buf));
325 SCM_SET_CELL_TYPE (z, scm_tc16_strport | modes);
326
327 pt->write_buf = pt->read_buf = (unsigned char *) c_buf;
328 pt->read_pos = pt->write_pos = pt->read_buf + c_pos;
329 pt->write_buf_size = str_len;
330 pt->write_end = pt->read_end = pt->read_buf + pt->read_buf_size;
331
332 pt->rw_random = 1;
333
334 scm_dynwind_end ();
335
336 /* Ensure WRITE_POS is writable. */
337 if ((modes & SCM_WRTNG) && pt->write_pos == pt->write_end)
338 st_flush (z);
339
340 return z;
341 }
342
343 /* Create a new string from the buffer of PORT, a string port, converting from
344 PORT's encoding to the standard string representation. */
345 SCM
346 scm_strport_to_string (SCM port)
347 {
348 SCM str;
349 scm_t_port *pt = SCM_PTAB_ENTRY (port);
350
351 if (pt->rw_active == SCM_PORT_WRITE)
352 st_flush (port);
353
354 if (pt->read_buf_size == 0)
355 return scm_nullstr;
356
357 if (pt->encoding == NULL)
358 {
359 char *buf;
360 str = scm_i_make_string (pt->read_buf_size, &buf, 0);
361 memcpy (buf, pt->read_buf, pt->read_buf_size);
362 }
363 else
364 str = scm_from_stringn ((char *)pt->read_buf, pt->read_buf_size,
365 pt->encoding, pt->ilseq_handler);
366 scm_remember_upto_here_1 (port);
367 return str;
368 }
369
370 SCM_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}).")
375 #define FUNC_NAME s_scm_object_to_string
376 {
377 SCM port, result;
378
379 if (!SCM_UNBNDP (printer))
380 SCM_VALIDATE_PROC (2, printer);
381
382 port = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
383 SCM_OPN | SCM_WRTNG, FUNC_NAME);
384
385 if (SCM_UNBNDP (printer))
386 scm_write (obj, port);
387 else
388 scm_call_2 (printer, obj, port);
389
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;
401 }
402 #undef FUNC_NAME
403
404 SCM_DEFINE (scm_call_with_output_string, "call-with-output-string", 1, 0, 0,
405 (SCM proc),
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.")
409 #define FUNC_NAME s_scm_call_with_output_string
410 {
411 SCM p;
412
413 p = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
414 SCM_OPN | SCM_WRTNG,
415 FUNC_NAME);
416 scm_call_1 (proc, p);
417
418 return scm_get_output_string (p);
419 }
420 #undef FUNC_NAME
421
422 SCM_DEFINE (scm_call_with_input_string, "call-with-input-string", 2, 0, 0,
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.")
427 #define FUNC_NAME s_scm_call_with_input_string
428 {
429 SCM p = scm_mkstrport(SCM_INUM0, string, SCM_OPN | SCM_RDNG, FUNC_NAME);
430 return scm_call_1 (proc, p);
431 }
432 #undef FUNC_NAME
433
434 SCM_DEFINE (scm_open_input_string, "open-input-string", 1, 0, 0,
435 (SCM str),
436 "Take a string and return an input port that delivers characters\n"
437 "from the string. The port can be closed by\n"
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
447 SCM_DEFINE (scm_open_output_string, "open-output-string", 0, 0, 0,
448 (void),
449 "Return an output port that will accumulate characters for\n"
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
458 p = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
459 SCM_OPN | SCM_WRTNG,
460 FUNC_NAME);
461 return p;
462 }
463 #undef FUNC_NAME
464
465 SCM_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"
468 "return a string consisting of the characters that have been\n"
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
476
477
478 /* Given a null-terminated string EXPR containing a Scheme expression
479 read it, and return it as an SCM value. */
480 SCM
481 scm_c_read_string (const char *expr)
482 {
483 SCM port = scm_mkstrport (SCM_INUM0,
484 scm_from_locale_string (expr),
485 SCM_OPN | SCM_RDNG,
486 "scm_c_read_string");
487 SCM form;
488
489 form = scm_read (port);
490
491 scm_close_port (port);
492 return form;
493 }
494
495 /* Given a null-terminated string EXPR containing Scheme program text,
496 evaluate it, and return the result of the last expression evaluated. */
497 SCM
498 scm_c_eval_string (const char *expr)
499 {
500 return scm_eval_string (scm_from_locale_string (expr));
501 }
502
503 SCM
504 scm_c_eval_string_in_module (const char *expr, SCM module)
505 {
506 return scm_eval_string_in_module (scm_from_locale_string (expr), module);
507 }
508
509
510 SCM_DEFINE (scm_eval_string_in_module, "eval-string", 1, 1, 0,
511 (SCM string, SCM module),
512 "Evaluate @var{string} as the text representation of a Scheme\n"
513 "form or forms, and return whatever value they produce.\n"
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
520 {
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
529 if (SCM_UNBNDP (module))
530 module = scm_current_module ();
531 else
532 SCM_VALIDATE_MODULE (2, module);
533
534 return scm_call_3 (scm_variable_ref (eval_string), string, k_module, module);
535 }
536 #undef FUNC_NAME
537
538 SCM
539 scm_eval_string (SCM string)
540 {
541 return scm_eval_string_in_module (string, SCM_UNDEFINED);
542 }
543
544 static scm_t_bits
545 scm_make_stptob ()
546 {
547 scm_t_bits tc = scm_make_port_type ("string", stfill_buffer, st_write);
548
549 scm_set_port_end_input (tc, st_end_input);
550 scm_set_port_flush (tc, st_flush);
551 scm_set_port_seek (tc, st_seek);
552 scm_set_port_truncate (tc, st_truncate);
553
554 return tc;
555 }
556
557 void
558 scm_init_strports ()
559 {
560 scm_tc16_strport = scm_make_stptob ();
561
562 #include "libguile/strports.x"
563 }
564
565
566 /*
567 Local Variables:
568 c-file-style: "gnu"
569 End:
570 */