JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
LogWndDoc.cpp
Go to the documentation of this file.
1//
2// LogWndDoc.cpp : CLogWndDoc クラスの実装
3//
4
5#include "MFCBase.h"
6#include "LogWndDoc.h"
7#include "LogWndFrame.h"
8
9
10#ifdef _DEBUG
11#define new DEBUG_NEW
12#endif
13
14
15using namespace jbxl;
16using namespace jbxwl;
17
18
19// CLogWndDoc
20
21IMPLEMENT_DYNCREATE(CLogWndDoc, CDocument)
22
23BEGIN_MESSAGE_MAP(CLogWndDoc, CDocument)
24END_MESSAGE_MAP()
25
26
27// CLogWndDoc コンストラクション/デストラクション
28
30{
31 //DEBUG_INFO("CONSTRUCTOR: CLogWndDoc\n");
32
33 pFrame = NULL;
34 pView = NULL;
35 Title = _T("");
36 save_fname = _T("");
37 binHexMode = TRUE;
38// m_locked = FALSE;
39
40 ringBuffer = new CLogRingBuffer(MAXLOGBUFFERLINE);
41}
42
43
44CLogWndDoc::CLogWndDoc(int bufsz, BOOL binhex)
45{
46 //DEBUG_INFO("CONSTRUCTOR: CLogWndDoc 2\n");
47
48 pFrame = NULL;
49 pView = NULL;
50 Title = _T("");
51 save_fname = _T("");
52 binHexMode = binhex;
53
54 if (bufsz<=0) bufsz = MAXLOGBUFFERLINE;
55 ringBuffer = new CLogRingBuffer(bufsz);
56}
57
58
60{
61 DEBUG_INFO("DESTRUCTOR: CLogWndDoc: START\n");
62
63 while(m_locked) ::Sleep(10);
64 if (pView!=NULL) pView->unlock();
65
67
68 DEBUG_INFO("DESTRUCTOR: CLogWndDoc: END\n");
69}
70
71
73{
74 if (ringBuffer!=NULL) {
75 delete(ringBuffer);
76 ringBuffer = NULL;
77 }
78}
79
80
82{
83 //DEBUG_INFO("CLogWndDoc::OnNewDocument():\n");
84 if (!CDocument::OnNewDocument()) return FALSE;
85 return TRUE;
86}
87
88
89
91// CLogWndDoc シリアル化
92
93void CLogWndDoc::Serialize(CArchive& ar)
94{
95 if (ar.IsStoring())
96 {
97 // TODO: 格納するコードをここに追加してください.
98 }
99 else
100 {
101 // TODO: 読み込むコードをここに追加してください.
102 }
103}
104
105
106
108// CLogWndDoc 診断
109
110#ifdef _DEBUG
112{
113 CDocument::AssertValid();
114}
115
116
117void CLogWndDoc::Dump(CDumpContext& dc) const
118{
119 CDocument::Dump(dc);
120}
121#endif //_DEBUG
122
123
124
126// CLogWndDoc コマンド
127
129{
130 //CLogWndDoc::clear();
131 //DEBUG_WARN("CLogWndDoc::DeleteContents: IN\n");
132 CDocument::DeleteContents();
133}
134
135
137{
138 //DEBUG_INFO("CLogWndDoc::GetView():\n");
139 POSITION pos = GetFirstViewPosition();
140 while (pos!=NULL) {
141 CLogWndView* pview = (CLogWndView*)GetNextView(pos);
142 if (this==pview->GetDocument()) return pview;
143 }
144 return NULL;
145}
146
147
149{
150 save_fname = _T("");
151
152 CSingleLock lock(&criticalKey);
153 lock.Lock();
154 while (!lock.IsLocked()) {
155 Sleep(100);
156 lock.Lock();
157 }
158
159 ringBuffer->clear();
160 lock.Unlock();
161
162 return;
163}
164
165
166
168
170{
171 if (save_fname==_T("")) return -1;
172
173 CSingleLock lock(&criticalKey);
174 lock.Lock();
175 while (!lock.IsLocked()) {
176 Sleep(100);
177 lock.Lock();
178 }
179
180 int size = 0;
181 FILE* fp = tfopen(save_fname, _T("wb"));
182 if (fp==NULL) {
183 lock.Unlock();
184 return -2;
185 }
186
187 for (int pos=0; pos<ringBuffer->getMaxLineY(); pos++) {
188 Buffer buf = dup_Buffer(ringBuffer->pBuf[pos]);
189 if (ringBuffer->getKindData(pos)!=LOG_RB_BINARY_DATA) {
190 if (buf.buf[buf.vldsz-1]!='\n') cat_s2Buffer("\n", &buf);
191 }
192 fwrite((const char*)buf.buf, strlen((const char*)buf.buf), 1, fp); // buf may be binary
193 size += (int)strlen((const char*)buf.buf);
194 free_Buffer(&buf);
195 }
196 fclose(fp);
197 lock.Unlock();
198
199 return size;
200}
201
202
203CString CLogWndDoc::easyGetSaveFileName(LPCTSTR title, HWND hWnd)
204{
205 OPENFILENAME ofn;
206 TCHAR fn[LNAME];
207 CString str = _T("");
208
209 memset(fn, 0, LNAME);
210 memset(&ofn, 0, sizeof(OPENFILENAME));
211
212 ofn.lStructSize = sizeof(OPENFILENAME);
213 ofn.hwndOwner = hWnd;
214 ofn.Flags = 0;
215 ofn.lpstrFile = fn;
216 //ofn.nMaxFile = LNAME;
217 ofn.nMaxFile = sizeof(fn) / sizeof(fn[0]);
218 ofn.lpstrTitle = title;
219
220 BOOL ret = GetSaveFileName(&ofn);
221 if (ret) str = fn;
222
223 return str;
224}
225
226
227
229// Print with Lock
230//
231
232void CLogWndDoc::lprintBuffer(Buffer buf, int input)
233{
234 if (ringBuffer==NULL || pView==NULL || buf.buf==NULL) return;
235
236 int no = 0, trymax = 100;
237
238 CSingleLock lock(&criticalKey);
239 lock.Lock();
240 while (!lock.IsLocked() && no<trymax) {
241 Sleep(100);
242 lock.Lock();
243 no++;
244 }
245
246 ringBuffer->putRingBuffer(buf, input);
247
248 int lastPos = ringBuffer->getLastPosition();
249 if (binHexMode && ringBuffer->getKindData(lastPos-1)==LOG_RB_BINARY_DATA) {
250 ringBuffer->rewriteBinHexRingBuffer(lastPos-1, input);
251 }
252 lock.Unlock();
253
254 InvalidateRect(pView->m_hWnd, NULL, FALSE);
255
256 return;
257}
258
259
260void CLogWndDoc::lprintString(char* msg, int input)
261{
262 if (ringBuffer==NULL || pView==NULL || msg==NULL) return;
263
264 Buffer buf = make_Buffer_bystr(msg);
265 printBuffer(buf, input);
266 free_Buffer(&buf);
267
268 return;
269}
270
271
272void CLogWndDoc::lfprintFormat(int input, char* fmt, ...)
273{
274 if (ringBuffer==NULL || pView==NULL || fmt==NULL) return;
275
276 int no = 0, trymax = 100;
277
278 CSingleLock lock(&criticalKey);
279 lock.Lock();
280 while (!lock.IsLocked() && no<trymax) {
281 Sleep(100);
282 lock.Lock();
283 no++;
284 }
285
286 va_list args;
287 va_start(args, fmt);
288 ringBuffer->putRingFormat(input, fmt, args);
289 va_end(args);
290
291 lock.Unlock();
292
293 InvalidateRect(pView->m_hWnd, NULL, FALSE);
294
295 return;
296}
297
298
299void CLogWndDoc::lprintFormat(char* fmt, ...)
300{
301 if (ringBuffer==NULL || pView==NULL || fmt==NULL) return;
302
303 int no = 0, trymax = 100;
304
305 CSingleLock lock(&criticalKey);
306 lock.Lock();
307 while (!lock.IsLocked() && no<trymax) {
308 Sleep(100);
309 lock.Lock();
310 no++;
311 }
312
313 va_list args;
314 va_start(args, fmt);
315 ringBuffer->putRingFormat(LOG_RB_MESG, fmt, args);
316 va_end(args);
317
318 lock.Unlock();
319
320 InvalidateRect(pView->m_hWnd, NULL, FALSE);
321
322 return;
323}
324
325
326
328// Print without Lock
329
330void CLogWndDoc::printBuffer(Buffer buf, int input)
331{
332 if (ringBuffer==NULL || pView==NULL || buf.buf==NULL) return;
333
334 ringBuffer->putRingBuffer(buf, input);
335
336 int lastPos = ringBuffer->getLastPosition();
337 if (binHexMode && ringBuffer->getKindData(lastPos-1)==LOG_RB_BINARY_DATA) {
338 ringBuffer->rewriteBinHexRingBuffer(lastPos-1, input);
339 }
340
341 InvalidateRect(pView->m_hWnd, NULL, FALSE);
342
343 return;
344}
345
346
347void CLogWndDoc::printString(char* msg, int input)
348{
349 if (ringBuffer==NULL || pView==NULL || msg==NULL) return;
350
351 Buffer buf = make_Buffer_bystr(msg);
352 printBuffer(buf, input);
353 free_Buffer(&buf);
354
355 return;
356}
357
358
359void CLogWndDoc::fprintFormat(int input, char* fmt, ...)
360{
361 if (ringBuffer==NULL || pView==NULL || fmt==NULL) return;
362
363 va_list args;
364 va_start(args, fmt);
365 ringBuffer->putRingFormat(input, fmt, args);
366 va_end(args);
367
368 InvalidateRect(pView->m_hWnd, NULL, FALSE);
369
370 return;
371}
372
373
374void CLogWndDoc::printFormat(char* fmt, ...)
375{
376 if (ringBuffer==NULL || pView==NULL || fmt==NULL) return;
377
378 va_list args;
379 va_start(args, fmt);
380 ringBuffer->putRingFormat(LOG_RB_MESG, fmt, args);
381 va_end(args);
382
383 InvalidateRect(pView->m_hWnd, NULL, FALSE);
384
385 return;
386}
#define MAXLOGBUFFERLINE
Definition LogWndDoc.h:11
CLogRingBuffer * ringBuffer
Definition LogWndDoc.h:72
void DeleteContents(void)
virtual BOOL OnNewDocument()
Definition LogWndDoc.cpp:81
CLogWndView * pView
Definition LogWndDoc.h:37
int writeLogFile(void)
virtual void lprintString(char *str, int input=LOG_RB_MESG)
virtual void lfprintFormat(int input, char *fmt,...)
virtual void printBuffer(Buffer buf, int input=LOG_RB_MESG)
CLogWndFrame * pFrame
Definition LogWndDoc.h:36
virtual void lprintBuffer(Buffer buf, int input=LOG_RB_MESG)
virtual void fprintFormat(int input, char *fmt,...)
CLogWndView * GetView(void)
virtual void lprintFormat(char *fmt,...)
CString save_fname
Definition LogWndDoc.h:71
virtual void Serialize(CArchive &ar)
Definition LogWndDoc.cpp:93
CCriticalSection criticalKey
Definition LogWndDoc.h:73
void free(void)
Definition LogWndDoc.cpp:72
virtual void AssertValid() const
CString easyGetSaveFileName(LPCTSTR title, HWND hWnd)
virtual void Dump(CDumpContext &dc) const
virtual void lock(void)
Definition LogWndDoc.h:56
virtual ~CLogWndDoc()
Definition LogWndDoc.cpp:59
virtual void printFormat(char *fmt,...)
virtual void printString(char *str, int input=LOG_RB_MESG)
void unlock(void)
Definition LogWndView.h:36
CLogWndDoc * GetDocument() const