* rw.c: new file, implementing C part of module (ice-9 rw).
[bpt/guile.git] / libguile / rw.c
CommitLineData
b0e5fd8c
GH
1/* Copyright (C) 2001 Free Software Foundation, Inc.
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
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
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.
40 * If you do not wish that, delete this exception notice. */
41
42\f
43
44/* This is the C part of the (ice-9 rw) module. */
45
46#include <errno.h>
47
48#include "libguile/_scm.h"
49#include "libguile/fports.h"
50#include "libguile/ports.h"
51#include "libguile/root.h"
52#include "libguile/rw.h"
53#include "libguile/strings.h"
54#include "libguile/validate.h"
55
56#ifdef HAVE_UNISTD_H
57#include <unistd.h>
58#endif
59
60\f
61
62#if defined (EAGAIN)
63#define SCM_MAYBE_EAGAIN || errno == EAGAIN
64#else
65#define SCM_MAYBE_EAGAIN
66#endif
67
68#if defined (EWOULDBLOCK)
69#define SCM_MAYBE_EWOULDBLOCK || errno == EWOULDBLOCK
70#else
71#define SCM_MAYBE_EWOULDBLOCK
72#endif
73
74/* MAYBE there is EAGAIN way of defining this macro but now I EWOULDBLOCK. */
75#define SCM_EBLOCK(errno) \
76 (0 SCM_MAYBE_EAGAIN SCM_MAYBE_EWOULDBLOCK)
77
78SCM_DEFINE (scm_read_string_x_partial, "read-string!/partial", 1, 3, 0,
79 (SCM str, SCM port_or_fdes, SCM start, SCM end),
80 "Read characters from an fport or file descriptor into a\n"
81 "string @var{str}. This procedure is scsh-compatible\n"
82 "and can efficiently read large strings. It will:\n\n"
83 "@itemize\n"
84 "@item\n"
85 "attempt to fill the entire string, unless the @var{start}\n"
86 "and/or @var{end} arguments are supplied. i.e., @var{start}\n"
87 "defaults to 0 and @var{end} defaults to\n"
88 "@code{(string-length str)}\n"
89 "@item\n"
90 "use the current input port if @var{port_or_fdes} is not\n"
91 "supplied.\n"
92 "@item\n"
93 "read any characters that are currently available,\n"
94 "without waiting for the rest (short reads are possible).\n\n"
95 "@item\n"
96 "wait for as long as it needs to for the first character to\n"
97 "become available, unless the port is in non-blocking mode\n"
98 "@item\n"
99 "return @code{#f} if end-of-file is encountered before reading\n"
100 "any characters, otherwise return the number of characters\n"
101 "read.\n"
102 "@item\n"
103 "return 0 if the port is in non-blocking mode and no characters\n"
104 "are immediately available.\n"
105 "@item\n"
106 "return 0 if the request is for 0 bytes, with no\n"
107 "end-of-file check\n"
108 "@end itemize")
109#define FUNC_NAME s_scm_read_string_x_partial
110{
111 char *dest;
112 long read_len;
113 long chars_read = 0;
114 int fdes;
115
116 {
117 long offset;
118 long last;
119
120 SCM_VALIDATE_SUBSTRING_SPEC_COPY (1, str, dest, 3, start, offset,
121 4, end, last);
122 dest += offset;
123 read_len = last - offset;
124 }
125
126 if (SCM_INUMP (port_or_fdes))
127 fdes = SCM_INUM (port_or_fdes);
128 else
129 {
130 SCM port = SCM_UNBNDP (port_or_fdes) ? scm_cur_inp : port_or_fdes;
131
132 SCM_VALIDATE_OPFPORT (2, port);
133 SCM_VALIDATE_INPUT_PORT (2, port);
134
135 /* if there's anything in the port buffers, use it, but then
136 don't touch the file descriptor. otherwise the
137 "return immediately if something is available" rule may
138 be violated. */
139 chars_read = scm_take_from_input_buffers (port, dest, read_len);
140 fdes = SCM_FPORT_FDES (port);
141 }
142
143 if (chars_read == 0 && read_len > 0) /* don't confuse read_len == 0 with
144 EOF. */
145 {
146 SCM_SYSCALL (chars_read = read (fdes, dest, read_len));
147 if (chars_read == -1)
148 {
149 if (SCM_EBLOCK (errno))
150 chars_read = 0;
151 else
152 SCM_SYSERROR;
153 }
154 else if (chars_read == 0)
155 return SCM_BOOL_F;
156 }
157 return scm_long2num (chars_read);
158}
159#undef FUNC_NAME
160
161void
162scm_init_rw ()
163{
164 SCM rw_module = scm_make_module (scm_read_0str ("(ice-9 rw)"));
165 SCM old_module = scm_set_current_module (rw_module);
166
167#ifndef SCM_MAGIC_SNARFER
168#include "libguile/rw.x"
169#endif
170
171 scm_set_current_module (old_module);
172}
173
174/*
175 Local Variables:
176 c-file-style: "gnu"
177 End:
178*/