summaryrefslogtreecommitdiff
path: root/Ivy/Ivy.cxx
blob: c10785ff6bc91e49be1ae15f07f1e18203123b94 (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
// Ivy.cpp: implementation of the Ivy class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"

#include "Ivy.h"

#include "IvyWatcher.h"
#include "IvyApplication.h"
#include "IvySynchroWnd.h"


#define DEFAULT_ADDR "127.255.255.255"
#define SEPARATOR ":"
#define DEFAULT_PORT "2010"
#define DEFAULT_DOMAIN DEFAULT_ADDR/**/SEPARATOR/**/DEFAULT_PORT


//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////


Ivy::~Ivy()
{
	// remove all app and stop watcher
	stop();
	regexp_out.clear();
    
	if ( synchronous )
		{
		for ( unsigned int i = 0; i < callbacks.size(); i ++)
		{
		delete callbacks[i];
		}
		}
	callbacks.clear();

  
//	if ( direct_callback ) delete direct_callback;
//	if ( application_callback ) delete application_callback;

	delete watcher;
//	server->Close();
	delete server;
	if ( synchronous )
		{
		delete IvySynchronousCallback::m_synchro;
		delete application_callback;
		}
}


Ivy::Ivy(const char* name, const char * ready, IvyApplicationCallback *callback, bool Synchronous)
{
	InitializeCriticalSection( &m_application_cs );
	
	synchronous = Synchronous;
	if ( synchronous )
		IvySynchronousCallback::m_synchro = new IvySynchroWnd();
	ready_message = ready;
	appname = name;
	messages_classes_count = 0;
	messages_classes = NULL;
	application_callback = synchronous ? new IvySynchronousApplicationCallback(callback) : callback;
	direct_callback = NULL;
	die_callback = NULL;
	server = new IvyApplication(this);
	applicationPort = server->Create();
	if ( !applicationPort )
		{
		TRACE( " Can't Create server %d\n", server->GetLastError( ) );
		return;
		}
	watcher = new IvyWatcher(this);


}
const char * Ivy::GetDomain(const char *domainlist)
{
	// determine domain to use
	// the syntax of domain is "IpBroadcastAddr1,IpBroadcastAddr2,IpBroadcastAddr2:port" 
	if ( domainlist )
		{
		domain = domainlist;
		}
	if ( domain.empty() )
		{
#ifndef _WIN_CE
		const char *env = getenv ( "IVYBUS" );
		if ( env )
			domain = env;
#endif
		if ( domain.empty() )
			domain = DEFAULT_DOMAIN;
		}
	// first find our UDP port
	int sep_index = domain.rfind( ':' );
	if ( sep_index == -1 )
		{
		domain = DEFAULT_DOMAIN;
		TRACE(" Missing ':' in domain list using default domain %s\n", domain );
		}
	if ( sep_index == 0 )
		{
		/* missing addr using localhost */
		domain.insert(0,DEFAULT_ADDR);
		}
	return domain.c_str();
}
	
void Ivy::start(const char *domain)
{
	watcher->start(domain);
}
void Ivy::stop()
{
	watcher->stop();

	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *app = *iter;
		delete app;
	}
	applications.clear();
}
int Ivy::BindMsg(const char *regexp, IvyMessageCallback *cb)
{
	static int id = 0;
	regexp_out.push_back(  regexp );
	callbacks.push_back( synchronous ? new IvySynchronousMessageCallback(cb) : cb );

	/* send to already connected */
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *app = *iter;
		app->SendMsg(IvyApplication::AddRegexp, id, regexp );
	}
	return id++;
}

void Ivy::UnbindMsg(int id)
{
	regexp_out[ id ] = "";
	callbacks[ id ] = NULL;
	/* send to already connected */
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *app = *iter;
		app->SendMsg(IvyApplication::DelRegexp, id, "" );
	}

}

void Ivy::BindDirectMsg(IvyDirectMessageCallback *callback)
{
direct_callback = callback;
}

unsigned short Ivy::GetApplicationPort()
{
	return applicationPort;
}

void Ivy::AddApplication(IvyApplication *app)
{
	EnterCriticalSection( &m_application_cs );
	// Check for disconnected Application
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ;  )
	{
		IvyApplication *disc_app = *iter++;
		if ( disc_app->m_hSocket == INVALID_SOCKET ) 
			{
			applications.remove( disc_app );
			delete disc_app;
			}
	}
	applications.push_back( app );
	LeaveCriticalSection( &m_application_cs );
	SendSubscriptions( app );
}
void Ivy::RemoveApplication(IvyApplication * app)
{
	/// OLD NOT called because of deallocation PB 
	// the real remove is done at arrival of a new Application 
	// or at the bus Stop
	ASSERT( TRUE );
	if ( app )
	{
	
		EnterCriticalSection( &m_application_cs );
		applications.remove( app );
		LeaveCriticalSection( &m_application_cs );
		delete app;
	}
}

void Ivy::SendSubscriptions(IvyApplication *app)
{
	app->SendMsg( IvyApplication::StartRegexp, GetApplicationPort(), appname.c_str());
	for ( unsigned int id = 0 ; id < regexp_out.size(); id++ )
	{
		const string& regexp = regexp_out[id];
		if ( !regexp.empty() )
			app->SendMsg( IvyApplication::AddRegexp, id, regexp.c_str());
	}
	app->SendMsg( IvyApplication::EndRegexp, 0);

}


int Ivy::SendMsg(const char * message, ... )
{
	int count = 0;
	char buffer[4096];
	va_list args;

    va_start( args, message );     /* Initialize variable arguments. */
	vsprintf( buffer, message, args );
	va_end( args);
	/* send to already connected */
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *app = *iter;
		count += app->SendMsg( buffer );
	}
	return count;
}
void Ivy::SendDieMsg( IvyApplication *app )
{
	app->SendMsg( IvyApplication::Die, 0 );
}
IvyApplication * Ivy::GetApplication(const char *name)
{
	EnterCriticalSection( &m_application_cs );
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ;  )
	{
		IvyApplication *app = *iter++;
		if ( (app->m_hSocket != INVALID_SOCKET)  && app->appname == name ) 
			{
			return app;
			}
	}
	LeaveCriticalSection( &m_application_cs );
	return NULL;
}
	

void Ivy::CallMessageCallback(IvyApplication *app, int id, int argc, const char ** argv)
{
	IvyMessageCallback *callback;
	callback = callbacks[ id ];
	if ( callback )
		{
		callback->OnMessage(  app, argc, argv );
		}
}

void Ivy::CallDirectMessageCallback(IvyApplication *app, int id,  const char *arg)
{
	if ( direct_callback )
		{
		direct_callback->OnDirectMessage(  app, id, arg  );
		}
}

bool Ivy::CallDieCallback(IvyApplication *app, int id,  const char *arg)
{
	if ( die_callback )
		{
		return die_callback->OnDie(  app, id, arg  );
		}
	return TRUE;
}

void Ivy::CallApplicationConnectedCallback(IvyApplication * app)
{
	if ( application_callback )
		{
		application_callback->OnApplicationConnected( app );
		}
}
void Ivy::CallApplicationDisconnectedCallback(IvyApplication * app)
{
	if ( application_callback )
		{
		application_callback->OnApplicationDisconnected( app );
		}
}
void Ivy::SendDirectMsg(IvyApplication * app, int id, const char *message)
{
	app->SendMsg( IvyApplication::DirectMsg, id, message );
}

bool Ivy::CheckRegexp(const char * exp)
{
	/* accepte tout par default */
	int i;
	bool regexp_ok = true;
	if ( *exp =='^' && messages_classes_count !=0 )
	{
		regexp_ok = false;
		for ( i = 0 ; i < messages_classes_count; i++ )
		{
			if (strncmp( messages_classes[i], exp+1, strlen( messages_classes[i] )) == 0)
				return 1;
		}
	}
	return regexp_ok;
}

void Ivy::Classes(int argc, const char **argv )
{
	messages_classes_count = argc;
	messages_classes = argv;
}

bool Ivy::CheckConnected(IvyApplication * app)
{
	if (app->remoteService == 0)	/* old application dont check */
		return false;
	/* check to see if app already connected */
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *application = *iter;
		if ( application != app && application->SameApplication(app))
			return true;
	}
	return false;
}