Merge branch 'bdw-gc-static-alloc'
[bpt/guile.git] / libguile / strports.c
1 /* Copyright (C) 1995,1996,1998,1999,2000,2001,2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
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.
7 *
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
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
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
17 */
18
19
20 \f
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include "libguile/_scm.h"
27
28 #include <stdio.h>
29 #ifdef HAVE_UNISTD_H
30 #include <unistd.h>
31 #endif
32
33 #include "libguile/arrays.h"
34 #include "libguile/eval.h"
35 #include "libguile/ports.h"
36 #include "libguile/read.h"
37 #include "libguile/root.h"
38 #include "libguile/strings.h"
39 #include "libguile/modules.h"
40 #include "libguile/validate.h"
41 #include "libguile/deprecation.h"
42 #include "libguile/srfi-4.h"
43
44 #include "libguile/strports.h"
45
46 #ifdef HAVE_STRING_H
47 #include <string.h>
48 #endif
49
50 \f
51
52 /* {Ports - string ports}
53 *
54 */
55
56 /* NOTES:
57
58 We break the rules set forth by strings.h about accessing the
59 internals of strings here. We can do this since we can guarantee
60 that the string used as pt->stream is not in use by anyone else.
61 Thus, it's representation will not change asynchronously.
62
63 (Ports aren't thread-safe yet anyway...)
64
65 write_buf/write_end point to the ends of the allocated string.
66 read_buf/read_end in principle point to the part of the string which
67 has been written to, but this is only updated after a flush.
68 read_pos and write_pos in principle should be equal, but this is only true
69 when rw_active is SCM_PORT_NEITHER.
70
71 ENHANCE-ME - output blocks:
72
73 The current code keeps an output string as a single block. That means
74 when the size is increased the entire old contents must be copied. It'd
75 be more efficient to begin a new block when the old one is full, so
76 there's no re-copying of previous data.
77
78 To make seeking efficient, keeping the pieces in a vector might be best,
79 though appending is probably the most common operation. The size of each
80 block could be progressively increased, so the bigger the string the
81 bigger the blocks.
82
83 When `get-output-string' is called the blocks have to be coalesced into a
84 string, the result could be kept as a single big block. If blocks were
85 strings then `get-output-string' could notice when there's just one and
86 return that with a copy-on-write (though repeated calls to
87 `get-output-string' are probably unlikely).
88
89 Another possibility would be to extend the port mechanism to let SCM
90 strings come through directly from `display' and friends. That way if a
91 big string is written it can be kept as a copy-on-write, saving time
92 copying and maybe saving some space. */
93
94
95 scm_t_bits scm_tc16_strport;
96
97
98 static int
99 stfill_buffer (SCM port)
100 {
101 scm_t_port *pt = SCM_PTAB_ENTRY (port);
102
103 if (pt->read_pos >= pt->read_end)
104 return EOF;
105 else
106 return scm_return_first_int (*pt->read_pos, port);
107 }
108
109 /* change the size of a port's string to new_size. this doesn't
110 change read_buf_size. */
111 static void
112 st_resize_port (scm_t_port *pt, scm_t_off new_size)
113 {
114 SCM old_stream = SCM_PACK (pt->stream);
115 const char *src = scm_i_string_chars (old_stream);
116 char *dst;
117 SCM new_stream = scm_i_make_string (new_size, &dst);
118 unsigned long int old_size = scm_i_string_length (old_stream);
119 unsigned long int min_size = min (old_size, new_size);
120 unsigned long int i;
121
122 scm_t_off index = pt->write_pos - pt->write_buf;
123
124 pt->write_buf_size = new_size;
125
126 for (i = 0; i != min_size; ++i)
127 dst[i] = src[i];
128
129 scm_remember_upto_here_1 (old_stream);
130
131 /* reset buffer. */
132 {
133 pt->stream = SCM_UNPACK (new_stream);
134 pt->read_buf = pt->write_buf = (unsigned char *)dst;
135 pt->read_pos = pt->write_pos = pt->write_buf + index;
136 pt->write_end = pt->write_buf + pt->write_buf_size;
137 pt->read_end = pt->read_buf + pt->read_buf_size;
138 }
139 }
140
141 /* amount by which write_buf is expanded. */
142 #define SCM_WRITE_BLOCK 80
143
144 /* ensure that write_pos < write_end by enlarging the buffer when
145 necessary. update read_buf to account for written chars.
146
147 The buffer is enlarged by 1.5 times, plus SCM_WRITE_BLOCK. Adding just a
148 fixed amount is no good, because there's a block copy for each increment,
149 and that copying would take quadratic time. In the past it was found to
150 be very slow just adding 80 bytes each time (eg. about 10 seconds for
151 writing a 100kbyte string). */
152
153 static void
154 st_flush (SCM port)
155 {
156 scm_t_port *pt = SCM_PTAB_ENTRY (port);
157
158 if (pt->write_pos == pt->write_end)
159 {
160 st_resize_port (pt, pt->write_buf_size * 3 / 2 + SCM_WRITE_BLOCK);
161 }
162 pt->read_pos = pt->write_pos;
163 if (pt->read_pos > pt->read_end)
164 {
165 pt->read_end = (unsigned char *) pt->read_pos;
166 pt->read_buf_size = pt->read_end - pt->read_buf;
167 }
168 pt->rw_active = SCM_PORT_NEITHER;
169 }
170
171 static void
172 st_write (SCM port, const void *data, size_t size)
173 {
174 scm_t_port *pt = SCM_PTAB_ENTRY (port);
175 const char *input = (char *) data;
176
177 while (size > 0)
178 {
179 int space = pt->write_end - pt->write_pos;
180 int write_len = (size > space) ? space : size;
181
182 memcpy ((char *) pt->write_pos, input, write_len);
183 pt->write_pos += write_len;
184 size -= write_len;
185 input += write_len;
186 if (write_len == space)
187 st_flush (port);
188 }
189 }
190
191 static void
192 st_end_input (SCM port, int offset)
193 {
194 scm_t_port *pt = SCM_PTAB_ENTRY (port);
195
196 if (pt->read_pos - pt->read_buf < offset)
197 scm_misc_error ("st_end_input", "negative position", SCM_EOL);
198
199 pt->write_pos = (unsigned char *) (pt->read_pos = pt->read_pos - offset);
200 pt->rw_active = SCM_PORT_NEITHER;
201 }
202
203 static scm_t_off
204 st_seek (SCM port, scm_t_off offset, int whence)
205 {
206 scm_t_port *pt = SCM_PTAB_ENTRY (port);
207 scm_t_off target;
208
209 if (pt->rw_active == SCM_PORT_READ && offset == 0 && whence == SEEK_CUR)
210 /* special case to avoid disturbing the unread-char buffer. */
211 {
212 if (pt->read_buf == pt->putback_buf)
213 {
214 target = pt->saved_read_pos - pt->saved_read_buf
215 - (pt->read_end - pt->read_pos);
216 }
217 else
218 {
219 target = pt->read_pos - pt->read_buf;
220 }
221 }
222 else
223 /* all other cases. */
224 {
225 if (pt->rw_active == SCM_PORT_WRITE)
226 st_flush (port);
227
228 if (pt->rw_active == SCM_PORT_READ)
229 scm_end_input (port);
230
231 switch (whence)
232 {
233 case SEEK_CUR:
234 target = pt->read_pos - pt->read_buf + offset;
235 break;
236 case SEEK_END:
237 target = pt->read_end - pt->read_buf + offset;
238 break;
239 default: /* SEEK_SET */
240 target = offset;
241 break;
242 }
243
244 if (target < 0)
245 scm_misc_error ("st_seek", "negative offset", SCM_EOL);
246
247 if (target >= pt->write_buf_size)
248 {
249 if (!(SCM_CELL_WORD_0 (port) & SCM_WRTNG))
250 {
251 if (target > pt->write_buf_size)
252 {
253 scm_misc_error ("st_seek",
254 "seek past end of read-only strport",
255 SCM_EOL);
256 }
257 }
258 else
259 {
260 st_resize_port (pt, target + (target == pt->write_buf_size
261 ? SCM_WRITE_BLOCK
262 : 0));
263 }
264 }
265 pt->read_pos = pt->write_pos = pt->read_buf + target;
266 if (pt->read_pos > pt->read_end)
267 {
268 pt->read_end = (unsigned char *) pt->read_pos;
269 pt->read_buf_size = pt->read_end - pt->read_buf;
270 }
271 }
272 return target;
273 }
274
275 static void
276 st_truncate (SCM port, scm_t_off length)
277 {
278 scm_t_port *pt = SCM_PTAB_ENTRY (port);
279
280 if (length > pt->write_buf_size)
281 st_resize_port (pt, length);
282
283 pt->read_buf_size = length;
284 pt->read_end = pt->read_buf + length;
285 if (pt->read_pos > pt->read_end)
286 pt->read_pos = pt->read_end;
287
288 if (pt->write_pos > pt->read_end)
289 pt->write_pos = pt->read_end;
290 }
291
292 SCM
293 scm_i_mkstrport (SCM pos, const char *utf8_str, size_t str_len, long modes, const char *caller)
294 {
295 SCM z, str;
296 scm_t_port *pt;
297 size_t c_pos;
298 char *buf;
299
300 /* Because ports are inherently 8-bit, strings need to be converted
301 to a locale representation for storage. But, since string ports
302 rely on string functionality for their memory management, we need
303 to create a new string that has the 8-bit locale representation
304 of the underlying string.
305
306 locale_str is already in the locale of the port. */
307 str = scm_i_make_string (str_len, &buf);
308 memcpy (buf, utf8_str, str_len);
309
310 c_pos = scm_to_unsigned_integer (pos, 0, str_len);
311
312 if (!((modes & SCM_WRTNG) || (modes & SCM_RDNG)))
313 scm_misc_error ("scm_mkstrport", "port must read or write", SCM_EOL);
314
315 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
316 z = scm_new_port_table_entry (scm_tc16_strport);
317 pt = SCM_PTAB_ENTRY(z);
318 SCM_SETSTREAM (z, SCM_UNPACK (str));
319 SCM_SET_CELL_TYPE(z, scm_tc16_strport|modes);
320 pt->write_buf = pt->read_buf = (unsigned char *) scm_i_string_chars (str);
321 pt->read_pos = pt->write_pos = pt->read_buf + c_pos;
322 pt->write_buf_size = pt->read_buf_size = str_len;
323 pt->write_end = pt->read_end = pt->read_buf + pt->read_buf_size;
324
325 pt->rw_random = 1;
326 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
327
328 /* ensure write_pos is writable. */
329 if ((modes & SCM_WRTNG) && pt->write_pos == pt->write_end)
330 st_flush (z);
331
332 scm_i_set_port_encoding_x (z, "UTF-8");
333 scm_i_set_conversion_strategy_x (z, SCM_FAILED_CONVERSION_ERROR);
334 return z;
335 }
336
337 SCM
338 scm_mkstrport (SCM pos, SCM str, long modes, const char *caller)
339 {
340 SCM z;
341 size_t str_len;
342 char *buf;
343
344 SCM_ASSERT (scm_is_string (str), str, SCM_ARG1, caller);
345
346 /* Because ports are inherently 8-bit, strings need to be converted
347 to a locale representation for storage. But, since string ports
348 rely on string functionality for their memory management, we need
349 to create a new string that has the 8-bit locale representation
350 of the underlying string. This violates the guideline that the
351 internal encoding of characters in strings is in unicode
352 codepoints. */
353
354 /* String ports are are always initialized with "UTF-8" as their
355 encoding. */
356 buf = scm_to_stringn (str, &str_len, "UTF-8", SCM_FAILED_CONVERSION_ERROR);
357 z = scm_i_mkstrport (pos, buf, str_len, modes, caller);
358 free (buf);
359 return z;
360 }
361
362 /* Create a new string from a string port's buffer, converting from
363 the port's 8-bit locale-specific representation to the standard
364 string representation. */
365 SCM scm_strport_to_string (SCM port)
366 {
367 scm_t_port *pt = SCM_PTAB_ENTRY (port);
368 SCM str;
369
370 if (pt->rw_active == SCM_PORT_WRITE)
371 st_flush (port);
372
373 if (pt->read_buf_size == 0)
374 return scm_nullstr;
375
376 if (pt->encoding == NULL)
377 {
378 char *buf;
379 str = scm_i_make_string (pt->read_buf_size, &buf);
380 memcpy (buf, pt->read_buf, pt->read_buf_size);
381 }
382 else
383 str = scm_from_stringn ((char *)pt->read_buf, pt->read_buf_size,
384 pt->encoding, pt->ilseq_handler);
385 scm_remember_upto_here_1 (port);
386 return str;
387 }
388
389 SCM_DEFINE (scm_object_to_string, "object->string", 1, 1, 0,
390 (SCM obj, SCM printer),
391 "Return a Scheme string obtained by printing @var{obj}.\n"
392 "Printing function can be specified by the optional second\n"
393 "argument @var{printer} (default: @code{write}).")
394 #define FUNC_NAME s_scm_object_to_string
395 {
396 SCM str, port;
397
398 if (!SCM_UNBNDP (printer))
399 SCM_VALIDATE_PROC (2, printer);
400
401 str = scm_c_make_string (0, SCM_UNDEFINED);
402 port = scm_mkstrport (SCM_INUM0, str, SCM_OPN | SCM_WRTNG, FUNC_NAME);
403
404 if (SCM_UNBNDP (printer))
405 scm_write (obj, port);
406 else
407 scm_call_2 (printer, obj, port);
408
409 return scm_strport_to_string (port);
410 }
411 #undef FUNC_NAME
412
413 SCM_DEFINE (scm_call_with_output_string, "call-with-output-string", 1, 0, 0,
414 (SCM proc),
415 "Calls the one-argument procedure @var{proc} with a newly created output\n"
416 "port. When the function returns, the string composed of the characters\n"
417 "written into the port is returned.")
418 #define FUNC_NAME s_scm_call_with_output_string
419 {
420 SCM p;
421
422 p = scm_mkstrport (SCM_INUM0,
423 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
424 SCM_OPN | SCM_WRTNG,
425 FUNC_NAME);
426 scm_call_1 (proc, p);
427
428 return scm_get_output_string (p);
429 }
430 #undef FUNC_NAME
431
432 SCM_DEFINE (scm_call_with_input_string, "call-with-input-string", 2, 0, 0,
433 (SCM string, SCM proc),
434 "Calls the one-argument procedure @var{proc} with a newly\n"
435 "created input port from which @var{string}'s contents may be\n"
436 "read. The value yielded by the @var{proc} is returned.")
437 #define FUNC_NAME s_scm_call_with_input_string
438 {
439 SCM p = scm_mkstrport(SCM_INUM0, string, SCM_OPN | SCM_RDNG, FUNC_NAME);
440 return scm_call_1 (proc, p);
441 }
442 #undef FUNC_NAME
443
444 SCM_DEFINE (scm_open_input_string, "open-input-string", 1, 0, 0,
445 (SCM str),
446 "Take a string and return an input port that delivers characters\n"
447 "from the string. The port can be closed by\n"
448 "@code{close-input-port}, though its storage will be reclaimed\n"
449 "by the garbage collector if it becomes inaccessible.")
450 #define FUNC_NAME s_scm_open_input_string
451 {
452 SCM p = scm_mkstrport(SCM_INUM0, str, SCM_OPN | SCM_RDNG, FUNC_NAME);
453 return p;
454 }
455 #undef FUNC_NAME
456
457 SCM_DEFINE (scm_open_output_string, "open-output-string", 0, 0, 0,
458 (void),
459 "Return an output port that will accumulate characters for\n"
460 "retrieval by @code{get-output-string}. The port can be closed\n"
461 "by the procedure @code{close-output-port}, though its storage\n"
462 "will be reclaimed by the garbage collector if it becomes\n"
463 "inaccessible.")
464 #define FUNC_NAME s_scm_open_output_string
465 {
466 SCM p;
467
468 p = scm_mkstrport (SCM_INUM0,
469 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
470 SCM_OPN | SCM_WRTNG,
471 FUNC_NAME);
472 return p;
473 }
474 #undef FUNC_NAME
475
476 SCM_DEFINE (scm_get_output_string, "get-output-string", 1, 0, 0,
477 (SCM port),
478 "Given an output port created by @code{open-output-string},\n"
479 "return a string consisting of the characters that have been\n"
480 "output to the port so far.")
481 #define FUNC_NAME s_scm_get_output_string
482 {
483 SCM_VALIDATE_OPOUTSTRPORT (1, port);
484 return scm_strport_to_string (port);
485 }
486 #undef FUNC_NAME
487
488
489 /* Given a null-terminated string EXPR containing a Scheme expression
490 read it, and return it as an SCM value. */
491 SCM
492 scm_c_read_string (const char *expr)
493 {
494 /* FIXME: the c string gets packed into a string, only to get
495 immediately unpacked in scm_mkstrport. */
496 SCM port = scm_mkstrport (SCM_INUM0,
497 scm_from_locale_string (expr),
498 SCM_OPN | SCM_RDNG,
499 "scm_c_read_string");
500 SCM form;
501
502 /* Read expressions from that port; ignore the values. */
503 form = scm_read (port);
504
505 scm_close_port (port);
506 return form;
507 }
508
509 /* Given a null-terminated string EXPR containing Scheme program text,
510 evaluate it, and return the result of the last expression evaluated. */
511 SCM
512 scm_c_eval_string (const char *expr)
513 {
514 return scm_eval_string (scm_from_locale_string (expr));
515 }
516
517 SCM
518 scm_c_eval_string_in_module (const char *expr, SCM module)
519 {
520 return scm_eval_string_in_module (scm_from_locale_string (expr), module);
521 }
522
523
524 static SCM
525 inner_eval_string (void *data)
526 {
527 SCM port = (SCM)data;
528 SCM form;
529 SCM ans = SCM_UNSPECIFIED;
530
531 /* Read expressions from that port; ignore the values. */
532 while (!SCM_EOF_OBJECT_P (form = scm_read (port)))
533 ans = scm_primitive_eval_x (form);
534
535 /* Don't close the port here; if we re-enter this function via a
536 continuation, then the next time we enter it, we'll get an error.
537 It's a string port anyway, so there's no advantage to closing it
538 early. */
539
540 return ans;
541 }
542
543 SCM_DEFINE (scm_eval_string_in_module, "eval-string", 1, 1, 0,
544 (SCM string, SCM module),
545 "Evaluate @var{string} as the text representation of a Scheme\n"
546 "form or forms, and return whatever value they produce.\n"
547 "Evaluation takes place in the given module, or the current\n"
548 "module when no module is given.\n"
549 "While the code is evaluated, the given module is made the\n"
550 "current one. The current module is restored when this\n"
551 "procedure returns.")
552 #define FUNC_NAME s_scm_eval_string_in_module
553 {
554 SCM port = scm_mkstrport (SCM_INUM0, string, SCM_OPN | SCM_RDNG,
555 FUNC_NAME);
556 if (SCM_UNBNDP (module))
557 module = scm_current_module ();
558 else
559 SCM_VALIDATE_MODULE (2, module);
560 return scm_c_call_with_current_module (module,
561 inner_eval_string, (void *)port);
562 }
563 #undef FUNC_NAME
564
565 SCM
566 scm_eval_string (SCM string)
567 {
568 return scm_eval_string_in_module (string, SCM_UNDEFINED);
569 }
570
571 static scm_t_bits
572 scm_make_stptob ()
573 {
574 scm_t_bits tc = scm_make_port_type ("string", stfill_buffer, st_write);
575
576 scm_set_port_end_input (tc, st_end_input);
577 scm_set_port_flush (tc, st_flush);
578 scm_set_port_seek (tc, st_seek);
579 scm_set_port_truncate (tc, st_truncate);
580
581 return tc;
582 }
583
584 void
585 scm_init_strports ()
586 {
587 scm_tc16_strport = scm_make_stptob ();
588
589 #include "libguile/strports.x"
590 }
591
592
593 /*
594 Local Variables:
595 c-file-style: "gnu"
596 End:
597 */