summaryrefslogtreecommitdiff
path: root/psi/ziodev.c
blob: 4e2eb987768968ccfc54675b721f8d6c3c1515ed (plain)
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/* Copyright (C) 2001-2023 Artifex Software, Inc.
   All Rights Reserved.

   This software is provided AS-IS with no warranty, either express or
   implied.

   This software is distributed under license and may not be copied,
   modified or distributed except as expressly authorized under the terms
   of the license contained in the file LICENSE in this distribution.

   Refer to licensing information at http://www.artifex.com or contact
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
   CA 94129, USA, for further information.
*/


/* Standard IODevice implementation */
#include "memory_.h"
#include "stdio_.h"
#include "string_.h"
#include "ghost.h"
#include "gp.h"
#include "gpcheck.h"
#include "oper.h"
#include "stream.h"
#include "istream.h"
#include "ialloc.h"
#include "iscan.h"
#include "ivmspace.h"
#include "gxiodev.h"            /* must come after stream.h */
                                /* and before files.h */
#include "files.h"
#include "scanchar.h"           /* for char_EOL */
#include "store.h"
#include "ierrors.h"

/* Import the dtype of the stdio IODevices. */
extern const char iodev_dtype_stdio[];

/* Define the special devices. */
#define iodev_special(dname, init, finit, open) {\
    dname, iodev_dtype_stdio,\
        { init, finit, open, iodev_no_open_file, iodev_no_fopen, iodev_no_fclose,\
          iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status,\
          iodev_no_enumerate_files, NULL, NULL,\
          iodev_no_get_params, iodev_no_put_params\
        }, \
        NULL, \
        NULL \
}

/*
 * We need the current context pointer for accessing / opening the %std
 * IODevices.  However, this is not available to the open routine.
 * Therefore, we use the hack of storing this pointer in the IODevice state
 * pointer just before calling the open routines.  We clear the pointer
 * immediately afterwards so as not to wind up with dangling references.
 */

#define LINEEDIT_BUF_SIZE 20    /* initial size, not fixed size */
/*static iodev_proc_open_device(lineedit_open);*/ /* no longer used */
const gx_io_device gs_iodev_lineedit =
    iodev_special("%lineedit%", iodev_no_init, iodev_no_finit, \
                                         iodev_no_open_device);

#define STATEMENTEDIT_BUF_SIZE 50       /* initial size, not fixed size */
/*static iodev_proc_open_device(statementedit_open);*/ /* no longer used */
const gx_io_device gs_iodev_statementedit =
    iodev_special("%statementedit%", iodev_no_init, iodev_no_finit, \
                                             iodev_no_open_device);

/* ------ Operators ------ */

/* <int> .getiodevice <string|null> */
static int
zgetiodevice(i_ctx_t *i_ctx_p)
{
    os_ptr op = osp;
    gx_io_device *iodev;
    const byte *dname;

    check_type(*op, t_integer);
    iodev = gs_getiodevice(imemory, (int)(op->value.intval));
    if (iodev == 0)             /* index out of range */
        return_error(gs_error_rangecheck);
    dname = (const byte *)iodev->dname;
    if (dname == 0)
        make_null(op);
    else
        make_const_string(op, a_readonly | avm_foreign,
                          strlen((const char *)dname), dname);
    return 0;
}

#define COMPILE_TIME_ASSERT(A,B) typedef char A[(B) ? 1 : -1]

/* ------ %lineedit and %statementedit ------ */

/* <file> <bool> <int> <string> .filelineedit <file> */
/* This opens %statementedit% or %lineedit% and is also the
 * continuation proc for callouts.
 * Input:
 *  string is the statement/line buffer,
 *  int is the write index into string
 *  bool is true if %statementedit%
 *  file is stdin
 * Output:
 *  file is a string based stream
 * We store the line being read in a PostScript string.
 * This limits the size to max_string_size (64k).
 * This could be increased by storing the input line in something
 * other than a PostScript string.
 */
COMPILE_TIME_ASSERT(STATEMENTEDIT_SIZE_CHECK, STATEMENTEDIT_BUF_SIZE <= max_string_size);
COMPILE_TIME_ASSERT(LINEEDIT_BUF_SIZE_CHECK, LINEEDIT_BUF_SIZE <= max_string_size);

int
zfilelineedit(i_ctx_t *i_ctx_p)
{
    uint count = 0;
    bool in_eol = false;
    int code;
    os_ptr op = osp;
    bool statement;
    stream *s;
    stream *ins;
    gs_string str;
    uint initial_buf_size;
    const char *filename;
    /*
     * buf exists only for stylistic parallelism: all occurrences of
     * buf-> could just as well be str. .
     */
    gs_string *const buf = &str;

    check_type(*op, t_string);          /* line assembled so far */
    buf->data = op->value.bytes;
    buf->size = op->tas.rsize;
    check_type(*(op-1), t_integer);     /* index */
    count = (op-1)->value.intval;
    check_type(*(op-2), t_boolean);     /* statementedit/lineedit */
    statement = (op-2)->value.boolval;
    check_read_file(i_ctx_p, ins, op - 3);      /* %stdin */

    /* extend string */
    initial_buf_size = statement ? STATEMENTEDIT_BUF_SIZE : LINEEDIT_BUF_SIZE;
    if (!buf->data || (buf->size < initial_buf_size)) {
        count = 0;
        buf->data = gs_alloc_string(imemory_system, initial_buf_size,
            "zfilelineedit(buffer)");
        if (buf->data == 0)
            return_error(gs_error_VMerror);
        op->value.bytes = buf->data;
        op->tas.rsize = buf->size = initial_buf_size;
    }

rd:
    code = zreadline_from(ins, buf, imemory_system, &count, &in_eol);
    if (buf->size > max_string_size) {
        /* zreadline_from reallocated the buffer larger than
         * is valid for a PostScript string.
         * Return an error, but first realloc the buffer
         * back to a legal size.
         */
        byte *nbuf = gs_resize_string(imemory_system, buf->data, buf->size,
                max_string_size, "zfilelineedit(shrink buffer)");
        if (nbuf == 0)
            return_error(gs_error_VMerror);
        op->value.bytes = buf->data = nbuf;
        op->tas.rsize = buf->size = max_string_size;
        return_error(gs_error_limitcheck);
    }

    op->value.bytes = buf->data; /* zreadline_from sometimes resizes the buffer. */
    op->tas.rsize = buf->size;

    switch (code) {
        case EOFC:
            code = gs_note_error(gs_error_undefinedfilename);
            /* falls through */
        case 0:
            break;
        default:
            code = gs_note_error(gs_error_ioerror);
            break;
        case CALLC:
            {
                ref rfile;
                (op-1)->value.intval = count;
                /* callout is for stdin */
                make_file(&rfile, a_readonly | avm_system, ins->read_id, ins);
                code = s_handle_read_exception(i_ctx_p, code, &rfile,
                    NULL, 0, zfilelineedit);
            }
            break;
        case 1:         /* filled buffer */
            {
                uint nsize = buf->size;
                byte *nbuf;

                if (nsize >= max_string_size) {
                    code = gs_note_error(gs_error_limitcheck);
                    break;
                }
                else if (nsize >= max_string_size / 2)
                    nsize= max_string_size;
                else
                    nsize = buf->size * 2;
                nbuf = gs_resize_string(imemory_system, buf->data, buf->size, nsize,
                                        "zfilelineedit(grow buffer)");
                if (nbuf == 0) {
                    code = gs_note_error(gs_error_VMerror);
                    break;
                }
                op->value.bytes = buf->data = nbuf;
                op->tas.rsize = buf->size = nsize;
                goto rd;
            }
    }
    if (code != 0)
        return code;
    if (statement) {
        /* If we don't have a complete token, keep going. */
        stream st;
        stream *ts = &st;
        scanner_state state;
        ref ignore_value;
        uint depth = ref_stack_count(&o_stack);
        int code;

        /* Add a terminating EOL. */
        if (count + 1 > buf->size) {
            uint nsize;
            byte *nbuf;

            nsize = buf->size + 1;
            if (nsize > max_string_size) {
                return_error(gs_note_error(gs_error_limitcheck));
            }
            else {
                nbuf = gs_resize_string(imemory_system, buf->data, buf->size, nsize,
                                        "zfilelineedit(grow buffer)");
                if (nbuf == 0) {
                    code = gs_note_error(gs_error_VMerror);
                    return_error(code);
                }
                op->value.bytes = buf->data = nbuf;
                op->tas.rsize = buf->size = nsize;
            }
        }
        buf->data[count++] = char_EOL;
        s_init(ts, NULL);
        sread_string(ts, buf->data, count);
sc:
        gs_scanner_init_stream_options(&state, ts, SCAN_CHECK_ONLY);
        ialloc_set_space(idmemory, avm_local);
        code = gs_scan_token(i_ctx_p, &ignore_value, &state);
        ref_stack_pop_to(&o_stack, depth);
        if (code < 0)
            code = scan_EOF;    /* stop on scanner error */
        switch (code) {
            case 0:             /* read a token */
            case scan_BOS:
                goto sc;        /* keep going until we run out of data */
            case scan_Refill:
                goto rd;
            case scan_EOF:
                break;
            default:            /* error */
                return code;
        }
    }
    buf->data = gs_resize_string(imemory_system, buf->data, buf->size, count,
                           "zfilelineedit(resize buffer)");
    if (buf->data == 0)
        return_error(gs_error_VMerror);
    op->value.bytes = buf->data;
    op->tas.rsize = buf->size;

    s = file_alloc_stream(imemory_system, "zfilelineedit(stream)");
    if (s == 0)
        return_error(gs_error_VMerror);

    sread_string(s, buf->data, count);
    s->save_close = s->procs.close;
    s->procs.close = file_close_disable;

    filename = statement ? gs_iodev_statementedit.dname
        : gs_iodev_lineedit.dname;
    code = ssetfilename(s, (const byte *)filename, strlen(filename)+1);
    if (code < 0) {
        sclose(s);
        return_error(gs_error_VMerror);
    }

    ref_stack_pop(&o_stack, 3);
    make_stream_file(osp, s, "r");

    return code;
}

/* ------ Initialization procedure ------ */

const op_def ziodev_op_defs[] =
{
    {"1.getiodevice", zgetiodevice},
    op_def_end(0)
};