forked from kuran-kuran/MZDiskExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
path.cpp
300 lines (280 loc) · 9.37 KB
/
path.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
//============================================================================
// ファイル操作
//----------------------------------------------------------------------------
// Programmed by たご
//============================================================================
#include "stdafx.h"
#include <string.h>
#include <memory.h>
#include "generic.h"
#include "path.h"
#define IsKanji(c) ( (unsigned char)((int)((unsigned char)(c) ^ 0x20) - 0x0A1) < 0x3C )
//============================================================================
// コンストラクタ
//============================================================================
cPath::cPath()
{
memset( Drive, 0, PATH_STRING_MAX );
memset( Dir, 0, PATH_STRING_MAX );
memset( Name, 0, PATH_STRING_MAX );
memset( ExtName, 0, PATH_STRING_MAX );
memset( Path, 0, PATH_STRING_MAX );
Dummy = 0;
}
//============================================================================
// デストラクタ
//============================================================================
cPath::~cPath()
{
Release();
}
//============================================================================
// パス開放
//----------------------------------------------------------------------------
// In : drive = ドライブ
//============================================================================
void cPath::Release( void )
{
memset( Drive, 0, PATH_STRING_MAX );
memset( Dir, 0, PATH_STRING_MAX );
memset( Name, 0, PATH_STRING_MAX );
memset( ExtName, 0, PATH_STRING_MAX );
memset( Path, 0, PATH_STRING_MAX );
}
//============================================================================
// ドライブ設定
//----------------------------------------------------------------------------
// In : drive = ドライブ
//============================================================================
void cPath::SetDrive( const char *drive )
{
StrCopy( Drive, sizeof(Drive), drive );
MakePath();
}
//============================================================================
// ディレクトリ設定
//----------------------------------------------------------------------------
// In : dir = ディレクトリパス
//============================================================================
void cPath::SetDir( const char *dir )
{
StrCopy( Dir, sizeof(Dir), dir );
MakePath();
}
//============================================================================
// ファイルネーム設定
//----------------------------------------------------------------------------
// In : name = ファイルネーム
//============================================================================
void cPath::SetName( const char *name )
{
StrCopy( Name, sizeof(Name), name );
MakePath();
}
//============================================================================
// 拡張子設定
//----------------------------------------------------------------------------
// In : extname = 拡張子
//============================================================================
void cPath::SetExtName( const char *extname )
{
StrCopy( ExtName, sizeof(ExtName), extname );
MakePath();
}
//============================================================================
// パス設定
//----------------------------------------------------------------------------
// In : path = パス
//============================================================================
void cPath::SetPath( const char *path )
{
Release();
StrCopy( Path, sizeof(Path), path );
DividePath();
}
//============================================================================
// パス取得
//----------------------------------------------------------------------------
// Out : パスへのポインタ
//============================================================================
char* cPath::GetPath( unsigned int mode )
{
MakePath( mode );
return Path;
}
//============================================================================
// ドライブ名取得
//----------------------------------------------------------------------------
// Out : ドライブ名へのポインタ
//============================================================================
char* cPath::GetDrive( void )
{
if ( Drive )
{
return Drive;
}
return &Dummy;
}
//============================================================================
// ディレクトリ名取得
//----------------------------------------------------------------------------
// Out : ディレクトリ名へのポインタ
//============================================================================
char* cPath::GetDir( void )
{
if ( Dir )
{
return Dir;
}
return &Dummy;
}
//============================================================================
// ファイル名取得
//----------------------------------------------------------------------------
// Out : ファイル名へのポインタ
//============================================================================
char* cPath::GetName( void )
{
if ( Name )
{
return Name;
}
return &Dummy;
}
//============================================================================
// 拡張子取得
//----------------------------------------------------------------------------
// Out : パスへのポインタ
//============================================================================
char* cPath::GetExtName( void )
{
if ( ExtName )
{
return ExtName;
}
return &Dummy;
}
//============================================================================
// ディレクトリ、ファイルネーム、拡張子に分ける
//============================================================================
int cPath::DividePath( void )
{
if ( 0 == Path )
{
return 1;
}
if ( '\0' == *Path )
{
return 1;
}
_splitpath_s(Path, Drive, PATH_STRING_MAX, Dir, PATH_STRING_MAX, Name, PATH_STRING_MAX, ExtName, PATH_STRING_MAX);
if(ExtName[0] == '.')
{
// .を消す
StrCopy(ExtName, sizeof(ExtName), &ExtName[1]);
}
return 0;
}
//============================================================================
// パスを作成する
//============================================================================
void cPath::MakePath( unsigned int mode )
{
if ( ( mode & PATH_MODE_DRIVE ) && ( Drive != 0 ) )
{
StrCopy( Path, sizeof(Path), Drive );
} else {
StrCopy( Path, sizeof(Path), "" );
}
if ( ( mode & PATH_MODE_DIR ) && ( Dir != 0 ) )
{
StrAdd( Path, sizeof(Path), Dir );
if ( strlen( Path ) > 0 )
{
char dividechar[ 2 ];
dividechar[ 0 ] = PATH_DIVIDE_CHAR;
dividechar[ 1 ] = '\0';
if ( Path[ strlen( Path ) -1 ] != PATH_DIVIDE_CHAR )
{
StrAdd( Path, sizeof(Path), dividechar );
}
}
}
if ( ( mode & PATH_MODE_NAME ) && ( Name != 0 ) )
{
StrAdd( Path, sizeof(Path), Name );
}
if ( ( mode & PATH_MODE_EXTNAME ) && ( ExtName != 0 ) )
{
if ( *ExtName != '\0' )
{
StrAdd( Path, sizeof(Path), "." );
StrAdd( Path, sizeof(Path), ExtName );
}
}
}
//============================================================================
// 文字列をコピーする
//----------------------------------------------------------------------------
// In : dest = コピー先
// : source = コピー元
// Out : dest のポインタ
//============================================================================
char* cPath::StrCopy( char *dest, size_t dest_size, const char *source )
{
strcpy_s( dest, dest_size, source );
return dest;
}
//============================================================================
// 文字列の部分をコピーする
//----------------------------------------------------------------------------
// In : dest = コピー先
// : source = コピー元
// : sourcestart = コピー元の最初の位置
// : sourceend = コピー元の最後の位置
// Out : dest のポインタ
//============================================================================
char* cPath::StrCopyPart( char *dest, const char *source, int sourcestart, int sourceend )
{
int sourceindex;
int destindex = 0;
for ( sourceindex = sourcestart; sourceindex <= sourceend; sourceindex ++ )
{
dest[ destindex ] = source[ sourceindex ];
destindex ++;
}
dest[ destindex ] = '\0';
return dest;
}
//============================================================================
// 文字列を追加する
//----------------------------------------------------------------------------
// In : dest = コピー先
// : source = コピー元
// Out : dest のポインタ
//============================================================================
char* cPath::StrAdd( char *dest, size_t dest_size, const char *source )
{
strcat_s( dest, dest_size, source );
return dest;
}
//============================================================================
// 文字列の部分を追加する
//----------------------------------------------------------------------------
// In : dest = コピー先
// : source = コピー元
// : sourcestart = コピー元の最初の位置
// : sourceend = コピー元の最後の位置
// Out : dest のポインタ
//============================================================================
char* cPath::StrAddPart( char *dest, const char *source, int sourcestart, int sourceend )
{
size_t destindex = strlen( dest );
for (size_t sourceindex = sourcestart; sourceindex <= sourceend; sourceindex ++ )
{
dest[ destindex ] = source[ sourceindex ];
destindex ++;
}
dest[ destindex ] = '\0';
return dest;
}