File: dispatcher.c

package info (click to toggle)
dcap 2.47.12-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,372 kB
  • sloc: ansic: 14,608; makefile: 313; python: 75; sh: 58
file content (375 lines) | stat: -rw-r--r-- 7,509 bytes parent folder | download | duplicates (7)
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
/*
 *   DCAP - dCache Access Protocol client interface
 *
 *   Copyright (C) 2000,2004 DESY Hamburg DMG-Division.
 *
 *   AUTHOR: Tigran Mkrtchayn (tigran.mkrtchyan@desy.de)
 *
 *   This program can be distributed under the terms of the GNU LGPL.
 *   See the file COPYING.LIB
 *
 */


/*
 * $Id: dispatcher.c,v 1.6 2004-11-01 19:33:29 tigran Exp $
 */
#ifndef _REENTRANT
#define _REENTRANT
#endif				/* _REENTRANT */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>


#if defined(sun) && !defined(USE_PTHREAD)
#include <thread.h>
#include <synch.h>
#else
#include <pthread.h>
#endif				/* #if defined(sun) && !defined(USE_PTHREAD) */


#define RAND(x)  (random()%(x) +1)

#define QLEN 2
#define CNUM 5

#if defined(sun) && !defined(USE_PTHREAD)

static mutex_t  gLock = DEFAULTMUTEX;
static mutex_t  cLock = DEFAULTMUTEX;
static cond_t   gCond = DEFAULTCV;

#define m_init(x) mutex_init(x, USYNC_THREAD, NULL);
#define m_lock(x) mutex_lock(x)
#define m_unlock(x) mutex_unlock(x)
#define m_trylock(x) mutex_trylock(x)

#define c_wait(a,b) cond_wait(a,b)
#define c_broadcast(x) cond_broadcast(x)

#else

static pthread_mutex_t gLock = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t cLock = PTHREAD_MUTEX_INITIALIZER;
static pthread_cond_t gCond = PTHREAD_COND_INITIALIZER;

#define m_init(x) pthread_mutex_init(x,  NULL);
#define m_lock(x) pthread_mutex_lock(x)
#define m_unlock(x) pthread_mutex_unlock(x)
#define m_trylock(x) pthread_mutex_trylock(x)

#define c_wait(a,b) pthread_cond_wait(a,b)
#define c_broadcast(x) pthread_cond_broadcast(x)

#endif				/* #if defined(sun) && !defined(USE_PTHREAD) */


typedef struct {
	short           destination;
	char           *body;
	int             len;
}               message;

typedef struct {
	message       **mQueue;
	int             qLen;	/* queue length */
	int             mnum;	/* message number */
	int             ID;
#if defined(sun) && !defined(USE_PTHREAD)
	mutex_t         lock;
#else
	pthread_mutex_t lock;
#endif				/* #if defined(sun) && !defined(USE_PTHREAD) */
}               client;


typedef struct {
	int             myID;
	int             fd;
}               chain;


client          clients[CNUM];

static int      mTotal = 0;


static int getMessage(int, int, client *, message *);
static void *thread_task(void *arg);


void           *
thread_task(void *arg)
{

	chain          *myChain;
	message        *out;
	int             i;

	myChain = (chain *) arg;



	while (1) {
		i = getMessage(myChain->fd, myChain->myID, clients, out);
		if (i < 0) {
			m_lock(&cLock);

			if (mTotal == 0) {
				break;
			} else {
				m_unlock(&cLock);
				continue;
			}
		}
		mTotal--;
		m_unlock(&cLock);

		free(out);
	}

	free(myChain);
	return NULL;
}


int
main()
{


	int             Pipe[2];
	int             pid;
	message         msg;
	int             i;
	int             k;
#if defined(sun) && !defined(USE_PTHREAD)
	thread_t        wthread[CNUM];
#else
	pthread_t       wthread[CNUM];
#endif
	chain          *c;


	/* Patrick did not like Pipes, but it's easy to use them... */
	if (pipe(Pipe) < 0) {
		perror("pipe");
		exit(2);
	}
	/*
	 * write to Pipe[1] read from Pipe[0]
	 */

	pid = fork();

	if (pid < 0) {
		perror("fork");
		exit(1);
	}
	/* take it easy... */
	signal(SIGPIPE, SIG_IGN);

	if (pid) {		/* parent */
		/* this process will write to the pipe */

		/* close unneeded pipe descriptor */
		close(Pipe[0]);
		srandom(pid);

		for (i = 0; i < 50; i++) {
			msg.destination = RAND(CNUM) - 1;
			write(Pipe[1], &msg, sizeof(message));
			sleep(1);
		}
		close(Pipe[1]);
		exit(0);

	} else {		/* child */
		/* this process will read from the pipe */

		/* close unneeded pipe descriptor */
		close(Pipe[1]);
		srandom(getppid());


		for (i = 0; i < CNUM; i++) {
			clients[i].mQueue =
				(message **) malloc(sizeof(message *) * QLEN);
			if (clients[i].mQueue == NULL) {
				perror("malloc");
				exit(4);
			}
			clients[i].qLen = QLEN;
			clients[i].mnum = 0;
			clients[i].ID = i + 1;
			m_init(&clients[i].lock);

			/* Just do it... with threads */

			c = (chain *) malloc(sizeof(chain));
			if (c == NULL) {
				perror("malloc");
				exit(4);
			}
			c->fd = Pipe[0];
			c->myID = i;
#if defined(sun) && !defined(USE_PTHREAD)
			thr_create(NULL, 0, thread_task, (void *) c, 0, &wthread[i]);
#else
			pthread_create(&wthread[i], NULL, thread_task, (void *) c);
#endif
		}

		/* lets wait untill all threads will finish */

#if defined(sun) && !defined(USE_PTHREAD)
		while (thr_join(0, NULL, NULL) == 0);
#else
		for (i = 0; i < CNUM; i++)
			pthread_join(wthread[i], NULL);
#endif




		for (i = 0; i < CNUM; i++) {
			printf("Client %d have %d messages\n", i, clients[i].mnum);
		}
		fflush(stdout);

		/* Final cleanup */

		for (i = 0; i < CNUM; i++) {
			for (k = 0; k < clients[i].mnum; k++) {
				free(clients[i].mQueue[k]);
			}
			free(clients[i].mQueue);
		}


		exit(0);
	}

}


int
getMessage(int fd, int myID, client * clnt, message * out)
{

	int             n;
	message        *msg;
	message       **tmp;
	int             destination;


	while (1) {
		m_lock(&clnt[myID].lock);
		if (clnt[myID].mnum) {

			/* printf("Hey! I([%d]) have message in the Queue. Skeep scanning...\n", myID); */


			out = clnt[myID].mQueue[0];
			if (clnt[myID].mnum > 1) {
				memmove(&clnt[myID].mQueue[0], &clnt[myID].mQueue[1],
					sizeof(&clnt[myID].mQueue[0]) * (clnt[myID].mnum -
									 1));
			}
			clnt[myID].mnum -= 1;
			m_unlock(&clnt[myID].lock);
			return 0;
		}
		m_unlock(&clnt[myID].lock);

		if (m_trylock(&gLock) == 0) {	/* we got the lock, and doing
						 * wat ever we want ... */
			printf("\tMessages for clinets:");

			while (1) {
				msg = (message *) malloc(sizeof(message));
				if (msg == NULL) {
					perror("malloc");
					m_unlock(&gLock);
					c_broadcast(&gCond);
					return -1;
				}
				n = read(fd, msg, sizeof(message));
				if (n <= 0) {
					printf("\n");
					fflush(stdout);
					m_unlock(&gLock);
					c_broadcast(&gCond);
					return -1;
				}
				m_lock(&cLock);
				mTotal++;
				m_unlock(&cLock);

				destination = msg->destination;

				m_lock(&clnt[destination].lock);
				if (clnt[destination].mnum == clnt[destination].qLen) {
					tmp =
						(message **) realloc(clnt[destination].mQueue, sizeof(message *) *
					      (clnt[destination].qLen + 1));
					if (tmp == NULL) {
						perror("malloc");
						free(msg);
						m_unlock(&gLock);
						c_broadcast(&gCond);
						m_unlock(&clnt[destination].lock);
						return -1;
					}

					clnt[destination].mQueue = tmp;
					clnt[destination].qLen += 1;

				}
				clnt[destination].mQueue[clnt[destination].mnum] = msg;
				clnt[destination].mnum += 1;

				if (destination == myID) {
					printf(" [%d](my self).\n", myID);
					m_unlock(&gLock);
					c_broadcast(&gCond);


					out = clnt[myID].mQueue[0];
					if (clnt[myID].mnum > 1) {
						memmove(&clnt[myID].mQueue[0],
						      &clnt[myID].mQueue[1],
							sizeof(message *) *
						     (clnt[myID].mnum - 1));
					}
					clnt[myID].mnum -= 1;
					m_unlock(&clnt[myID].lock);
					return 0;
				} else {
					printf(" [%d]", destination);
				}

				fflush(stdout);
				m_unlock(&clnt[destination].lock);
				c_broadcast(&gCond);
			}

		} else {

			/*
			 * mutex aready locked. we have to wait untill
			 * somebody will done out tasks.
			 */


/*			printf("Everything is locked...I([%d]) will wait.\n", myID); */

			c_wait(&gCond, &clnt[myID].lock);
			m_unlock(&clnt[myID].lock);
		}
	}
}