source: dev/trunk/abdev/BasicCompiler_Common/include/logger.h@ 434

Last change on this file since 434 was 434, checked in by dai_9181, 16 years ago

log出力をデバッグビューにも行うようにした。

File size: 2.8 KB
Line 
1#pragma once
2
3#include <iomanip>
4#include <ios>//streamsize
5#include <streambuf>//basic_streambuf
6#include <string>//char_traits, basic_string
7#include <tchar.h>//char_traits, basic_string
8#include <sstream>
9#include <fstream>
10
11#include <tchar.h>
12#include <stdarg.h>
13
14#include <jenga/include/common/Environment.h>
15#include <BoostSerializationSupport.h>
16
17#define STDX_DSTREAM_BUFFERING
18
19
20using namespace std;
21
22namespace Jenga{
23namespace Common{
24
25
26class LoggerSetting : public BoostSerializationSupport<LoggerSetting>
27{
28public:
29 int stopStep;
30
31 LoggerSetting()
32 : stopStep( -1 )
33 {
34 }
35
36 // XMLシリアライズ用
37private:
38 virtual const char *RootTagName() const
39 {
40 return "loggerSetting";
41 }
42 friend class boost::serialization::access;
43 template<class Archive> void serialize(Archive& ar, const unsigned int version)
44 {
45 ar & BOOST_SERIALIZATION_NVP( stopStep );
46 }
47};
48
49
50// VC++ で STLport だと using std::char_traits; みたいなのが必要かも
51template <typename Ch_T, typename Tr_T = std::char_traits<Ch_T> >
52class basic_dbg_streambuf: public std::basic_stringbuf<Ch_T, Tr_T>
53{
54protected:
55 std::string saveFilePath;
56 int count;
57 LoggerSetting setting;
58
59public:
60 basic_dbg_streambuf( const std::string &saveFilePath, bool isOptionEnabled )
61 : saveFilePath( saveFilePath )
62 , count( 0 )
63 {
64#ifndef STDX_DSTREAM_BUFFERING
65 setbuf(0,0);
66#endif
67
68 if( isOptionEnabled )
69 {
70 // 設定ファイルを読み込む
71 char temporary[MAX_PATH];
72 char temp2[MAX_PATH];
73 char temp3[MAX_PATH];
74 _splitpath(saveFilePath.c_str(),temporary,temp2,temp3,NULL);
75 setting.ReadXml( (string)temporary + temp2 + temp3 + ".setting.xml", false );
76 }
77 }
78
79 virtual ~basic_dbg_streambuf()
80 {
81 sync();
82 }
83
84protected:
85 int sync(void)
86 {
87 dbg_out(str().c_str());
88 pbump(static_cast<int>(pbase() - pptr()));
89 return 0;
90 }
91
92 void dbg_out(const Ch_T*);
93};
94
95template <>
96inline void basic_dbg_streambuf<char>::dbg_out(const char *str)
97{
98 ofstream ofs( ( saveFilePath ).c_str(), ios_base::app );
99 ofs << "[" << (count++) << "] " << str ;
100 ofs.close();
101
102 OutputDebugString( str );
103
104 if( (count-1) == setting.stopStep )
105 {
106 DebugBreak();
107 }
108}
109
110template <typename Ch_T, typename Tr_T = std::char_traits<Ch_T> >
111class basic_dbg_ostream: public std::basic_ostream<Ch_T, Tr_T>
112{
113public:
114 basic_dbg_ostream( const string &saveFilePath, bool isOptionEnabled )
115 : std::basic_ostream<Ch_T, Tr_T>(new basic_dbg_streambuf<Ch_T, Tr_T>(saveFilePath,isOptionEnabled))
116 {
117 ofstream ofs( ( saveFilePath ).c_str(), ios_base::trunc );
118 ofs.close();
119 }
120
121
122 virtual ~basic_dbg_ostream()
123 {
124 // flush(); // 不要らしい.http://www.tietew.jp/cppll/archive/607
125 delete rdbuf();
126 }
127};
128
129
130typedef basic_dbg_ostream<_TCHAR> Logger;
131
132
133}}
134
135BOOST_CLASS_IMPLEMENTATION(Jenga::Common::LoggerSetting, boost::serialization::object_serializable);
Note: See TracBrowser for help on using the repository browser.