summaryrefslogtreecommitdiff
path: root/src/testbus.c
blob: 39d55b5abe017e261417cffdcecdbc7228e94583 (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
#include <stdio.h>
#include <sys/time.h>
#include <unistd.h>
#include "socket.h"
#include "bus.h"
#include "timer.h"
#ifdef XTMAINLOOP
#include <X11/Intrinsic.h>
#endif

int app_count = 0;
int wait_count = 0;

void Callback( BusClientPtr app, void *user_data, int argc, char *argv[])
{
	int i;
	printf(" %s Called function %d args:",GetApplicationName(app),argc);
	for ( i = 0; i < argc; i++ )
			printf(" '%s'",argv[i]);
	printf("\n");
}
void HandleStdin( Channel channel, int fd, void *data)
{
	char buf[4096];
	char *line;
	char *cmd;
	char *arg;
	int id;
	BusClientPtr app;
	int err;
	line = gets( buf);
	if ( !line )
		{
		ChannelClose( channel );
		ChannelStop();
		return;
		}
	if ( *line == '.' )
	{
		cmd = strtok( line, ".: ");
		if ( strcmp(cmd, "die" ) == 0 )
			{
			arg = strtok( NULL, " " );
			if ( arg )
				{
				app = GetApplication( arg );
				if ( app )
					SendDieMsg( app );
					else printf( "No Application %s!!!\n",arg);
				}
			}
		if ( strcmp(cmd,  "bind" ) == 0 )
			{
			arg = strtok( NULL, "'" );
			if ( arg )
				{
				BindMsg( Callback, NULL, arg );
				}
			}
		if ( strcmp(cmd,  "where" ) == 0 )
			{
			arg = strtok( NULL, " " );
			if ( arg )
				{
				app = GetApplication( arg );
				if ( app )
					printf( "Application %s on %s\n",arg, GetApplicationHost( app ));
					else printf( "No Application %s!!!\n",arg);
				}
			}
		if ( strcmp(cmd, "direct" ) == 0 )
			{
			arg = strtok( NULL, " " );
			if ( arg )
				{
				app = GetApplication( arg );
				if ( app )
					{
					arg = strtok( NULL, " " );
					id = atoi( arg ) ;
					arg = strtok( NULL, "'" );
					SendDirectMsg( app, id, arg );
					}
				else printf( "No Application %s!!!\n",arg);
				}
			
			}
		if ( strcmp(cmd, "who") == 0 )
			{
			printf("Apps: %s\n", GetApplicationList());
			}
		if ( strcmp(cmd, "help") == 0 )
			{
			printf("Commands list:\n");
			printf("	.help					 - this help\n");
			printf("	.quit					 - terminate this application\n");
			printf("	.die appname			 - send die msg to appname\n");
			printf("	.direct appname	id 'arg' - send direct msg to appname\n");
			printf("	.where appname			 - on which host is appname\n");
			printf("	.bind 'regexp'			 - add a msg to receive\n");
			printf("	.who					 - who is on the bus\n");
			}
		if ( strcmp(cmd, "quit") == 0 )
			{
			exit(0);
			}
	}
	else 
	{
	err = SendMsg( buf );
	printf("Sent:%d\n",err);
	}
}

void ApplicationCallback( BusClientPtr app, void *user_data, BusApplicationEvent event)
{
	char *appname;
	char *host;
	char **msgList;
	appname = GetApplicationName( app );
	host = GetApplicationHost( app );
	switch ( event )  {
	case BusApplicationConnected:
		app_count++;
		printf("Application(%d): %s ready on %s\n",app_count, appname, host);
		printf("Application(%s): Begin Messages\n", appname);
		msgList = GetApplicationMessages( app );
		while( *msgList  )
			printf("Application(%s): Receive '%s'\n",appname,*msgList++);
		printf("Application(%s): End Messages\n",appname);
		if ( app_count == wait_count )
			ChannelSetUp( 0, NULL, NULL, HandleStdin);
		break;
	case BusApplicationDisconnected:
		app_count--;
		printf("Application(%d): %s bye on %s\n",app_count, appname, host);
		break;
	default:
		printf("Application(%d): %s unkown event %d\n", app_count, appname, event);
		break;
	}

}
void TimerCall(TimerId id, void *user_data, unsigned long delta)
{
	printf("Timer callback: %d delta %lu ms\n", (int)user_data, delta );
	SendMsg( "TEST TIMER %d", (int)user_data);
	/*if ( (int)user_data == 5 ) TimerModify( id, 2000 );*/
}
int main(int argc, char *argv[])
{
	
	unsigned short bport = DEFAULT_BUS;
	int c;
	int timer_test = 0;
	while ((c = getopt(argc, argv, "b:w:t")) != EOF)
			switch (c)
					{
					case 'b':
							bport = atoi(optarg) ;
							break;
					case 'w':
							wait_count = atoi(optarg) ;
							break;
					case 't':
							timer_test = 1;
							break;
					}
#ifdef XTMAINLOOP
	XtToolkitInitialize();

#endif
	BusInit("TEST",bport,"TEST READY",ApplicationCallback,NULL,NULL,NULL);
	for ( ; optind < argc; optind++ )
			BindMsg( Callback, NULL, argv[optind] );
	if ( wait_count == 0 )
		ChannelSetUp( 0, NULL, NULL, HandleStdin);
	BusStart( );
	if ( timer_test )
		{
		TimerRepeatAfter( TIMER_LOOP, 1000, TimerCall, (void*)1 );
		TimerRepeatAfter( 5, 5000, TimerCall, (void*)5 );
		}
#ifdef XTMAINLOOP
	XtMainLoop();
#else
	BusLoop();
#endif
	return 0;
}