-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.c
1839 lines (1554 loc) · 41.5 KB
/
misc.c
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*=============================================================================
*
* その他の汎用サブルーチン
*
===============================================================================
/ Copyright (C) 1997-2007 Sota. All rights reserved.
/
/ Redistribution and use in source and binary forms, with or without
/ modification, are permitted provided that the following conditions
/ are met:
/
/ 1. Redistributions of source code must retain the above copyright
/ notice, this list of conditions and the following disclaimer.
/ 2. Redistributions in binary form must reproduce the above copyright
/ notice, this list of conditions and the following disclaimer in the
/ documentation and/or other materials provided with the distribution.
/
/ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
/ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
/ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
/ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
/ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
/ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
/ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
/ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
/ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/============================================================================*/
#define STRICT
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <mbstring.h>
// IPv6対応
//#include <winsock.h>
#include <winsock2.h>
#include <windowsx.h>
#include <commctrl.h>
#include <shlobj.h>
#include <locale.h>
#include "common.h"
#include "resource.h"
#include <htmlhelp.h>
#include "helpid.h"
// UTF-8対応
#undef __MBSWRAPPER_H__
#include "mbswrapper.h"
/*===== 入力ダイアログデータのストラクチャ =====*/
typedef struct {
char Title[80]; /* ダイアログのタイトル */
char Str[FMAX_PATH+1]; /* デフォルト文字列/入力された文字列(Output) */
int MaxLen; /* 文字列の最長 */
int Anonymous; /* Anonymousフラグ(Output) */
} DIALOGDATA;
/*===== プロトタイプ =====*/
// 64ビット対応
//static BOOL CALLBACK InputDialogCallBack(HWND hDlg, UINT iMessage, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK InputDialogCallBack(HWND hDlg, UINT iMessage, WPARAM wParam, LPARAM lParam);
/*===== 外部参照 =====*/
extern HWND hHelpWin;
/*===== ローカルなワーク =====*/
static DIALOGDATA *DialogData; /* 入力ダイアログデータ */
static int HelpPage;
/*----- 入力ダイアログを表示 --------------------------------------------------
*
* Parameter
* int Res : ダイアログボックスのID
* HWND hWnd : 親ウインドウのウインドウハンドル
* char *Title : ウインドウタイトル (NULL=設定しない)
* char *Buf : エディットボックスの初期文字列/入力文字列を返すバッファ
* int Max : バッファのサイズ (FMAX_PATH+1以下であること)
* int *Flg : フラグの初期値/フラグを返すワーク
* int Help : ヘルプのコンテキスト番号
*
* Return Value
* int ステータス (YES/NO=取り消し)
*
* Note
* ダイアログは1個のEditBoxと1個のButtonを持つものを使う
*----------------------------------------------------------------------------*/
int InputDialogBox(int Res, HWND hWnd, char *Title, char *Buf, int Max, int *Flg, int Help)
{
int Ret;
DIALOGDATA dData;
dData.MaxLen = Max;
memset(dData.Str, NUL, FMAX_PATH+1);
strncpy(dData.Str, Buf, FMAX_PATH);
strcpy(dData.Title, "");
if(Title != NULL)
strcpy(dData.Title, Title);
dData.Anonymous = *Flg;
DialogData = &dData;
HelpPage = Help;
Ret = DialogBox(GetFtpInst(), MAKEINTRESOURCE(Res), hWnd, InputDialogCallBack);
if(Ret == YES)
{
memset(Buf, NUL, Max);
strncpy(Buf, dData.Str, Max-1);
*Flg = dData.Anonymous;
}
return(Ret);
}
/*----- 入力ダイアログのコールバック ------------------------------------------
*
* Parameter
* HWND hDlg : ウインドウハンドル
* UINT message : メッセージ番号
* WPARAM wParam : メッセージの WPARAM 引数
* LPARAM lParam : メッセージの LPARAM 引数
*
* Return Value
* BOOL TRUE/FALSE
*----------------------------------------------------------------------------*/
// 64ビット対応
//static BOOL CALLBACK InputDialogCallBack(HWND hDlg, UINT iMessage, WPARAM wParam, LPARAM lParam)
static INT_PTR CALLBACK InputDialogCallBack(HWND hDlg, UINT iMessage, WPARAM wParam, LPARAM lParam)
{
char Tmp[FMAX_PATH+1];
switch (iMessage)
{
case WM_INITDIALOG :
if(strlen(DialogData->Title) != 0)
SendMessage(hDlg, WM_SETTEXT, 0, (LPARAM)DialogData->Title);
SendDlgItemMessage(hDlg, INP_INPSTR, EM_LIMITTEXT, DialogData->MaxLen-1, 0);
SendDlgItemMessage(hDlg, INP_INPSTR, WM_SETTEXT, 0, (LPARAM)DialogData->Str);
SendDlgItemMessage(hDlg, INP_ANONYMOUS, BM_SETCHECK, DialogData->Anonymous, 0);
return(TRUE);
case WM_COMMAND :
switch(GET_WM_COMMAND_ID(wParam, lParam))
{
case IDOK :
SendDlgItemMessage(hDlg, INP_INPSTR, WM_GETTEXT, DialogData->MaxLen, (LPARAM)DialogData->Str);
DialogData->Anonymous = SendDlgItemMessage(hDlg, INP_ANONYMOUS, BM_GETCHECK, 0, 0);
EndDialog(hDlg, YES);
break;
case IDCANCEL :
EndDialog(hDlg, NO);
break;
case IDHELP :
hHelpWin = HtmlHelp(NULL, AskHelpFilePath(), HH_HELP_CONTEXT, HelpPage);
break;
case INP_BROWSE :
if(SelectDir(hDlg, Tmp, FMAX_PATH) == TRUE)
SendDlgItemMessage(hDlg, INP_INPSTR, WM_SETTEXT, 0, (LPARAM)Tmp);
break;
}
return(TRUE);
}
return(FALSE);
}
/*----- [実行]と[取消]だけのダイアログの共通コールバック関数 --------------
*
* Parameter
* HWND hDlg : ウインドウハンドル
* UINT message : メッセージ番号
* WPARAM wParam : メッセージの WPARAM 引数
* LPARAM lParam : メッセージの LPARAM 引数
*
* Return Value
* BOOL TRUE/FALSE
*----------------------------------------------------------------------------*/
// 64ビット対応
//BOOL CALLBACK ExeEscDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
INT_PTR CALLBACK ExeEscDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_INITDIALOG :
return(TRUE);
case WM_COMMAND :
switch(GET_WM_COMMAND_ID(wParam, lParam))
{
case IDOK :
EndDialog(hDlg, YES);
break;
case IDCANCEL :
EndDialog(hDlg, NO);
break;
}
return(TRUE);
}
return(FALSE);
}
/*----- [実行]と[取消]だけのダイアログの共通コールバック関数(テキスト表示つき)
*
* Parameter
* HWND hDlg : ウインドウハンドル
* UINT message : メッセージ番号
* WPARAM wParam : メッセージの WPARAM 引数
* LPARAM lParam : メッセージの LPARAM 引数
*
* Return Value
* BOOL TRUE/FALSE
*----------------------------------------------------------------------------*/
// 64ビット対応
//BOOL CALLBACK ExeEscTextDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
INT_PTR CALLBACK ExeEscTextDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_INITDIALOG :
SendDlgItemMessage(hDlg, COMMON_TEXT, WM_SETTEXT, 0, lParam);
return(TRUE);
case WM_COMMAND :
switch(GET_WM_COMMAND_ID(wParam, lParam))
{
case IDOK :
EndDialog(hDlg, YES);
break;
case IDCANCEL :
EndDialog(hDlg, NO);
break;
}
return(TRUE);
}
return(FALSE);
}
/*----- 文字列の最後に "\" を付ける -------------------------------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* なし
*
* Note
* オリジナルの文字列 char *Str が変更されます。
*----------------------------------------------------------------------------*/
void SetYenTail(char *Str)
{
if(_mbscmp(_mbsninc(Str, _mbslen(Str) - 1), "\\") != 0)
strcat(Str, "\\");
return;;
}
/*----- 文字列の最後の "\" を取り除く -----------------------------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* なし
*
* Note
* オリジナルの文字列 char *Str が変更されます。
*----------------------------------------------------------------------------*/
void RemoveYenTail(char *Str)
{
char *Pos;
if(strlen(Str) > 0)
{
Pos = _mbsninc(Str, _mbslen(Str) - 1);
if(_mbscmp(Pos, "\\") == 0)
*Pos = NUL;
}
return;;
}
/*----- 文字列の最後に "/" を付ける -------------------------------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* なし
*
* Note
* オリジナルの文字列 char *Str が変更されます。
*----------------------------------------------------------------------------*/
void SetSlashTail(char *Str)
{
#if defined(HAVE_TANDEM)
/* Tandem では / の代わりに . を追加 */
if(AskHostType() == HTYPE_TANDEM) {
if(_mbscmp(_mbsninc(Str, _mbslen(Str) - 1), ".") != 0)
strcat(Str, ".");
} else
#endif
if(_mbscmp(_mbsninc(Str, _mbslen(Str) - 1), "/") != 0)
strcat(Str, "/");
return;
}
/*----- 文字列から改行コードを取り除く ----------------------------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* なし
*
* Note
* オリジナルの文字列 char *Str が変更されます。
*----------------------------------------------------------------------------*/
void RemoveReturnCode(char *Str)
{
char *Pos;
if((Pos = strchr(Str, 0x0D)) != NULL)
*Pos = NUL;
if((Pos = strchr(Str, 0x0A)) != NULL)
*Pos = NUL;
return;
}
/*----- 文字列内の特定の文字を全て置き換える ----------------------------------
*
* Parameter
* char *Str : 文字列
* char Src : 検索文字
* char Dst : 置換文字
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void ReplaceAll(char *Str, char Src, char Dst)
{
char *Pos;
/* Tandem ではノード名の変換を行わない */
/* 最初の1文字が \ でもそのままにする */
#if defined(HAVE_TANDEM)
if (AskRealHostType() == HTYPE_TANDEM && strlen(Str) > 0)
Str++;
#endif
while((Pos = _mbschr(Str, Src)) != NULL)
*Pos = Dst;
return;
}
/*----- 数字もしくは特定の1文字かチェック ------------------------------------
*
* Parameter
* int Ch : チェックする文字
* int Sym : 記号
*
* Return Value
* int ステータス
* 0=数字でも特定の記号でもない
*----------------------------------------------------------------------------*/
int IsDigitSym(int Ch, int Sym)
{
int Ret;
if((Ret = IsDigit(Ch)) == 0)
{
if((Sym != NUL) && (Sym == Ch))
Ret = 1;
}
return(Ret);
}
/*----- 文字列が全て同じ文字かチェック ----------------------------------------
*
* Parameter
* char *Str : 文字列
* int Ch : 文字
*
* Return Value
* int ステータス
* YES/NO
*----------------------------------------------------------------------------*/
int StrAllSameChar(char *Str, char Ch)
{
int Ret;
Ret = YES;
while(*Str != NUL)
{
if(*Str != Ch)
{
Ret = NO;
break;
}
Str++;
}
return(Ret);
}
/*----- 文字列の末尾のスペースを削除 ------------------------------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void RemoveTailingSpaces(char *Str)
{
char *Pos;
Pos = Str + strlen(Str);
while(--Pos > Str)
{
if(*Pos != ' ')
break;
*Pos = NUL;
}
return;
}
/*----- 大文字/小文字を区別しないstrstr --------------------------------------
*
* Parameter
* char *s1 : 文字列1
* char *s2 : 文字列2
*
* Return Value
* char *文字列1中で文字列2が見つかった位置
* NULL=見つからなかった
*----------------------------------------------------------------------------*/
char *stristr(char *s1, char *s2)
{
char *Ret;
Ret = NULL;
while(*s1 != NUL)
{
if((tolower(*s1) == tolower(*s2)) &&
(_strnicmp(s1, s2, strlen(s2)) == 0))
{
Ret = s1;
break;
}
s1++;
}
return(Ret);
}
/*----- 文字列中のスペースで区切られた次のフィールドを返す --------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* char *次のフィールド
* NULL=見つからなかった
*----------------------------------------------------------------------------*/
char *GetNextField(char *Str)
{
if((Str = strchr(Str, ' ')) != NULL)
{
while(*Str == ' ')
{
if(*Str == NUL)
{
Str = NULL;
break;
}
Str++;
}
}
return(Str);
}
/*----- 現在のフィールドの文字列をコピーする ----------------------------------
*
* Parameter
* char *Str : 文字列
* char *Buf : コピー先
* int Max : 最大文字数
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL=長さが長すぎる
*----------------------------------------------------------------------------*/
int GetOneField(char *Str, char *Buf, int Max)
{
int Sts;
char *Pos;
Sts = FFFTP_FAIL;
if((Pos = strchr(Str, ' ')) == NULL)
{
if((int)strlen(Str) <= Max)
{
strcpy(Buf, Str);
Sts = FFFTP_SUCCESS;
}
}
else
{
if(Pos - Str <= Max)
{
strncpy(Buf, Str, Pos - Str);
*(Buf + (Pos - Str)) = NUL;
Sts = FFFTP_SUCCESS;
}
}
return(Sts);
}
/*----- カンマを取り除く ------------------------------------------------------
*
* Parameter
* char *Str : 文字列
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void RemoveComma(char *Str)
{
char *Put;
Put = Str;
while(*Str != NUL)
{
if(*Str != ',')
{
*Put = *Str;
Put++;
}
Str++;
}
*Put = NUL;
return;
}
/*----- パス名の中のファイル名の先頭を返す ------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* char *ファイル名の先頭
*
* Note
* ディレクトリの区切り記号は "\" と "/" の両方が有効
*----------------------------------------------------------------------------*/
char *GetFileName(char *Path)
{
char *Pos;
if((Pos = _mbschr(Path, ':')) != NULL)
Path = Pos + 1;
if((Pos = _mbsrchr(Path, '\\')) != NULL)
Path = Pos + 1;
if((Pos = _mbsrchr(Path, '/')) != NULL)
Path = Pos + 1;
#if defined(HAVE_TANDEM)
/* Tandem は . がデリミッタとなる */
if((AskHostType() == HTYPE_TANDEM) && ((Pos = _mbsrchr(Path, '.')) != NULL))
Path = Pos + 1;
#endif
return(Path);
}
/*----- ツールの表示名を返す --------------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* char * : 表示名
*----------------------------------------------------------------------------*/
char *GetToolName(char *Path)
{
char *Pos;
if((Pos = _mbschr(Path, ':')) != NULL)
Path = Pos + 1;
if((Pos = _mbsrchr(Path, '\\')) != NULL)
Path = Pos + 1;
return(Path);
}
/*----- パス名の中の拡張子の先頭を返す ----------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* char *拡張子の先頭
*----------------------------------------------------------------------------*/
char *GetFileExt(char *Path)
{
char *Ret;
Ret = _mbschr(Path, NUL);
if((_mbscmp(Path, ".") != 0) &&
(_mbscmp(Path, "..") != 0))
{
while((Path = _mbschr(Path, '.')) != NULL)
{
Path++;
Ret = Path;
}
}
return(Ret);
}
/*----- パス名からファイル名を取り除く ----------------------------------------
*
* Parameter
* char *Path : パス名
* char *Buf : ファイル名を除いたパス名のコピー先
*
* Return Value
* なし
*
* Note
* ディレクトリの区切り記号は "\" と "/" の両方が有効
*----------------------------------------------------------------------------*/
void RemoveFileName(char *Path, char *Buf)
{
char *Pos;
strcpy(Buf, Path);
if((Pos = _mbsrchr(Buf, '/')) != NULL)
*Pos = NUL;
else if((Pos = _mbsrchr(Buf, '\\')) != NULL)
{
if((Pos == Buf) ||
((Pos != Buf) && (*(Pos - 1) != ':')))
*Pos = NUL;
}
return;
}
/*----- 上位ディレクトリのパス名を取得 ----------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* なし
*
* Note
* ディレクトリの区切り記号は "\" と "/" の両方が有効
* 最初の "\"や"/"は残す
* 例) "/pub" --> "/"
* 例) "C:\DOS" --> "C:\"
*----------------------------------------------------------------------------*/
void GetUpperDir(char *Path)
{
char *Top;
char *Pos;
if(((Top = _mbschr(Path, '/')) != NULL) ||
((Top = _mbschr(Path, '\\')) != NULL))
{
Top++;
if(((Pos = _mbsrchr(Top, '/')) != NULL) ||
((Pos = _mbsrchr(Top, '\\')) != NULL))
*Pos = NUL;
else
*Top = NUL;
}
return;
}
/*----- 上位ディレクトリのパス名を取得 ----------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* なし
*
* Note
* ディレクトリの区切り記号は "\" と "/" の両方が有効
* 最初の "\"や"/"も消す
* 例) "/pub" --> ""
* 例) "C:\DOS" --> "C:"
*----------------------------------------------------------------------------*/
void GetUpperDirEraseTopSlash(char *Path)
{
char *Pos;
if(((Pos = _mbsrchr(Path, '/')) != NULL) ||
((Pos = _mbsrchr(Path, '\\')) != NULL))
*Pos = NUL;
else
*Path = NUL;
return;
}
/*----- ディレクトリの階層数を返す --------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* なし
*
* Note
* 単に '\' と '/'の数を返すだけ
*----------------------------------------------------------------------------*/
int AskDirLevel(char *Path)
{
char *Pos;
int Level;
Level = 0;
while(((Pos = _mbschr(Path, '/')) != NULL) ||
((Pos = _mbschr(Path, '\\')) != NULL))
{
Path = Pos + 1;
Level++;
}
return(Level);
}
/*----- ファイルサイズを文字列に変換する --------------------------------------
*
* Parameter
* double Size : ファイルサイズ
* char *Buf : 文字列を返すバッファ
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void MakeSizeString(double Size, char *Buf)
{
if(Size >= (1024*1024))
{
Size /= (1024*1024);
sprintf(Buf, "%.2fM Bytes", Size);
}
else if (Size >= 1024)
{
Size /= 1024;
sprintf(Buf, "%.2fK Bytes", Size);
}
else
sprintf(Buf, "%.0f Bytes", Size);
return;
}
/*----- StaticTextの領域に収まるようにパス名を整形して表示 --------------------
*
* Parameter
* HWND hWnd : ウインドウハンドル
* char *Str : 文字列 (長さはFMAX_PATH以下)
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DispStaticText(HWND hWnd, char *Str)
{
char Buf[FMAX_PATH+1];
char *Pos;
char *Tmp;
RECT Rect;
SIZE fSize;
HDC hDC;
int Force;
GetClientRect(hWnd, &Rect);
Rect.right -= Rect.left;
hDC = GetDC(hWnd);
strcpy(Buf, Str);
Pos = Buf;
Force = NO;
while(Force == NO)
{
GetTextExtentPoint32(hDC, Pos, strlen(Pos), &fSize);
if(fSize.cx <= Rect.right)
break;
if(_mbslen(Pos) <= 4)
Force = YES;
else
{
Pos = _mbsninc(Pos, 4);
if((Tmp = _mbschr(Pos, '\\')) == NULL)
Tmp = _mbschr(Pos, '/');
if(Tmp == NULL)
Tmp = _mbsninc(Pos, 4);
Pos = Tmp - 3;
memset(Pos, '.', 3);
}
}
ReleaseDC(hWnd, hDC);
SendMessage(hWnd, WM_SETTEXT, 0, (LPARAM)Pos);
return;
}
/*----- 文字列アレイの長さを求める --------------------------------------------
*
* Parameter
* char *Str : 文字列アレイ (末尾はNUL2つ)
*
* Return Value
* int 長さ
*
* Note
* 終端の2つのNULのうちの最後の物は数えない
* StrMultiLen("") = 0
* StrMultiLen("abc\0xyz\0") = 8
* StrMultiLen("abc") = 終端が2つのNULでないので求められない
*----------------------------------------------------------------------------*/
int StrMultiLen(char *Str)
{
int Len;
int Tmp;
Len = 0;
while(*Str != NUL)
{
Tmp = strlen(Str) + 1;
Str += Tmp;
Len += Tmp;
}
return(Len);
}
/*----- RECTをクライアント座標からスクリーン座標に変換 ------------------------
*
* Parameter
* HWND hWnd : ウインドウハンドル
* RECT *Rect : RECT
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void RectClientToScreen(HWND hWnd, RECT *Rect)
{
POINT Tmp;
Tmp.x = Rect->left;
Tmp.y = Rect->top;
ClientToScreen(hWnd, &Tmp);
Rect->left = Tmp.x;
Rect->top = Tmp.y;
Tmp.x = Rect->right;
Tmp.y = Rect->bottom;
ClientToScreen(hWnd, &Tmp);
Rect->right = Tmp.x;
Rect->bottom = Tmp.y;
return;
}
/*----- 16進文字をバイナリに変換 ----------------------------------------------
*
* Parameter
* char Ch : 16進文字
*
* Return Value
* int バイナリ値
*----------------------------------------------------------------------------*/
int hex2bin(char Ch)
{
int Ret;
if((Ch >= '0') && (Ch <= '9'))
Ret = Ch - '0';
else if((Ch >= 'A') && (Ch <= 'F'))
Ret = Ch - 'A' + 10;
else if((Ch >= 'a') && (Ch <= 'f'))
Ret = Ch - 'a' + 10;
return(Ret);
}
/*----- UNC文字列を分解する ------------------------------------------------
*
* Parameter
* char *unc : UNC文字列
* char *Host : ホスト名をコピーするバッファ (サイズは HOST_ADRS_LEN+1)
* char *Path : パス名をコピーするバッファ (サイズは FMAX_PATH+1)
* char *File : ファイル名をコピーするバッファ (サイズは FMAX_PATH+1)
* char *User : ユーザ名をコピーするバッファ (サイズは USER_NAME_LEN+1)
* char *Pass : パスワードをコピーするバッファ (サイズは PASSWORD_LEN+1)
* int *Port : ポート番号をコピーするバッファ
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*
* "\"は全て"/"に置き換える
*----------------------------------------------------------------------------*/
int SplitUNCpath(char *unc, char *Host, char *Path, char *File, char *User, char *Pass, int *Port)
{
int Sts;
char *Pos1;
char *Pos2;
char Tmp[FMAX_PATH+1];
memset(Host, NUL, HOST_ADRS_LEN+1);
memset(Path, NUL, FMAX_PATH+1);
memset(File, NUL, FMAX_PATH+1);
memset(User, NUL, USER_NAME_LEN+1);
memset(Pass, NUL, PASSWORD_LEN+1);
*Port = PORT_NOR;
ReplaceAll(unc, '\\', '/');
if((Pos1 = _mbsstr(unc, "//")) != NULL)
Pos1 += 2;
else