-
Notifications
You must be signed in to change notification settings - Fork 9
/
file1.cpp
371 lines (309 loc) · 8.15 KB
/
file1.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
//
// AYA version 5
//
// 1つのファイルを扱うクラス CFile1
// written by umeici. 2004
//
#if defined(WIN32) || defined(_WIN32_WCE)
# include "stdafx.h"
#endif
#include <string.h>
#include "ccct.h"
#include "file.h"
#include "manifest.h"
#include "globaldef.h"
#include "wsex.h"
#include "misc.h"
//////////DEBUG/////////////////////////
#ifdef _WINDOWS
#ifdef _DEBUG
#include <crtdbg.h>
#define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
#endif
#endif
////////////////////////////////////////
#ifdef POSIX
#define wcsicmp wcscasecmp
#endif
#ifdef INT64_IS_NOT_STD
extern "C" {
__int64 __cdecl _ftelli64(FILE *);
int __cdecl _fseeki64(FILE *, __int64, int);
}
#endif
/* -----------------------------------------------------------------------
* 関数名 : CFile1::Open
* 機能概要: ファイルをオープンします
*
* 返値 : 0/1=失敗/成功(既にロードされている含む)
* -----------------------------------------------------------------------
*/
int CFile1::Open(void)
{
if (fp != NULL)
return 1;
fp = yaya::w_fopen(name.c_str(), (wchar_t *)mode.c_str());
if ( ! fp ) {
size = 0;
return 0;
}
#ifdef POSIX
yaya::int_t cur = ftello(fp);
fseeko(fp, 0, SEEK_SET);
yaya::int_t start = ftello(fp);
fseeko(fp, 0, SEEK_END);
yaya::int_t end = ftello(fp);
fseeko(fp, cur, SEEK_SET);
#else
yaya::int_t cur = _ftelli64(fp);
_fseeki64(fp,0,SEEK_SET);
yaya::int_t start = _ftelli64(fp);
_fseeki64(fp,0,SEEK_END);
yaya::int_t end = _ftelli64(fp);
_fseeki64(fp,cur,SEEK_SET);
#endif
size = end-start;
return 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::Close
* 機能概要: ファイルをクローズします
*
* 返値 : 1/2=成功/ロードされていない、もしくは既にunloadされている
* -----------------------------------------------------------------------
*/
int CFile1::Close(void)
{
if (fp) {
fclose(fp);
fp = NULL;
return 1;
}
else {
return 2;
}
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::Write
* 機能概要: ファイルに文字列を書き込みます
*
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
int CFile1::Write(const yaya::string_t &istr)
{
if (fp == NULL)
return 0;
// 文字列をマルチバイト文字コードに変換
char *t_istr = Ccct::Ucs2ToMbcs(istr, charset);
if (t_istr == NULL)
return 0;
long len = (long)strlen(t_istr);
// 書き込み
fwrite(t_istr, sizeof(char), len, fp);
free(t_istr);
t_istr = NULL;
return 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::WriteBin
* 機能概要: ファイルにバイナリデータを書き込みます
*
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
int CFile1::WriteBin(const yaya::string_t &istr, const yaya::char_t alt)
{
if (fp == NULL)
return 0;
size_t len = istr.size();
unsigned char *t_istr = reinterpret_cast<unsigned char*>(malloc(len+1));
t_istr[len] = 0; //念のためゼロ終端(いらない)
//altを0に置き換えつつデータ構築
for ( size_t i = 0 ; i < len ; ++i ) {
if ( istr[i] == alt ) {
t_istr[i] = 0;
}
else {
t_istr[i] = static_cast<unsigned char>(istr[i]);
}
}
// 書き込み
size_t write = fwrite(t_istr, sizeof(unsigned char), len, fp);
free(t_istr);
t_istr = NULL;
return write;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::WriteDecode
* 機能概要: ファイルにバイナリデータをデコードしながら書き込みます
*
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
int CFile1::WriteDecode(const yaya::string_t &istr, const yaya::string_t &type)
{
if (fp == NULL)
return 0;
std::string out;
if ( wcsicmp(type.c_str(),L"base64") == 0 ) {
DecodeBase64(out,istr.c_str(),istr.length());
}
else if ( wcsicmp(type.c_str(),L"form") == 0 ) {
DecodeURL(out,istr.c_str(),istr.length(),true);
}
else {
DecodeURL(out,istr.c_str(),istr.length(),false);
}
// 書き込み
size_t write = fwrite(out.c_str(), sizeof(unsigned char), out.length(), fp);
return write;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::Read
* 機能概要: ファイルから文字列を1行読み取ります
*
* 返値 : -1/0/1=EOF/失敗/成功
* -----------------------------------------------------------------------
*/
int CFile1::Read(yaya::string_t &ostr)
{
ostr.erase();
if (fp == NULL)
return 0;
std::string buf;
buf.reserve(1000);
if (yaya::ws_fgets(buf, ostr, fp, charset, 0, bomcheck, false) == yaya::WS_EOF)
return -1;
bomcheck++;
return 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::ReadBin
* 機能概要: ファイルからバイナリデータを読み取ります
*
* 返値 : -1/0/1=EOF/失敗/成功
* -----------------------------------------------------------------------
*/
int CFile1::ReadBin(yaya::string_t &ostr, size_t len, yaya::char_t alt)
{
ostr.erase();
if (fp == NULL)
return 0;
if(len<1){ //0=デフォルトサイズ指定
len = (size_t)size;
}
char f_buffer[1024];
size_t read = 0;
while ( true ) {
size_t lenread = len - read;
if ( lenread > sizeof(f_buffer) ) {
lenread = sizeof(f_buffer);
}
size_t done = fread(f_buffer,1,lenread,fp);
if ( ! done ) {
break;
}
for ( size_t i = 0 ; i < done ; ++i ) {
if ( f_buffer[i] == 0 ) {
ostr.append(1,alt);
}
else {
ostr.append(1,static_cast<yaya::char_t>(static_cast<unsigned char>(f_buffer[i])));
}
}
read += done;
if ( done < lenread ) { break; }
}
return read;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::ReadEncode
* 機能概要: ファイルからバイナリデータをエンコードして読み取ります
*
* 返値 : -1/0/1=EOF/失敗/成功
* -----------------------------------------------------------------------
*/
int CFile1::ReadEncode(yaya::string_t &ostr, size_t len, const yaya::string_t &type)
{
ostr.erase();
if (fp == NULL)
return 0;
if(len<1){ //0=デフォルトサイズ指定
len = (size_t)size;
}
char f_buffer[3*3*3*3*3*3*3]; //3の倍数にすること base64対策
size_t read = 0;
yaya::string_t s;
int enc_type = 0;
if ( wcsicmp(type.c_str(),L"base64") == 0 ) {
enc_type = 1;
}
else if ( wcsicmp(type.c_str(),L"form") == 0 ) {
enc_type = 2;
}
while ( true ) {
size_t lenread = len - read;
if ( lenread > sizeof(f_buffer) ) {
lenread = sizeof(f_buffer);
}
size_t done = fread(f_buffer,1,lenread,fp);
if ( ! done ) {
break;
}
s.erase();
if ( enc_type == 1 ) { //b64
EncodeBase64(s,f_buffer,done);
}
else if ( enc_type == 2 ) { //form
EncodeURL(s,f_buffer,done,true);
}
else {
EncodeURL(s,f_buffer,done,false);
}
ostr += s;
read += done;
if ( done < lenread ) { break; }
}
return read;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::FSeek
* 機能概要: Cライブラリfseek同等
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
yaya::int_t CFile1::FSeek(yaya::int_t offset,int origin){
if (fp == NULL)
return 0;
#ifdef POSIX
yaya::int_t result = fseeko(fp, offset, origin);
#else
yaya::int_t result=::_fseeki64(fp,offset,origin);
#endif
if(result!=0){
return 0;
}else{
return 1;
}
}
/* -----------------------------------------------------------------------
* 関数名 : CFile1::FTell
* 機能概要: Cライブラリftell同等
* 返値 : -1/その他=失敗/成功(ftellの結果)
* -----------------------------------------------------------------------
*/
yaya::int_t CFile1::FTell(){
if (fp == NULL)
return -1;
#ifdef POSIX
yaya::int_t result = ftello(fp);
#else
yaya::int_t result=::_ftelli64(fp);
#endif
if(result<0){
return -1;
}else{
return result;
}
}