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
|
/* Copyright (C) 2001-2019 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., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* %pipe% IODevice */
#include "errno_.h"
#include "pipe_.h"
#include "stdio_.h"
#include "string_.h"
#include "gserrors.h"
#include "gstypes.h"
#include "gsmemory.h" /* for gxiodev.h */
#include "gxiodev.h"
/* The file device procedures */
static int
do_pclose(FILE *file)
{
#ifndef GS_NO_FILESYSTEM
return pclose(file);
#endif
}
static int
fs_file_open_pipe(const gs_memory_t *mem, void *secret, const char *fname, char *rfname, const char *mode, gp_file **file)
{
*file = gp_file_FILE_alloc(mem);
if (*file == NULL)
return gs_error_VMerror;
errno = 0;
/*
* The OSF/1 1.3 library doesn't include const in the
* prototype for popen, so we have to break const here.
*/
if (gp_file_FILE_set(*file, popen((char *)fname, (char *)mode), do_pclose)) {
*file = NULL;
return_error(gs_fopen_errno_to_code(errno));
}
if (rfname != NULL)
strcpy(rfname, fname);
return 0;
}
static int
pipe_fopen(gx_io_device * iodev, const char *fname, const char *access,
gp_file ** pfile, char *rfname, uint rnamelen, gs_memory_t *mem)
{
#ifdef GS_NO_FILESYSTEM
return 0;
#else
gs_lib_ctx_t *ctx = mem->gs_lib_ctx;
gs_fs_list_t *fs = ctx->core->fs;
if (gp_validate_path(mem, fname, access) != 0)
return gs_error_invalidfileaccess;
/*
* Some platforms allow opening a pipe with a '+' in the access
* mode, even though pipes are not positionable. Detect this here.
*/
if (strchr(access, '+'))
return_error(gs_error_invalidfileaccess);
*pfile = NULL;
for (fs = ctx->core->fs; fs != NULL; fs = fs->next)
{
int code = 0;
if (fs->fs.open_pipe)
code = fs->fs.open_pipe(mem, fs->secret, fname, rfname, access, pfile);
if (code < 0)
return code;
if (*pfile != NULL)
break;
}
return 0;
#endif
}
static int
pipe_fclose(gx_io_device * iodev, gp_file * file)
{
#ifndef GS_NO_FILESYSTEM
gp_fclose(file);
#endif
return 0;
}
static int
pipe_init(gx_io_device * iodev, gs_memory_t * mem)
{
gs_fs_list_t *fs = mem->gs_lib_ctx->core->fs;
while (fs->next)
fs = fs->next;
/* Last one is out file device */
fs->fs.open_pipe = fs_file_open_pipe;
return 0;
}
/* The pipe IODevice */
const gx_io_device gs_iodev_pipe = {
"%pipe%", "Special",
{pipe_init, iodev_no_finit, iodev_no_open_device,
NULL /*iodev_os_open_file */ , pipe_fopen, pipe_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
};
|