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
|
// IvyFileMonDlg.cpp : fichier d'implémentation
//
#include "stdafx.h"
#include "IvyFileMon.h"
#include "IvyFileMonDlg.h"
#include "ParseCmdLine.h"
#include "IvyApplication.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
const char * CONVSTR( const CString& str )
{
#ifdef UNDER_CE
static char buffer[4096];
int len = str.GetLength();
buffer[len] = '\0';
if ( len )
{
int err = WideCharToMultiByte( CP_ACP, 0, str, len, buffer, 4096, NULL, NULL );
if ( err == 0 )
TRACE(TEXT("Error converting chars %d\n"),GetLastError());
}
return buffer;
#else
return (LPCSTR) str;
#endif
}
// boîte de dialogue CAboutDlg utilisée pour la boîte de dialogue 'À propos de' pour votre application
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// Données de la boîte de dialogue
enum { IDD = IDD_ABOUTBOX };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // prise en charge de DDX/DDV
// Implémentation
protected:
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
END_MESSAGE_MAP()
// boîte de dialogue CIvyFileMonDlg
CIvyFileMonDlg::CIvyFileMonDlg(CWnd* pParent /*=NULL*/)
: CDialog(CIvyFileMonDlg::IDD, pParent)
, m_busnumber(_T(""))
, m_directory(_T(""))
, m_prefix(_T(""))
, m_extent(_T(""))
{
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CIvyFileMonDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_BUS, m_busnumber);
DDX_Text(pDX, IDC_DIRECTORY, m_directory);
DDX_Text(pDX, IDC_PREFIX, m_prefix);
DDX_Control(pDX, IDC_TEXT, m_text);
DDX_Text(pDX, IDC_EXTENT, m_extent);
}
BEGIN_MESSAGE_MAP(CIvyFileMonDlg, CDialog)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
//}}AFX_MSG_MAP
ON_BN_CLICKED(IDC_START, OnBnClickedStart)
END_MESSAGE_MAP()
// gestionnaires de messages pour CIvyFileMonDlg
void CIvyFileMonDlg::WriteMessage(const char *format, ...)
{
char str[4096];
// format and write the data we were given
va_list args;
va_start(args, format);
vsprintf(str, format, args);
m_text.AppendString( str );
}
void CIvyFileMonDlg::OnDirectMessage(IvyApplication *app, int id, const char *arg)
{
TRACE(TEXT("Direct Msg Receive %d, %s\n"),id,arg );
}
void CIvyFileMonDlg::OnApplicationConnected(IvyApplication *app)
{
WriteMessage( "Application: %s ready",(LPCSTR)(app->GetName()) );
}
void CIvyFileMonDlg::OnApplicationDisconnected(IvyApplication *app)
{
WriteMessage( "Application: %s bye",(LPCSTR)(app->GetName()) );
}
BOOL CIvyFileMonDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Ajouter l'élément de menu "À propos de..." au menu Système.
// IDM_ABOUTBOX doit se trouver dans la plage des commandes système.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);
CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
CString strAboutMenu;
strAboutMenu.LoadString(IDS_ABOUTBOX);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
}
// Définir l'icône de cette boîte de dialogue. L'infrastructure effectue cela automatiquement
// lorsque la fenêtre principale de l'application n'est pas une boîte de dialogue
SetIcon(m_hIcon, TRUE); // Définir une grande icône
SetIcon(m_hIcon, FALSE); // Définir une petite icône
// parse command Line Info
ParseCmdLine cmd;
AfxGetApp()->ParseCommandLine( cmd );
// Set Argument from Command Line
m_busnumber = cmd.m_busNumber;
m_directory = cmd.m_directory;
m_extent = cmd.m_extent;
m_prefix = cmd.m_prefix;
bus = new Ivy( "IvyFileMon","IvyFileMon Ready",this,FALSE);
// bus->BindMsg("(.*)", BUS_CALLBACK_OF(CTestDlg, IvyCallback ));
//bus->BindMsg("^S( A=([0-9]+))?( B=([0-9]+))?",cb);
m_busnumber = bus->GetDomain( CONVSTR(m_busnumber) );
UpdateData(FALSE);
// force bus start in case of start
if ( cmd.m_start )
OnBnClickedStart();
return TRUE; // retourner TRUE, sauf si vous avez défini le focus sur un contrôle
}
void CIvyFileMonDlg::OnCancel()
{
// TODO: Add extra cleanup here
if ( bus )
{
bus->stop();
delete bus;
}
CDialog::OnCancel();
}
void CIvyFileMonDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}
// Si vous ajoutez un bouton Réduire à votre boîte de dialogue, vous devez utiliser le code ci-dessous
// pour dessiner l'icône. Pour les applications MFC utilisant le modèle Document/Vue,
// cela est fait automatiquement par l'infrastructure.
void CIvyFileMonDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // contexte de périphérique pour la peinture
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
// Centrer l'icône dans le rectangle client
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// Dessiner l'icône
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}
// Le système appelle cette fonction pour obtenir le curseur à afficher lorsque l'utilisateur fait glisser
// la fenêtre réduite.
HCURSOR CIvyFileMonDlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CIvyFileMonDlg::OnBnClickedStart()
{
UpdateData(TRUE);
bus->stop();
m_busnumber = bus->GetDomain( CONVSTR(m_busnumber) );
bus->start(CONVSTR(m_busnumber));
watcher.WatchDirectory(m_directory,
FILE_NOTIFY_CHANGE_FILE_NAME |FILE_NOTIFY_CHANGE_LAST_WRITE,
this,
FALSE, //<-- watch sub directories?
m_extent, //<-- Include Filter
NULL);//<-- Exclude Filter
UpdateData(FALSE);
}
void CIvyFileMonDlg::SendIvyFile(const CString & strFileName)
{
CStdioFile file;
CString line;
TRACE("File Change %s\n", (LPCSTR)strFileName );
if ( file.Open( strFileName, CFile::modeRead ) )
{
WriteMessage( "File %s Change sending file...",(LPCSTR)strFileName );
bus->SendMsg("%s FileBegin %s",(LPCSTR)m_prefix, (LPCSTR)strFileName);
while( file.ReadString(line) )
{
bus->SendMsg("%s FileLine %s",(LPCSTR) m_prefix, (LPCSTR)line);
}
file.Close();
bus->SendMsg("%s FileEnd",(LPCSTR) m_prefix);
WriteMessage( "File %s Change done",(LPCSTR)strFileName );
}
}
void CIvyFileMonDlg::On_FileAdded(const CString & strFileName)
{
SendIvyFile( strFileName );
}
void CIvyFileMonDlg::On_FileModified(const CString & strFileName)
{
SendIvyFile( strFileName );
}
|