summaryrefslogtreecommitdiff
path: root/Ivy/Ivy.cxx
blob: 64842367ef8e31ccd3e5cd85f8de28a335468987 (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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
// Ivy.cpp: implementation of the Ivy class.
//
//////////////////////////////////////////////////////////////////////

#include "IvyStdAfx.h"

#include "Ivy.h"

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

#define DEFAULT_ADDR "127.0.0.1"
#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 )
		{
		IvySynchroWnd::Finish();
		delete application_callback;
		}
}


Ivy::Ivy(const char* name, const char * ready, IvyApplicationCallback *callback, bool Synchronous)
{
	InitializeCriticalSection( &m_application_cs );
	regexp_id = 0;
	synchronous = Synchronous;
	IvySynchroWnd::Init(synchronous);
	
	// check for empty application name
	if ( name == NULL || strlen( name ) == 0 )
		ApplicationName = "LazyDevelopper";
	else
		ApplicationName = name;

	// check for empty ready message
	if ( ready == NULL || strlen( ready ) == 0 )
		ready_message = ApplicationName + " READY";
	else
		ready_message = ready;
	
	binding_callback = 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;
		}
	ApplicationID = GenApplicationUniqueIdentifier();
	watcher = new IvyWatcher(this);


}
const char *Ivy::GenApplicationUniqueIdentifier()
{
        static char appid[2048];
        unsigned long curtime;
        curtime = GetTickCount();
        srand( curtime );
        sprintf_s(appid,sizeof(appid),"%d:%lu:%d",rand(),curtime,applicationPort);
        return appid;
}

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 UNDER_CE
		size_t requiredSize;

		getenv_s( &requiredSize, NULL, 0, "IVYBUS");

		if ( requiredSize )
		{
			char *env = (char*)malloc( requiredSize * sizeof(char));
			getenv_s( &requiredSize, env, requiredSize, "IVYBUS");
			domain = env;
			free( env );
		}
#endif
		if ( domain.empty() )
			domain = DEFAULT_DOMAIN;
		}
	// first find our UDP port
	size_t sep_index = domain.rfind( ':' );
	if ( sep_index == -1 )
		{
		//domain = DEFAULT_DOMAIN;
		domain.append( SEPARATOR );
		domain.append( DEFAULT_PORT );
		TRACE(" Missing ':' in domain list using default port %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)
{
	if ( watcher->IsRunning() )
	{
		Ivy::stop();
	}
	watcher->start(domain);
}
void Ivy::stop()
{
	watcher->stop();

	EnterCriticalSection( &m_application_cs );
	IvyApplicationList::iterator iter;
	IvyApplicationList copy_applications;
	copy_applications = applications;
	applications.clear();
	LeaveCriticalSection( &m_application_cs );

	for ( iter = copy_applications.begin() ; iter != copy_applications.end() ; ++iter )
	{
		IvyApplication *app = *iter;
		app->Close();
		delete app;
	}
	
}
int Ivy::BindMsg(const char *regexp, IvyMessageCallback *cb)
{
	char buffer[8192];
	
	SubstituteInterval( regexp, buffer, sizeof( buffer ) );
	regexp_out.push_back(  buffer );
	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, regexp_id, buffer );
	}
	return regexp_id++;
}
int Ivy::BindMsg( IvyMessageCallback *cb, const char *regexp, ... )
{
	char buffer[4096];
	char buffer2[8192];
	va_list args;

    va_start( args, regexp );     /* Initialize variable arguments. */
	_vsnprintf_s( buffer, sizeof(buffer), sizeof(buffer)-1, regexp, args );
	va_end( args);

	SubstituteInterval( buffer, buffer2, sizeof( buffer2 ) );

	regexp_out.push_back(  buffer2 );
	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, regexp_id, buffer2 );
	}
	return regexp_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::ChangeBindMsg(int id, const char *regexp, ...)
{
	char buffer[4096];
	char buffer2[8192];
	va_list args;

    va_start( args, regexp );     /* Initialize variable arguments. */
	_vsnprintf_s( buffer, sizeof(buffer), sizeof(buffer)-1, regexp, args );
	va_end( args);

	SubstituteInterval( buffer, buffer2, sizeof( buffer2 ) );
	regexp_out[ id ] = buffer2;
	/* send to already connected */
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *app = *iter;
		app->SendMsg(IvyApplication::AddRegexp, id, buffer2 );
	}

}

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

unsigned int 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 );
	// put the socket in NOdelay , disable Nagle's Algorithm
	// we want Ivy Send message Immediately
	int flag=1;
	int err = app->SetSockOpt( TCP_NODELAY, &flag, sizeof(flag) );
	SendSubscriptions( app );
}
void Ivy::RemoveApplication(IvyApplication * app)
{
	/// OLD NOT called because of deallocation PB
	// when self application close !!
	// the real remove is done at arrival of a new Application 
	// or at the bus Stop
	TRACE( "Ivy::RemoveApplication %lu\n", app );
	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(), ApplicationName.c_str());
	for ( unsigned int id = 0 ; id < regexp_out.size(); id++ )
	{
		const ivy::string& regexp = regexp_out[id];
		if ( !regexp.empty() )
			app->SendMsg( IvyApplication::AddRegexp, id, regexp.c_str());
	}
	app->SendMsg( IvyApplication::EndRegexp, 0);
	app->SendReadyToPeer();
}


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

    va_start( args, message );     /* Initialize variable arguments. */
	_vsnprintf_s( buffer, sizeof(buffer), sizeof(buffer)-1, 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)
{
	IvyApplication *app = NULL;
	EnterCriticalSection( &m_application_cs );
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ;  )
	{
		IvyApplication *ap = *iter++;
		if ( (ap->m_hSocket != INVALID_SOCKET)  && ap->appname == name ) 
			{
			app = ap;
			break; // dont return because of LeaveCriticalSection !!!
			}
	}
	LeaveCriticalSection( &m_application_cs );
	return app;
}
	

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::CallBindingAddCallback(IvyApplication * app, int id, const char * regexp)
{
	if ( binding_callback )
		{
		binding_callback->OnAddBind( app, id, regexp );
		}
}
void Ivy::CallBindingRemoveCallback(IvyApplication * app, int id, const char * regexp)
{
	if ( binding_callback )
		{
		binding_callback->OnRemoveBind( app, id, regexp );
		}
}
void Ivy::CallBindingFilterCallback(IvyApplication * app, int id, const char * regexp)
{
	if ( binding_callback )
		{
		binding_callback->OnFilterBind( app, id, regexp );
		}
}
void Ivy::SendDirectMsg(IvyApplication * app, int id, const char *message)
{
	app->SendMsg( IvyApplication::DirectMsg, id, message );
}

void Ivy::SetBindCallback( IvyBindingCallback* bind_callback )
{
	binding_callback = synchronous ? new IvySynchronousBindingCallback(bind_callback) : bind_callback;
}
void Ivy::SetDieCallback( IvyDieCallback* die_cb )
{
	die_callback = synchronous ? new IvySynchronousDieCallback(die_cb) : die_cb;
}
	
void Ivy::SetFilter(int argc, const char **argv )
{
	IvyBinding::SetFilter(argc, argv );
}

IvyApplication * Ivy::CheckConnected(IvyApplication * app)
{
	IvyApplication *application = 0;
	if (app->remoteService == 0)	/* old application dont check */
		return application;
	/* check to see if app already connected */
	EnterCriticalSection( &m_application_cs );
	IvyApplicationList::iterator iter;
	for ( iter = applications.begin() ; iter != applications.end() ; ++iter )
	{
		IvyApplication *other = *iter;
		if ( other != app && other->SameApplication(app))
		{
			application = other;
			break;
		}
	}
	LeaveCriticalSection( &m_application_cs );
	return application;
}
void Ivy::SubstituteInterval (const char *src, char *dst, size_t dst_len)
{

  // pas de traitement couteux s'il n'y a rien à interpoler
  if (strstr (src, "(?I") == NULL) {
	  strcpy_s (dst,dst_len,src);
    return;
  } else {
    char *curPos;
    char *itvPos;
	char *dstPos = dst;

    curPos = (char *)src;
    while ((itvPos = strstr (curPos, "(?I")) != NULL) {
      // copie depuis la position courante jusqu'à l'intervalle
      int lenCp, min,max;
      char withDecimal;
      lenCp = itvPos-curPos;
      memcpy ( dstPos, curPos, lenCp);
      curPos=itvPos;
      dstPos += lenCp;

      // extraction des paramètres de l'intervalle
      sscanf_s (itvPos, "(?I%d#%d%c", &min, &max, &withDecimal);

      //      printf ("DBG> substituteInterval min=%d max=%d withDecimal=%d\n",
      //      min, max, (withDecimal != 'i'));

      // generation et copie de l'intervalle
      regexpGen (dstPos, dst_len-(dstPos-dst), min, max, (withDecimal != 'i'));
      dstPos = dst + strlen (dst);

      // consommation des caractères décrivant intervalle dans la chaine source
      curPos = strstr (curPos, ")");
      curPos++;
    }
    strncat_s (dstPos,dst_len-( dst-dstPos), curPos, dst_len-(dstPos-dst));
  }

}