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
|
/* Copyright (C) 1995, 1997, 1998 Aladdin Enterprises. All rights reserved.
* This software is licensed to a single customer by Artifex Software Inc.
* under the terms of a specific OEM agreement.
*/
/*$RCSfile$ $Revision$ */
/* File-based command list implementation */
#include "stdio_.h"
#include "string_.h"
#include "gserror.h"
#include "gserrors.h"
#include "gsmemory.h"
#include "gp.h"
#include "gxclio.h"
/* This is an implementation of the command list I/O interface */
/* that uses the file system for storage. */
/* ------ Open/close/unlink ------ */
int
clist_fopen(char fname[gp_file_name_sizeof], const char *fmode,
clist_file_ptr * pcf, gs_memory_t * mem, gs_memory_t *data_mem,
bool ok_to_compress)
{
if (*fname == 0) {
if (fmode[0] == 'r')
return_error(gs_error_invalidfileaccess);
*pcf =
(clist_file_ptr) gp_open_scratch_file(gp_scratch_file_name_prefix,
fname, fmode);
} else
*pcf = gp_fopen(fname, fmode);
if (*pcf == NULL) {
eprintf1("Could not open the scratch file %s.\n", fname);
return_error(gs_error_invalidfileaccess);
}
return 0;
}
int
clist_fclose(clist_file_ptr cf, const char *fname, bool delete)
{
return (fclose((FILE *) cf) != 0 ? gs_note_error(gs_error_ioerror) :
delete ? clist_unlink(fname) :
0);
}
int
clist_unlink(const char *fname)
{
return (unlink(fname) != 0 ? gs_note_error(gs_error_ioerror) : 0);
}
/* ------ Writing ------ */
long
clist_space_available(long requested)
{
return requested;
}
int
clist_fwrite_chars(const void *data, uint len, clist_file_ptr cf)
{
return fwrite(data, 1, len, (FILE *) cf);
}
/* ------ Reading ------ */
int
clist_fread_chars(void *data, uint len, clist_file_ptr cf)
{
FILE *f = (FILE *) cf;
byte *str = data;
/* The typical implementation of fread */
/* is extremely inefficient for small counts, */
/* so we just use straight-line code instead. */
switch (len) {
default:
return fread(str, 1, len, f);
case 8:
*str++ = (byte) getc(f);
case 7:
*str++ = (byte) getc(f);
case 6:
*str++ = (byte) getc(f);
case 5:
*str++ = (byte) getc(f);
case 4:
*str++ = (byte) getc(f);
case 3:
*str++ = (byte) getc(f);
case 2:
*str++ = (byte) getc(f);
case 1:
*str = (byte) getc(f);
}
return len;
}
/* ------ Position/status ------ */
int
clist_set_memory_warning(clist_file_ptr cf, int bytes_left)
{
return 0; /* no-op */
}
int
clist_ferror_code(clist_file_ptr cf)
{
return (ferror((FILE *) cf) ? gs_error_ioerror : 0);
}
long
clist_ftell(clist_file_ptr cf)
{
return ftell((FILE *) cf);
}
void
clist_rewind(clist_file_ptr cf, bool discard_data, const char *fname)
{
FILE *f = (FILE *) cf;
if (discard_data) {
/*
* The ANSI C stdio specification provides no operation for
* truncating a file at a given position, or even just for
* deleting its contents; we have to use a bizarre workaround to
* get the same effect.
*/
char fmode[4];
/* Opening with "w" mode deletes the contents when closing. */
freopen(fname, gp_fmode_wb, f);
strcpy(fmode, "w+");
strcat(fmode, gp_fmode_binary_suffix);
freopen(fname, fmode, f);
} else {
rewind(f);
}
}
int
clist_fseek(clist_file_ptr cf, long offset, int mode, const char *ignore_fname)
{
return fseek((FILE *) cf, offset, mode);
}
|