summaryrefslogtreecommitdiff
path: root/Bus/IvyProbe/IvyProbeDlg.cpp
blob: ef7bff8aea3191124596496399f9e09e7dd1c238 (plain)
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
// TestDlg.cpp : implementation file
//

#include "stdafx.h"
#include "IvyProbe.h"
#include "IvyProbeDlg.h"
#include "TestParseCmdLine.h"

#include "IvyApplication.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

static char BASED_CODE szFilterMsg[] = "Ivy Messages Files (*.ivm)|*.ivm|Ivy Files (*.ivm;*.ivb;*.txt)|*.ivm;*.ivb;*.txt|All Files (*.*)|*.*||";
static char BASED_CODE szFilterBind[] = "Ivy Bindings Files (*.ivb)|*.ivb|Ivy Files (*.ivm;*.ivb;*.txt)|*.ivm;*.ivb;*.txt|All Files (*.*)|*.*||";

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
	//{{AFX_DATA_INIT(CAboutDlg)
	//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAboutDlg)
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
	//{{AFX_MSG_MAP(CAboutDlg)
		// No message handlers
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTestDlg dialog

CIvyProbeDlg::CIvyProbeDlg(CWnd* pParent /*=NULL*/)
	: 	MyDialog(CIvyProbeDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CTestDlg)
	m_busnumber = "";
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);

	bus = NULL;
}

void CIvyProbeDlg::DoDataExchange(CDataExchange* pDX)
{
	MyDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CTestDlg)
	DDX_Control(pDX, IDC_REGEXP, m_expr);
	DDX_Control(pDX, IDC_MSG, m_msg);
	DDX_Text(pDX, IDC_BUSNUMBER, m_busnumber);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CIvyProbeDlg, MyDialog)
	//{{AFX_MSG_MAP(CTestDlg)
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(IDC_START, OnStart)
	ON_WM_CLOSE()
	ON_BN_CLICKED(IDC_SEND, OnSend)
	ON_BN_CLICKED(IDC_BIND, OnBind)
	ON_WM_SYSCOMMAND()
	ON_COMMAND(FILE_LOAD, OnLoad)
	ON_COMMAND(FILE_SAVE, OnSave)
	//}}AFX_MSG_MAP
	ON_COMMAND(ID_FILE_SAVEBINDINGS, &CIvyProbeDlg::OnFileSavebindings)
	ON_COMMAND(ID_FILE_LOADBINDINGS, &CIvyProbeDlg::OnFileLoadbindings)
END_MESSAGE_MAP()



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

}


/////////////////////////////////////////////////////////////////////////////
// CTestDlg message handlers

BOOL CIvyProbeDlg::OnInitDialog()
{
	MyDialog::OnInitDialog();

//	// Add "About..." menu item to system menu.
//
//	// IDM_ABOUTBOX must be in the system command range.
//	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);
//		}
//	}

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon

#ifdef USE_ETS
	// define the Layout
	CreateRoot( VERTICAL, nDefaultBorder, 5 )
		<< ( pane( HORIZONTAL, ABSOLUTE_VERT )
			<< item ( IDC_BUSNUMBER, GREEDY )
			<< item ( IDC_START, NORESIZE )
			)
		<< item ( IDC_TEXT, GREEDY )
		<< ( pane( HORIZONTAL, ABSOLUTE_VERT )
			<< item( IDC_STATIC_MSG, NORESIZE )
			<< item( IDC_MSG, GREEDY )
			<< item( IDC_SEND, NORESIZE )
			)
		<< ( pane( HORIZONTAL, ABSOLUTE_VERT )
			<< item( IDC_STATIC_BIND, NORESIZE )
			<< item( IDC_REGEXP, GREEDY )
			<< item( IDC_BIND, NORESIZE )
			);
		UpdateLayout ();
#endif
	// extra initialization here
	m_text.SubclassDlgItem (IDC_TEXT, this);


	// parse command Line Info
	TestParseCmdLine cmd;
	AfxGetApp()->ParseCommandLine( cmd );

	// Set Argument from Command Line
	m_busnumber = cmd.m_busNumber;

	bus = new Ivy( "IvyProbe Windows","IvyProbe Windows Ready",this,FALSE);
	bus->SetBindCallback(  this );
	
//	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 ) 
		OnStart();

	return TRUE;  // return TRUE  unless you set the focus to a control
}


//void CTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
//{
//	if ((nID & 0xFFF0) == IDM_ABOUTBOX)
//	{
//		CAboutDlg dlgAbout;
//		dlgAbout.DoModal();
//	}
//	else
//	{
//		MyDialog::OnSysCommand(nID, lParam);
//	}
//}



// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CIvyProbeDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

void CIvyProbeDlg::OnStart() 
{
	UpdateData(TRUE);
	bus->stop();
	m_busnumber = bus->GetDomain( CONVSTR(m_busnumber) );
	bus->start(CONVSTR(m_busnumber));
	UpdateData(FALSE);
}

void CIvyProbeDlg::OnMessage(IvyApplication *app, int argc, const char **argv)
{
	int i;
	CString text;
	TRACE(TEXT(" Called function args:"));
	WriteMessage( "Ivy callback %d args",argc );
	for ( i = 0; i < argc; i++ )
		{
		WriteMessage(" arg%d='%s'",i, argv[i] );
		TRACE(TEXT(" '%s'"),argv[i]);
		}
	TRACE(TEXT("\n"));
	
}



void CIvyProbeDlg::OnDirectMessage(IvyApplication *app, int id, const char *arg)
{
TRACE(TEXT("Direct Msg Receive %d, %s\n"),id,arg );
}

void CIvyProbeDlg::OnApplicationConnected(IvyApplication *app)
{
	WriteMessage( "Application: %s ready",(LPCSTR)(app->GetName()) );
}
void CIvyProbeDlg::OnApplicationDisconnected(IvyApplication *app)
{
	WriteMessage( "Application: %s bye",(LPCSTR)(app->GetName()) );
}

void  CIvyProbeDlg::OnAddBind (IvyApplication *app, int id, const char * regexp)
{
	WriteMessage( "Application: %s Add Binding %s",(LPCSTR)(app->GetName()), regexp );
}
void  CIvyProbeDlg::OnRemoveBind (IvyApplication *app, int id, const char * regexp)
{
	WriteMessage( "Application: %s Remove Binding %s",(LPCSTR)(app->GetName()), regexp );
}
void  CIvyProbeDlg::OnFilterBind (IvyApplication *app, int id, const char * regexp)
{
	WriteMessage( "Application: %s Filtered Binding %s",(LPCSTR)(app->GetName()), regexp );
}

void CIvyProbeDlg::WriteMessage(const char *format, ...)
{
	char str[4096];
	// format and write the data we were given
	va_list args;
	va_start(args, format);
	_vsnprintf_s(str, sizeof(str), sizeof(str)-1, format, args);
   
	m_text.AppendString( str );
}


void CIvyProbeDlg::OnClose() 
{
	// TODO: Add your message handler code here and/or call default
	TRACE ( TEXT("IvyProbe Quitting\n"));
	if (bus)
	{
		bus->stop();
		delete bus;
	}

	MyDialog::OnClose();
}


void CIvyProbeDlg::OnSend() 
{
	CString buffer;
	m_msg.SetEditSel( 0, -1 );
	m_msg.GetWindowText( buffer );
	if ( buffer.IsEmpty() ) return;
	int count = bus->SendMsg( CONVSTR(buffer) );
	if ( m_msg.FindStringExact(-1, buffer) == CB_ERR )
		{
		//m_msg.AddString( buffer );
		m_msg.InsertString( 0, buffer );
		}
	WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
	m_msg.Clear();
}

void CIvyProbeDlg::OnBind() 
{
	CString buffer;
	m_expr.SetEditSel( 0, -1 );
	m_expr.GetWindowText( buffer );
	if ( buffer.IsEmpty() ) return;
	int count = bus->BindMsg( CONVSTR(buffer) , this );
	if ( m_expr.FindStringExact(-1, buffer) == CB_ERR )
		{
		m_expr.AddString( buffer );
		}
	WriteMessage( "Binding to %s", CONVSTR(buffer) );
	m_expr.Clear();	
}


void CIvyProbeDlg::OnLoad() 
{
#ifndef UNDER_CE
	// TODO ReadString doesn't existe 
	CString message;

	CFileDialog dialog( TRUE, TEXT("ivm"), NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilterMsg);
	if ( dialog.DoModal() == IDOK )
	{
		CStdioFile file( dialog.GetPathName(), CFile::modeRead | CFile::typeText  );
		m_msg.ResetContent();
		while ( file.ReadString( message ))
		{
			m_msg.AddString( message );
		}
		file.Close();
	}
#endif	
}

void CIvyProbeDlg::OnSave() 
{
#ifndef UNDER_CE
	// TODO WriteString doesn't existe 
	CString message;

	CFileDialog dialog( FALSE, TEXT("ivm") , NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilterMsg);
	if ( dialog.DoModal() == IDOK )
	{
		CStdioFile file( dialog.GetPathName(), CFile::modeCreate  | CFile::modeWrite | CFile::typeText  );
		for (int i=0;i < m_msg.GetCount();i++)
		{
			m_msg.GetLBText( i, message );
			file.WriteString(message + TEXT("\n"));
		}
		file.Close();

	}
#endif
}

void CIvyProbeDlg::OnFileLoadbindings()
{
#ifndef UNDER_CE
	// TODO ReadString doesn't existe 
	CString message;

	CFileDialog dialog( TRUE, TEXT("ivb"), NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilterBind);
	if ( dialog.DoModal() == IDOK )
	{
		CStdioFile file( dialog.GetPathName(), CFile::modeRead | CFile::typeText  );
		m_expr.ResetContent();
		while ( file.ReadString( message ))
		{
			m_expr.AddString( message );
			bus->BindMsg( CONVSTR(message) , this );
		}
		file.Close();
	}
#endif	
}

void CIvyProbeDlg::OnFileSavebindings()
{
#ifndef UNDER_CE
	// TODO WriteString doesn't existe 
	CString message;

	CFileDialog dialog( FALSE, TEXT("ivb") , NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilterBind);
	if ( dialog.DoModal() == IDOK )
	{
		CStdioFile file( dialog.GetPathName(), CFile::modeCreate  | CFile::modeWrite | CFile::typeText  );
		for (int i=0;i < m_expr.GetCount();i++)
		{
			m_expr.GetLBText( i, message );
			file.WriteString(message + TEXT("\n"));
		}
		file.Close();

	}
#endif
}