summaryrefslogtreecommitdiff
path: root/Ivy/Ivy.h
blob: 07e18fe46e73ca6e49cd0573f05706f20bf2dc6b (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
// Ivy.h: interface for the Ivy class.
//
//////////////////////////////////////////////////////////////////////


#pragma once

#ifdef  WIN32
#ifdef IVY_EXPORTS
class _declspec(dllexport) IvyWatcher;
class _declspec(dllexport) IvyApplication;
class _declspec(dllexport) Ivy;
class _declspec(dllexport) CThreadedSocket;
class _declspec(dllexport) CBufferedSocket;
#else
#pragma comment(lib,"Ivy.LIB" )
class _declspec(dllimport) IvyWatcher;
class _declspec(dllimport) IvyApplication;
class _declspec(dllimport) Ivy;
class _declspec(dllimport) CThreadedSocket;
class _declspec(dllimport) CBufferedSocket;
#endif
#endif

#include <windows.h>

#ifndef UNDER_CE 
#define STL
#endif
#ifdef STL
#include <string>
#include <vector>
#include <list>

using std::string;
using std::vector;
using std::list;
#else
#include "DataTypes.h"
#endif

#pragma warning(disable: 4275)
#pragma warning(disable: 4251) 
#pragma warning(disable: 4786)

#include "IvyCallback.h"

class IvyWatcher;

class IvyApplication;

class Ivy  
{
private:
	
	unsigned int applicationPort;
	void SendSubscriptions(IvyApplication *app);

public:
	void AddApplication( IvyApplication *app );
	void RemoveApplication( IvyApplication *app);

	bool CheckConnected( IvyApplication *app );
	bool CheckRegexp( const char *exp );
	void CallApplicationConnectedCallback( IvyApplication *app );
	void CallApplicationDisconnectedCallback( IvyApplication *app );
	bool CallDieCallback( IvyApplication *app, int id, const char *arg );
	void CallDirectMessageCallback( IvyApplication *app, int id, const char *arg );
	void CallMessageCallback( IvyApplication *app, int id, int argc, const char **argv );
	

public:

	void Classes( int argc, const char **argv );
	void SendDieMsg( IvyApplication *app );
	IvyApplication *GetApplication(const char *name);
	void SendDirectMsg( IvyApplication *app, int id, const char *message);
	void BindDirectMsg( IvyDirectMessageCallback *callback );
	int SendMsg( const char *message, ... );

	const char *GetDomain(const char *domainlist);
	unsigned int GetApplicationPort();
	int BindMsg( const char *regexp, IvyMessageCallback *cb );
	void UnbindMsg( int id );
	Ivy( const char *name, const char* ready, IvyApplicationCallback *callback, bool Synchronous = true );
	void start(const char *domain);
	void stop();
	virtual ~Ivy();
	
	/* message a emettre sur connection nouvelle application */
	string ready_message;
	
protected:
	bool synchronous;		// use Window Shink to made CB mono thread like
	IvyApplication * server;
	IvyWatcher * watcher;
	IvyDieCallback *die_callback;
	IvyDirectMessageCallback *direct_callback;
	IvyApplicationCallback *application_callback;
	/* list des adresses de broadcast */
	string domain;
	/* nom de l'appliction */
	string appname;
	/* liste des clients connectes */
	CRITICAL_SECTION  m_application_cs;
	typedef list<IvyApplication*> IvyApplicationList;
	IvyApplicationList applications;

	/* liste des souscriptions locale a emettre aux autres applications */
	vector<string> regexp_out;
	/* liste des callbacks a appeler */
	vector< IvyMessageCallback* > callbacks;
	/* classes de messages emis par l'application utilise pour le filtrage */
	int messages_classes_count;
	const char **messages_classes;

};