-
Notifications
You must be signed in to change notification settings - Fork 19
/
readutil.c
186 lines (149 loc) · 5.26 KB
/
readutil.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2005-2022, University of Amsterdam
VU University Amsterdam
SWI-Prolog Solutions b.v.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include <config.h>
#include <SWI-Stream.h>
#include <SWI-Prolog.h>
#include "utf8.h"
#define BUFSIZE 1024
#define UCFLAGS (REP_UTF8|PL_CODE_LIST)
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This library is dynamically picked up by library(readline), which falls
back to a pure Prolog implementation if this library cannot be found.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
static atom_t ATOM_end_of_file;
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
read_line_to_codes(+Stream, -Codes, ?Tail)
Read a line, upto the next '\n' from Stream. Normally the line is
returned as a difference list Codes-Tail. If EOF is encountered, the
Codes list is closed and Tail is unified with [].
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
static foreign_t
read_line_to_codes3(term_t stream, term_t codes, term_t tail)
{ char buf[BUFSIZE];
char *o = buf, *e = &buf[BUFSIZE];
IOSTREAM *s;
term_t diff = PL_new_term_refs(2);
term_t cl = diff;
int rc = FALSE;
if ( !PL_unify(codes, cl) )
return FALSE;
if ( !PL_get_stream(stream, &s, SIO_INPUT) )
return FALSE;
for(;;)
{ int c = Sgetcode(s);
if ( c == EOF )
{ if ( Sferror(s) || PL_exception(0) )
goto out; /* error */
if ( tail == 0 && o == buf )
{ rc = PL_unify_atom(codes, ATOM_end_of_file);
goto out;
}
if ( PL_unify_chars(cl, UCFLAGS, o-buf, buf) &&
(tail == 0 || PL_unify_nil(tail)) )
rc = TRUE;
goto out;
}
if ( o+8 >= e && o[-1] != '\r' ) /* UTF-8 <= 6 bytes, may discard \r */
{ if ( !PL_unify_chars(diff, PL_DIFF_LIST|UCFLAGS, o-buf, buf) ||
!PL_put_term(cl, diff+1) )
goto out;
o = buf;
}
o = utf8_put_char(o, c);
if ( c == '\n' )
{ if ( tail )
{ rc = ( PL_unify_chars(diff, PL_DIFF_LIST|UCFLAGS, o-buf, buf) &&
PL_unify(diff+1, tail) );
} else
{ o--;
if ( o>buf && o[-1] == '\r' )
o--;
rc = PL_unify_chars(cl, REP_UTF8|PL_CODE_LIST, o-buf, buf);
}
goto out;
}
}
out:
PL_release_stream(s);
return rc;
}
static foreign_t
read_line_to_codes2(term_t stream, term_t codes)
{ return read_line_to_codes3(stream, codes, 0);
}
static foreign_t
read_stream_to_codes3(term_t stream, term_t codes, term_t tail)
{ char buf[BUFSIZE];
char *o = buf, *e = &buf[BUFSIZE];
IOSTREAM *s;
term_t diff = PL_new_term_refs(2);
term_t cl = diff;
if ( !PL_unify(codes, cl) )
return FALSE;
if ( !PL_get_stream(stream, &s, SIO_INPUT) )
return FALSE;
for(;;)
{ int c = Sgetcode(s);
if ( c == EOF )
{ if ( !PL_release_stream(s) )
return FALSE; /* error */
if ( PL_exception(0) )
return FALSE;
if ( tail )
{ return ( PL_unify_chars(diff, PL_DIFF_LIST|UCFLAGS, o-buf, buf) &&
PL_unify(diff+1, tail) );
} else
{ return PL_unify_chars(cl, REP_UTF8|PL_CODE_LIST, o-buf, buf);
}
}
if ( o+7 >= e )
{ if ( !PL_unify_chars(diff, PL_DIFF_LIST|UCFLAGS, o-buf, buf) ||
!PL_put_term(cl, diff+1) )
{ PL_release_stream(s);
return FALSE;
}
o = buf;
}
o = utf8_put_char(o, c);
}
}
static foreign_t
read_stream_to_codes2(term_t stream, term_t codes)
{ return read_stream_to_codes3(stream, codes, 0);
}
install_t
install_readutil()
{ ATOM_end_of_file = PL_new_atom("end_of_file");
PL_register_foreign("read_line_to_codes", 3, read_line_to_codes3, 0);
PL_register_foreign("read_line_to_codes", 2, read_line_to_codes2, 0);
PL_register_foreign("read_stream_to_codes", 3, read_stream_to_codes3, 0);
PL_register_foreign("read_stream_to_codes", 2, read_stream_to_codes2, 0);
}