JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
MFCio.cpp
Go to the documentation of this file.
1//
2
3#include "MFCio.h"
4
5
6using namespace jbxl;
7using namespace jbxwl;
8
9
24int jbxwl::copyFileWithCounter(LPCTSTR src, LPCTSTR dst)
25{
26 unsigned long int sz = file_size_t(src);
27 if (sz<=0) return -1;
28
29 FILE* sfp = tfopen(src, _T("rb"));
30 if (sfp==NULL) return -2;
31
32 FILE* dfp = tfopen(dst, _T("wb"));
33 if (dfp==NULL) {
34 fclose(sfp);
35 return -3;
36 }
37
38 int ret = copyFPWithCounter(sfp, dfp, sz);
39
40 fclose(dfp);
41 fclose(sfp);
42
43 if (ret<=0) ret -= 10;
44 return ret;
45}
46
47
48
58int jbxwl::copyFPWithCounter(FILE* src, FILE* dst, unsigned long int sz)
59{
60 //
61 // グローバルカウンタの生成
62 CProgressBarDLG* counter = NULL;
63
64 int count_max = 20;
65 int count_intvl = sz/MAXBUFSZ/count_max;
66
67 if (sz>MAXBUFSZ && count_intvl>0) { // 64kByte
68 counter = new CProgressBarDLG(IDD_PROGBAR, NULL, TRUE); // ディスパッチャー有効
69 if (counter!=NULL) {
70 SetGlobalCounter(counter);
71 CString mesg;
72 mesg.LoadString(IDS_STR_WRTNG_FILE);
73 //
74 char* mbstr = ts2mbs(mesg);
75 counter->Start(0, mbstr);
76 ::free(mbstr);
77 }
78 }
79
80 if (counter!=NULL) {
81 counter->SetMax(count_max);
82 counter->SetPos(0);
83 }
84
85 //
86 unsigned char buf[MAXBUFSZ];
87 int sum = 0;
88 int cnt = 0;
89 size_t rsz = 0;
90 size_t wsz = 0;
91
92 //
93 do {
94 rsz = fread(buf, 1, MAXBUFSZ, src);
95 wsz = fwrite(buf, rsz, 1, dst);
96 sum += (int)rsz;
97
98 cnt++;
99 if (counter!=NULL) {
100 if (cnt%count_intvl==0) {
101 counter->StepIt();
102 if (counter->isCanceled()) {
103 sum = -1;
104 break; // キャンセル
105 }
106 }
107 }
108 } while (!feof(src) && rsz>0 && wsz>0);
109
110 // グローバルカウンタの削除
111 if (counter!=NULL) {
112 counter->Stop();
113 ClearGlobalCounter();
114 delete counter;
115 }
116
117 //
118 if (sum!=0) {
119 if (!feof(src) && (rsz==0||wsz==0)) sum = -2;
120 else if (sum!=sz) {
121 DEBUG_ERROR("jbxwl::copyFPWithCounter(): WARNING: File Size is %d, but Write Size is %d\n", sz, sum);
122 sum = -3;
123 }
124 }
125
126 return sum;
127}
128
129
130
131int jbxwl::writeGraphicFileWithCounter(LPCTSTR fname, MSGraph<sWord> vp, int frmt, BOOL mlt, int fn, int tn)
132{
133 // グローバルカウンタの生成
134 CProgressBarDLG* counter = NULL;
135 if (vp.zs>=10) {
136 counter = new CProgressBarDLG(IDD_PROGBAR, NULL, TRUE); // ディスパッチャー有効
137 if (counter!=NULL) {
138 SetGlobalCounter(counter);
139 CString mesg;
140 mesg.LoadString(IDS_STR_WRTNG_FILE);
141 //
142 char* mbstr = ts2mbs(mesg);
143 counter->Start(0, mbstr);
144 ::free(mbstr);
145 }
146 }
147
148 //
149 char* mbstr = ts2mbs(fname);
150 int ret = writeGraphicFile(mbstr, vp, frmt, mlt, fn, tn, true);
151 ::free(mbstr);
152
153 // グローバルカウンタの削除
154 if (counter!=NULL) {
155 counter->Stop();
156 ClearGlobalCounter();
157 delete counter;
158 }
159
160 return ret;
161}
162
163
virtual void StepIt(int n=1)
virtual void SetPos(int pos)
virtual void Start(int m=100, char *tn=NULL)
virtual void SetMax(int max)
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57
int copyFPWithCounter(FILE *src, FILE *dst, unsigned long int sz)
Definition MFCio.cpp:58
int copyFileWithCounter(LPCTSTR src, LPCTSTR dst)
Definition MFCio.cpp:24
int writeGraphicFileWithCounter(LPCTSTR fname, MSGraph< sWord > vp, int kind, BOOL mlt=FALSE, int fn=0, int tn=0)
Definition MFCio.cpp:131
unsigned long int file_size_t(LPCTSTR fn)
Definition WinTools.cpp:250
#define IDS_STR_WRTNG_FILE
Definition resource.h:106
#define IDD_PROGBAR
Definition resource.h:6