-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfdnfile.cpp
executable file
·437 lines (356 loc) · 9.99 KB
/
fdnfile.cpp
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#include "fdnode.h"
/****************************************************************************/
/* */
/* Class: FDNFile */
/* Purpose: Used to perform file io on the nodelist indices and data files */
/* */
/* Related Classes: FrontDoorWNode */
/* */
/****************************************************************************/
/****************************************************************************/
/* */
/* P U B L I C F U N C T I O N S */
/* */
/****************************************************************************/
// FDNFile::FDNFile()
// If it is required that you initialise data you may do so in this section
// You /should/ initialise Status = Error = 0, and ensure FileName is empty.
#ifdef FDN_USESTD
FDNFile::FDNFile()
{
Status=Error=Flags=0;
*FileName=0;
Data = NULL;
}
#elif defined(FDN_USEIOS)
FDNFile::FDNFile()
{
Status=Error=Flags=0;
*FileName=0;
}
#elif defined(FDN_USEHAND)
FDNFile::FDNFile()
{
Status=Error=Flags=0;
*FileName=0;
Data = 0;
}
#endif
// int FDNFile::Open()
// Attempt to open the file pointed to in filename and connects it to Data
// Status should be set to 1 on a successful open.
// Returns 0 on failure, non zero on success.
#ifdef FDN_USESTD
FDNPREF int FDNFUNC FDNFile::Open()
{
char * pFileName=FileName;
#ifdef FDN_WINDOWS
char AnsiFileName[PATHLENGTH];
AnsiToOem(FileName, AnsiFileName);
pFileName=AnsiFileName;
#endif
int mode = 0;
if(Flags & FDNFileDestroy) mode = 1;
if(Flags & FDNFileUpdate) mode = 2;
switch(mode){
case 0 : // open for read
Data = _fsopen(pFileName, "rb", SH_DENYWR);
break;
case 1 : // open for destructive write
Data = _fsopen(pFileName, "w+b", SH_DENYWR);
break;
case 2 : // open for update write
Data = _fsopen(pFileName, "r+b", SH_DENYWR);
#ifdef __WATCOMC__
if(!Data && errno == ENOENT) Data = _fsopen(pFileName, "w+b", SH_DENYWR);
#else
if(!Data && errno == ENOFILE) Data = _fsopen(pFileName, "w+b", SH_DENYWR);
#endif
break;
}
if(!Data){
SignalError(errno);
return(0);
}
fseek(Data, 0, SEEK_SET);
Status=1;
return(1);
}
#elif defined(FDN_USEIOS)
FDNPREF int FDNFUNC FDNFile::Open()
{
char * pFileName=FileName;
#ifdef FDN_WINDOWS
char AnsiFileName[PATHLENGTH];
AnsiToOem(FileName, AnsiFileName);
pFileName=AnsiFileName;
#endif
int mode = 0;
if(Flags & FDNFileDestroy) mode = 1;
if(Flags & FDNFileUpdate) mode = 2;
switch(mode){
case 0 : // open for read
Data.open(pFileName, ios::binary | ios::in, SH_DENYWR);
break;
case 1 : // open for destructive write
Data.open(pFileName, ios::binary | ios::in | ios::out | ios::truncate , SH_DENYWR);
break;
case 2 : // open for update write
Data.open(pFileName, ios::binary | ios::in | ios::out , SH_DENYWR);
break;
}
if(!Data){
// I don't know if we can do this next bit...
SignalError(errno);
return(0);
}
else return(1);
}
#elif defined(FDN_USEHAND)
FDNPREF int FDNFUNC FDNFile::Open()
{
int flag;
char * pFileName=FileName;
#ifdef FDN_WINDOWS
char AnsiFileName[PATHLENGTH];
AnsiToOem(FileName, AnsiFileName);
pFileName=AnsiFileName;
#endif
int mode = 0;
if(Flags & FDNFileDestroy) mode = 1;
if(Flags & FDNFileUpdate) mode = 2;
switch(mode){
case 0 : // open for read
flag = sopen(pFileName, O_RDONLY | O_BINARY, SH_DENYWR);
break;
case 1 : // open for destructive write
flag = sopen(pFileName, O_TRUNC | O_CREAT | O_RDWR | O_BINARY, SH_DENYWR);
break;
case 2 : // open for update write
flag = sopen(pFileName, O_RDWR | O_BINARY, SH_DENYWR);
break;
}
if(flag==-1){
SignalError(errno);
return(0);
}
Data = flag;
Status=1;
return(1);
}
#endif
// int FDNFile::Close();
// Attempts to close the file in use
// Status should be set to zero on successful closure.
// returns 0 on failure, non zero otherwise.
#ifdef FDN_USESTD
FDNPREF int FDNFUNC FDNFile::Close()
{
int flag;
if(Data) flag=fclose(Data); else return(0);
if(!flag){
Status=0;
return(1);
}
SignalError(errno);
return(0);
}
#elif defined(FDN_USEIOS)
FDNPREF int FDNFUNC FDNFile::Close()
{
Data.close();
Status=0;
return(1);
}
#elif defined(FDN_USEHAND)
FDNPREF int FDNFUNC FDNFile::Close()
{
int flag;
if(Data) flag=close(Data); else return(0);
if(!flag){
Status=0;
return(1);
}
SignalError(errno);
return(0);
}
#endif
// int FDNFile::Seek(long offset, int whence)
// This function should seek to the appropriate offset in a file based on whence
// which follows the SEEK_SET, SEEK_CUR and SEEK_END example.
// Function shouyld return 0 on failure, 1 otherwise.
#ifdef FDN_USESTD
FDNPREF int FDNFUNC FDNFile::Seek(long offset, int whence)
{
int flag;
flag = fseek(Data, offset, whence);
if(flag){
SignalError(errno);
return(0);
}
else return(1);
}
#elif defined(FDN_USEIOS)
FDNPREF int FDNFUNC FDNFile::Seek(long offset, int whence)
{
ios::seek_dir s;
switch(whence){
case SEEK_SET : s = ios::beg; break;
case SEEK_CUR : s = ios::cur; break;
case SEEK_END : s = ios::end; break;
}
Data.seekg(offset, s);
if(Data.rdstate()){
SignalError(errno);
Data.clear();
return(0);
}
return(1);
}
#elif defined(FDN_USEHAND)
FDNPREF int FDNFUNC FDNFile::Seek(long offset, int whence)
{
long flag;
flag = lseek(Data, offset, whence);
if(flag==-1){
SignalError(errno);
return(0);
}
else return(1);
}
#endif
// long int FDNFile::Size()
// This functions determines the size of the opened file
#ifdef FDN_USESTD
FDNPREF long int FDNFUNC FDNFile::Size()
{
long Extent, Current;
Current = ftell(Data);
fseek(Data, 0, SEEK_END);
Extent = ftell(Data);
fseek(Data, Current, SEEK_SET);
return(Extent);
}
#elif defined FDN_USEIOS
FDNPREF long int FDNFUNC FDNFile::Size()
{
streampos Extent, Current;
Current = Data.tellp();
Data.seekg(0, ios::end);
Extent = Data.tellp();
Data.seekg(Current, ios::cur);
return((long int) Extent);
}
#elif defined FDN_USEHAND
FDNPREF long int FDNFUNC FDNFile::Size()
{
long Extent, Current;
Current = tell(Data);
lseek(Data, 0, SEEK_END);
Extent = tell(Data);
lseek(Data, Current, SEEK_SET);
return(Extent);
}
#endif
// int FDNFile::Read(void * address, size_t size, size_t items)
// This function attempts to read "items" objects of size "size" into the memory
// location pointed to be address.
// The function should return 0 on failure, non zero on success.
#ifdef FDN_USESTD
FDNPREF int FDNFUNC FDNFile::Read(void * address, size_t size, size_t items, int ErrSensitive)
{
size_t noread;
noread = fread(address, size, items, Data);
if(ErrSensitive && (noread!=items)){
SignalError(EZERO);
// Hmm, nothing to call with SignalError really :-|.
return(0);
}
else return(1);
}
#elif defined(FDN_USEIOS)
FDNPREF int FDNFUNC FDNFile::Read(void * address, size_t size, size_t items, int ErrSensitive)
{
Data.read((char *) address, (int) (size * items));
if(ErrSensitive && Data.rdstate()){
SignalError(errno);
Data.clear();
return(0);
}
Data.clear();
return(1);
}
#elif defined(FDN_USEHAND)
FDNPREF int FDNFUNC FDNFile::Read(void * address, size_t size, size_t items, int ErrSensitive)
{
int flag;
flag = read(Data, address, (unsigned int) (size * items));
// Were we able to read in all values?
if(ErrSensitive && (flag <= (int) (items * size))){
SignalError(EZERO);
return(0);
}
/*
if(flag==-1){
// A more serious error, always report
SignalError(errno);
return(0);
}*/
return(1);
}
#endif
// int FDNFile::Write(void * address, size_t size, size_t items, int ErrSense)
// This function attempts to write "items" objects of size "size" into the memory
// location pointed to be address.
// The function should return 0 on failure, non zero on success.
#ifdef FDN_USESTD
FDNPREF int FDNFUNC FDNFile::Write(void * address, size_t size, size_t items, int ErrSensitive)
{
size_t nowritten;
nowritten = fwrite(address, size, items, Data);
if(ErrSensitive && (nowritten!=items)){
SignalError(EZERO);
// Hmm, nothing to call with SignalError really :-|.
return(0);
}
else return(1);
}
#elif defined(FDN_USEIOS)
FDNPREF int FDNFUNC FDNFile::Write(void * address, size_t size, size_t items, int ErrSensitive)
{
Data.write((char *) address, (int) (size * items));
if(ErrSensitive && Data.rdstate()){
SignalError(errno);
Data.clear();
return(0);
}
//if(Data.rdstart())
Data.clear();
return(1);
}
#elif defined(FDN_USEHAND)
FDNPREF int FDNFUNC FDNFile::Write(void * address, size_t size, size_t items, int ErrSensitive)
{
int flag;
flag = write(Data, address, (unsigned int) (size * items));
// Were we able to read in all values?
if(ErrSensitive && (flag <= (int) (items * size))){
SignalError(EZERO);
return(0);
}
/*
if(flag==-1){
// A more serious error, always report
SignalError(errno);
return(0);
}*/
return(1);
}
#endif
#if defined(FDN_USEHAND) || defined(FDN_USEIOS) || defined(FDN_USESTD)
FDNFile::~FDNFile()
{
Close();
Status=0;
}
#endif