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
|
/*
reads input data
Copyright (C) 1999 Martin Vogt
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation.
For more information look at the file COPYRIGHT in this package
*/
#include "fileInputStream.h"
#include <iostream>
using namespace std;
FileInputStream::FileInputStream() {
file=NULL;
lopen=false;
fileLen=0;
}
FileInputStream::~FileInputStream() {
close();
}
int FileInputStream::open(const char* dest) {
close();
if (dest == NULL) {
return false;
}
setUrl(dest);
if (strlen(dest) == 1) {
if (strncmp(dest,"-",1)==0) {
file=::fdopen(0,"rb");
}
}
// load out of current dir if no full path is given
if (file == NULL) {
file=fopen(dest,"rb");
}
fileLen=0;
if (file == NULL) {
cout <<"cannot open file:"<< dest<<endl;
} else {
lopen=true;
struct stat fileStat;
stat(dest,&fileStat);
fileLen=(long)fileStat.st_size;
}
int back=(file!=NULL);
return back;
}
void FileInputStream::close() {
if (isOpen()) {
::fclose(file);
file=NULL;
lopen=false;
}
}
int FileInputStream::isOpen() {
return lopen;
}
int FileInputStream::eof() {
if (isOpen()==false){
return true;
}
int back=true;
if (file != NULL) {
back=feof(file);
}
return back;
}
int FileInputStream::read(char* ptr,int size) {
int bytesRead=-1;
if (isOpen()) {
if (size <= 0) {
cout << "size is <= 0!"<<endl;
return 0;
}
if (file != NULL) {
bytesRead=fread(ptr,1,size,file);
}
} else {
cerr << "read on not open file want:"<<size<<endl;
return 0;
}
return bytesRead;
}
int FileInputStream::seek(long posInBytes) {
int back=true;
if (isOpen()==false) {
return false;
}
long pos=-1;
if (file != NULL) {
pos=fseek(file,posInBytes,SEEK_SET);
}
if (pos < 0) {
cout <<"seek error in FileInputStream::seek"<<endl;
back=false;
}
return back;
}
long FileInputStream::getByteLength() {
return fileLen;
}
long FileInputStream::getBytePosition() {
int back=0;
if (isOpen()) {
if (file != NULL) {
back=ftell(file);
}
}
return back;
}
void FileInputStream::print() {
printf("pos in file:%8x\n",(int)getBytePosition());
}
|