-
Notifications
You must be signed in to change notification settings - Fork 9
/
file.cpp
342 lines (302 loc) · 9.29 KB
/
file.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
//
// AYA version 5
//
// ファイルを扱うクラス CFile
// written by umeici. 2004
//
// write/readの度にlistから対象を検索していますが、一度に取り扱うファイルは
// 多くても数個だと思うので、これでも実行速度に問題はないと考えています。
//
#if defined(WIN32) || defined(_WIN32_WCE)
# include "stdafx.h"
#endif
#include <list>
#include <algorithm>
#include "file.h"
#include "misc.h"
#include "globaldef.h"
//////////DEBUG/////////////////////////
#ifdef _WINDOWS
#ifdef _DEBUG
#include <crtdbg.h>
#define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
#endif
#endif
////////////////////////////////////////
/* -----------------------------------------------------------------------
* 関数名 : CFile::ProcessOpenMode
* 機能概要: AYA形式のFOPENパラメータ指定から、fopenが解釈できる形式に
* 変換し、同時に書式をチェックします。
*
* 返値 : true/false=正常/不良
* -----------------------------------------------------------------------
*/
bool CFile::ProcessOpenMode(yaya::string_t &t_mode)
{
if (t_mode == L"read")
t_mode = L"r";
else if (t_mode == L"write")
t_mode = L"w";
else if (t_mode == L"append")
t_mode = L"a";
else if (t_mode == L"read_binary")
t_mode = L"rb";
else if (t_mode == L"write_binary")
t_mode = L"wb";
else if (t_mode == L"append_binary")
t_mode = L"ab";
if (t_mode == L"read_random")
t_mode = L"r+";
else if (t_mode == L"write_random")
t_mode = L"w+";
else if (t_mode == L"append_random")
t_mode = L"a+";
else if (t_mode == L"read_binary_random")
t_mode = L"rb+";
else if (t_mode == L"write_binary_random")
t_mode = L"wb+";
else if (t_mode == L"append_binary_random")
t_mode = L"ab+";
if (
t_mode != L"r" &&
t_mode != L"w" &&
t_mode != L"a" &&
t_mode != L"rb" &&
t_mode != L"wb" &&
t_mode != L"ab" &&
t_mode != L"r+" &&
t_mode != L"w+" &&
t_mode != L"a+" &&
t_mode != L"rb+" &&
t_mode != L"wb+" &&
t_mode != L"ab+"
) {
return false;
}
else {
return true;
}
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::Add
* 機能概要: 指定されたファイルをオープンします
*
* 返値 : 0/1/2=失敗/成功/既にオープンしている
* -----------------------------------------------------------------------
*/
int CFile::Add(const yaya::string_t &name, const yaya::string_t &mode)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return 2;
}
yaya::string_t t_mode = mode;
if ( ! ProcessOpenMode(t_mode) ) {
return 0;
}
filelist.emplace_back(CFile1(name, charset, t_mode));
it = filelist.end();
it--;
if (!it->Open()) {
filelist.erase(it);
return 0;
}
return 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::Delete
* 機能概要: 指定されたファイルをクローズします
*
* 返値 : 1/2=成功/オープンされていない、もしくは既にfcloseされている
* -----------------------------------------------------------------------
*/
int CFile::Delete(const yaya::string_t &name)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
int result = it->Close();
it = filelist.erase(it);
return result;
}
return 2;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::DeleteAll
* 機能概要: すべてのファイルをクローズします
* -----------------------------------------------------------------------
*/
void CFile::DeleteAll(void)
{
filelist.clear();
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::Write
* 機能概要: ファイルに文字列を書き込みます
*
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
int CFile::Write(const yaya::string_t &name, const yaya::string_t &istr)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->Write(istr);
}
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::WriteBin
* 機能概要: ファイルにバイナリデータを書き込みます
*
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
int CFile::WriteBin(const yaya::string_t &name, const yaya::string_t &istr, const yaya::char_t alt)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->WriteBin(istr,alt);
}
CFile1 tempfile(name, charset, L"wb");
if ( ! tempfile.Open() ) {
return 0;
}
int result = tempfile.WriteBin(istr,alt);
tempfile.Close();
return result;
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::WriteDecode
* 機能概要: ファイルにバイナリデータをデコードしながら書き込みます
*
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
int CFile::WriteDecode(const yaya::string_t &name, const yaya::string_t &istr, const yaya::string_t &type)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->WriteDecode(istr,type);
}
CFile1 tempfile(name, charset, L"wb");
if ( ! tempfile.Open() ) {
return 0;
}
int result = tempfile.WriteDecode(istr,type);
tempfile.Close();
return result;
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::Read
* 機能概要: ファイルから文字列を1行読み取ります
*
* 返値 : -1/0/1=EOF/失敗/成功
* -----------------------------------------------------------------------
*/
int CFile::Read(const yaya::string_t &name, yaya::string_t &ostr)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->Read(ostr);
}
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::ReadBin
* 機能概要: ファイルからバイナリデータを読み取ります
*
* 返値 : -1/0/1=EOF/失敗/成功
* -----------------------------------------------------------------------
*/
int CFile::ReadBin(const yaya::string_t &name, yaya::string_t &ostr, size_t len, yaya::char_t alt)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->ReadBin(ostr,len,alt);
}
CFile1 tempfile(name, charset, L"rb");
if ( ! tempfile.Open() ) {
return 0;
}
int result = tempfile.ReadBin(ostr,len,alt);
tempfile.Close();
return result;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::ReadEncode
* 機能概要: ファイルからバイナリデータをエンコードして読み取ります
*
* 返値 : -1/0/1=EOF/失敗/成功
* -----------------------------------------------------------------------
*/
int CFile::ReadEncode(const yaya::string_t &name, yaya::string_t &ostr, size_t len, const yaya::string_t &type)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->ReadEncode(ostr,len,type);
}
CFile1 tempfile(name, charset, L"rb");
if ( ! tempfile.Open() ) {
return 0;
}
int result = tempfile.ReadEncode(ostr,len,type);
tempfile.Close();
return result;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::Size
* 機能概要: ファイルサイズを取る
* 返値 : <0失敗 >=0成功
* -----------------------------------------------------------------------
*/
yaya::int_t CFile::Size(const yaya::string_t &name)
{
std::list<CFile1>::const_iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->Size();
}
return -1;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::FSeek
* 機能概要: Cライブラリfseek同等
* 返値 : 0/1=失敗/成功
* -----------------------------------------------------------------------
*/
yaya::int_t CFile::FSeek(const yaya::string_t &name, yaya::int_t offset,const yaya::string_t &s_mode)
{
int mode;
if (s_mode == L"SEEK_CUR" || s_mode == L"current"){
mode=SEEK_CUR;
}
else if (s_mode == L"SEEK_END" || s_mode == L"end"){
mode=SEEK_END;
}
else if (s_mode == L"SEEK_SET" || s_mode == L"start"){
mode=SEEK_SET;
}
else{
return 0;
}
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->FSeek(offset,mode);
}
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CFile::FTell
* 機能概要: Cライブラリftell同等
* 返値 : -1/その他=失敗/成功(ftellの結果)
* -----------------------------------------------------------------------
*/
yaya::int_t CFile::FTell(const yaya::string_t &name)
{
std::list<CFile1>::iterator it = std::find(filelist.begin(),filelist.end(),name);
if ( it != filelist.end() ) {
return it->FTell();
}
return 0;
}