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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2015-2016, University of Amsterdam
VU University Amsterdam
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 <string.h>
static atom_t ATOM_read;
static atom_t ATOM_write;
static functor_t FUNCTOR_stream_write2;
static functor_t FUNCTOR_stream_read2;
static functor_t FUNCTOR_stream_close1;
typedef struct stream_context
{ IOSTREAM *stream; /* Stream I'm handle of */
module_t module; /* Associated module */
predicate_t pred_write; /* write handler */
predicate_t pred_read; /* read handler */
char *buffered; /* buffered read chars */
size_t buflen; /* length of buffered */
size_t sent; /* sent buffered chars */
} stream_context;
static stream_context*
alloc_stream_context(void)
{ stream_context *ctx = PL_malloc(sizeof(*ctx));
memset(ctx, 0, sizeof(*ctx));
return ctx;
}
static void
free_stream_context(stream_context *ctx)
{ if ( ctx->buffered )
PL_free(ctx->buffered);
PL_free(ctx);
}
static ssize_t
stream_read(void *handle, char *buf, size_t size)
{ stream_context *ctx = handle;
ssize_t rc = -1;
if ( !ctx->pred_read )
ctx->pred_read = PL_pred(FUNCTOR_stream_read2, ctx->module);
if ( !ctx->buffered )
{ fid_t fid = 0;
term_t av;
wchar_t *ws;
size_t len;
if ( (fid = PL_open_foreign_frame()) &&
(av = PL_new_term_refs(2)) &&
PL_unify_stream(av+0, ctx->stream) &&
PL_call_predicate(ctx->module, PL_Q_PASS_EXCEPTION, ctx->pred_read, av) &&
PL_get_wchars(av+1, &len, &ws,
CVT_ALL|CVT_WRITEQ|CVT_EXCEPTION|BUF_MALLOC) )
{ if ( len == 0 )
rc = 0; /* EOF */
ctx->buffered = (char*)ws;
ctx->buflen = len*sizeof(wchar_t);
ctx->sent = 0;
} else
{ term_t ex;
if ( (ex = PL_exception(0)) )
{ Sset_exception(ctx->stream, ex);
} else
{ Sseterr(ctx->stream, SIO_FERR, "Prolog read handler failed");
}
}
if ( fid )
PL_close_foreign_frame(fid);
}
if ( ctx->buffered )
{ size_t left = ctx->buflen - ctx->sent;
if ( left < size )
{ memcpy(buf, &ctx->buffered[ctx->sent], left);
PL_free(ctx->buffered);
ctx->buffered = NULL;
rc = left;
} else
{ memcpy(buf, &ctx->buffered[ctx->sent], size);
ctx->sent += size;
rc = size;
}
}
return rc;
}
static ssize_t
stream_write(void *handle, char *buf, size_t size)
{ stream_context *ctx = handle;
fid_t fid = 0;
term_t av;
int rc;
if ( !ctx->pred_write )
ctx->pred_write = PL_pred(FUNCTOR_stream_write2, ctx->module);
if ( (fid = PL_open_foreign_frame()) &&
(av = PL_new_term_refs(2)) &&
PL_unify_stream(av+0, ctx->stream) &&
PL_unify_wchars(av+1, PL_STRING, size/sizeof(wchar_t), (wchar_t*)buf) &&
PL_call_predicate(ctx->module, PL_Q_PASS_EXCEPTION, ctx->pred_write, av) )
{ rc = size;
} else
{ term_t ex;
if ( (ex = PL_exception(0)) )
{ Sset_exception(ctx->stream, ex);
} else
{ Sseterr(ctx->stream, SIO_FERR, "Prolog write handler failed");
}
rc = -1;
}
if ( fid )
PL_close_foreign_frame(fid);
return rc;
}
static int64_t
stream_seek64(void *handle, int64_t pos, int whence)
{ stream_context *ctx = handle;
(void)ctx;
return -1;
}
static int
stream_control(void *handle, int op, void *data)
{ stream_context *ctx = handle;
(void)ctx;
switch(op)
{ case SIO_FLUSHOUTPUT:
return 0;
}
return -1;
}
static int
stream_close(void *handle)
{ stream_context *ctx = handle;
fid_t fid = 0;
term_t av;
int rc;
predicate_t pred_close = PL_pred(FUNCTOR_stream_close1, ctx->module);
if ( (fid = PL_open_foreign_frame()) &&
(av = PL_new_term_refs(1)) &&
PL_unify_stream(av+0, ctx->stream) &&
PL_call_predicate(ctx->module, PL_Q_PASS_EXCEPTION, pred_close, av) )
{ rc = 0;
} else
{ term_t ex;
if ( (ex = PL_exception(0)) )
{ Sset_exception(ctx->stream, ex);
} else
{ Sseterr(ctx->stream, SIO_FERR, "Prolog write handler failed");
}
rc = -1;
}
if ( fid )
PL_close_foreign_frame(fid);
free_stream_context(ctx);
return rc;
}
static IOFUNCTIONS stream_functions =
{ stream_read,
stream_write,
NULL,
stream_close,
stream_control,
stream_seek64
};
static foreign_t
open_prolog_stream(term_t module, term_t mode, term_t stream, term_t options)
{ IOSTREAM *s;
stream_context *ctx;
int flags = SIO_TEXT|SIO_RECORDPOS|SIO_FBUF;
atom_t a;
module_t m;
if ( !PL_get_atom_ex(mode, &a) )
return FALSE;
if ( a == ATOM_read )
flags |= SIO_INPUT;
else if ( a == ATOM_write )
flags |= SIO_OUTPUT;
else
return PL_domain_error("io_mode", mode);
if ( !PL_get_atom_ex(module, &a) )
return FALSE;
m = PL_new_module(a);
ctx = alloc_stream_context();
s = Snew(ctx, flags, &stream_functions);
ctx->stream = s;
ctx->module = m;
s->encoding = ENC_WCHAR;
s->newline = SIO_NL_POSIX;
if ( PL_unify_stream(stream, s) )
{ return TRUE;
} else
{ Sclose(s);
return PL_uninstantiation_error(stream);
}
}
install_t
install_prolog_stream(void)
{ ATOM_read = PL_new_atom("read");
ATOM_write = PL_new_atom("write");
FUNCTOR_stream_write2 = PL_new_functor(PL_new_atom("stream_write"), 2);
FUNCTOR_stream_read2 = PL_new_functor(PL_new_atom("stream_read"), 2);
FUNCTOR_stream_close1 = PL_new_functor(PL_new_atom("stream_close"), 1);
PL_register_foreign("open_prolog_stream", 4, open_prolog_stream, 0);
}
|