summaryrefslogtreecommitdiff
path: root/src/client_life.c
blob: cb12b3d8b51e2dc17ea7ad68ea68c44cfd308b7f (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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
/*
 * Copyright 2012  Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.tizenopensource.org/license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <stdio.h>
#include <errno.h>

#include <Eina.h>
#include <Ecore.h>

#include <dlog.h>
#include <packet.h>

#include "client_life.h"
#include "instance.h"
#include "client_rpc.h"
#include "debug.h"
#include "util.h"
#include "slave_life.h"
#include "xmonitor.h"
#include "conf.h"

int errno;

static struct {
	Eina_List *client_list;
	int nr_of_paused_clients;

	Eina_List *create_event_list;
	Eina_List *destroy_event_list;
} s_info = {
	.client_list = NULL,
	.nr_of_paused_clients = 0,
	.create_event_list = NULL,
	.destroy_event_list = NULL,
};

struct subscribe_item {
	char *cluster;
	char *category;
};

struct global_event_handler {
	void *cbdata;
	int (*cb)(struct client_node *client, void *data);
};

struct data_item {
	char *tag;
	void *data;
};

struct event_item {
	void *data;
	int (*cb)(struct client_node *, void *);
};

struct client_node {
	pid_t pid;
	int refcnt;

	int paused;

	Eina_List *event_deactivate_list;
	Eina_List *event_destroy_list;
	Eina_List *data_list;
	Eina_List *subscribe_list;

	int faulted;
};

static inline void invoke_global_destroy_cb(struct client_node *client)
{
	Eina_List *l;
	Eina_List *n;
	struct global_event_handler *item;
	int ret;

	EINA_LIST_FOREACH_SAFE(s_info.destroy_event_list, l, n, item) {
		if (!item->cb) {
			DbgPrint("Callback function is not valid\n");
			continue;
		}

		ret = item->cb(client, item->cbdata);

		if (ret < 0) {
			if (eina_list_data_find(s_info.destroy_event_list, item)) {
				s_info.destroy_event_list = eina_list_remove(s_info.destroy_event_list, item);
				DbgFree(item);
			}
		}
	}
}

static inline void invoke_global_create_cb(struct client_node *client)
{
	Eina_List *l;
	Eina_List *n;
	struct global_event_handler *item;

	EINA_LIST_FOREACH_SAFE(s_info.create_event_list, l, n, item) {
		if (item->cb(client, item->cbdata) < 0) {
			if (eina_list_data_find(s_info.create_event_list, item)) {
				s_info.create_event_list = eina_list_remove(s_info.create_event_list, item);
				DbgFree(item);
			}
		}
	}
}

static inline void destroy_client_data(struct client_node *client)
{
	struct event_item *event;
	struct data_item *data;
	struct subscribe_item *item;
	Eina_List *l;
	Eina_List *n;

	DbgPrint("Client %p is destroyed\n", client);

	invoke_global_destroy_cb(client);
	client_rpc_fini(client); /*!< Finalize the RPC after invoke destroy callbacks */

	EINA_LIST_FOREACH_SAFE(client->event_destroy_list, l, n, event) {
		if (!event->cb) {
			DbgPrint("Callback function is not valid\n");
			continue;
		}

		event->cb(client, event->data);

		if (eina_list_data_find(client->event_destroy_list, event)) {
			client->event_destroy_list = eina_list_remove(client->event_destroy_list, event);
			DbgFree(event);
		}
	}

	EINA_LIST_FREE(client->data_list, data) {
		DbgPrint("Tag is not cleared (%s)\n", data->tag);
		DbgFree(data->tag);
		DbgFree(data);
	}

	EINA_LIST_FREE(client->event_deactivate_list, event) {
		DbgFree(event);
	}

	EINA_LIST_FREE(client->subscribe_list, item) {
		DbgFree(item->cluster);
		DbgFree(item->category);
		DbgFree(item);
	}

	if (client->paused)
		s_info.nr_of_paused_clients--;

	s_info.client_list = eina_list_remove(s_info.client_list, client);
	DbgFree(client);

	/*!
	 * \note
	 * If there is any changes of clients,
	 * We should check the pause/resume states again.
	 */
	xmonitor_handle_state_changes();
}

static inline struct client_node *create_client_data(pid_t pid)
{
	struct client_node *client;

	client = calloc(1, sizeof(*client));
	if (!client) {
		ErrPrint("Heap: %s\n", strerror(errno));
		return NULL;
	}

	client->pid = pid;
	client->refcnt = 1;

	s_info.client_list = eina_list_append(s_info.client_list, client);
	return client;
}

static Eina_Bool created_cb(void *data)
{
	invoke_global_create_cb(data);
	return ECORE_CALLBACK_CANCEL;
}

HAPI struct client_node *client_create(pid_t pid, int handle)
{
	struct client_node *client;
	int ret;

	client = client_find_by_pid(pid);
	if (client) {
		ErrPrint("Client %d is already exists\n", pid);
		return client;
	}

	client = create_client_data(pid);
	if (!client) {
		ErrPrint("Failed to create a new client (%d)\n", pid);
		return NULL;
	}

	ret = client_rpc_init(client, handle);
	if (ret < 0) {
		client = client_unref(client);
		ErrPrint("Failed to initialize the RPC for %d, Destroy client data %p(has to be 0x0)\n", pid, client);
	} else {
		if (ecore_timer_add(DELAY_TIME, created_cb, client) == NULL) {
			ErrPrint("Failed to add a timer for client created event\n");
			client = client_unref(client);
			return NULL;
		}

		xmonitor_update_state(pid);
	}

	return client;
}

HAPI int client_destroy(struct client_node *client)
{
	client_unref(client);
	return 0;
}

HAPI struct client_node *client_ref(struct client_node *client)
{
	if (!client)
		return NULL;

	client->refcnt++;
	return client;
}

HAPI struct client_node *client_unref(struct client_node *client)
{
	if (!client)
		return NULL;

	if (client->refcnt == 0) {
		ErrPrint("Client refcnt is not managed correctly\n");
		return NULL;
	}

	client->refcnt--;
	if (client->refcnt == 0) {
		destroy_client_data(client);
		client = NULL;
	}

	return client;
}

HAPI const int const client_refcnt(const struct client_node *client)
{
	return client->refcnt;
}

HAPI const pid_t const client_pid(const struct client_node *client)
{
	return client ? client->pid : (pid_t)-1;
}

HAPI struct client_node *client_find_by_pid(pid_t pid)
{
	Eina_List *l;
	struct client_node *client;

	EINA_LIST_FOREACH(s_info.client_list, l, client) {
		if (client->pid == pid)
			return client;
	}

	return NULL;
}

HAPI struct client_node *client_find_by_rpc_handle(int handle)
{
	Eina_List *l;
	struct client_node *client;

	if (handle <= 0) {
		ErrPrint("Invalid handle %d\n", handle);
		return NULL;
	}

	EINA_LIST_FOREACH(s_info.client_list, l, client) {
		if (client_rpc_handle(client) == handle)
			return client;
	}

	return NULL;
}

HAPI const int const client_count_paused(void)
{
	return s_info.nr_of_paused_clients;
}

HAPI int client_is_all_paused(void)
{
	DbgPrint("%d, %d\n", eina_list_count(s_info.client_list), s_info.nr_of_paused_clients);
	return eina_list_count(s_info.client_list) == s_info.nr_of_paused_clients;
}

HAPI int client_count(void)
{
	return eina_list_count(s_info.client_list);
}

static inline void invoke_deactivated_cb(struct client_node *client)
{
	struct event_item *item;
	Eina_List *l;
	Eina_List *n;
	int ret;

	client_ref(client); /*!< Prevent deleting from callback */
	EINA_LIST_FOREACH_SAFE(client->event_deactivate_list, l, n, item) {
		ret = item->cb(client, item->data);
		if (ret < 0) {
			if (eina_list_data_find(client->event_deactivate_list, item)) {
				client->event_deactivate_list = eina_list_remove(client->event_deactivate_list, item);
				DbgFree(item);
			}
		}
	}
	client_unref(client);
}

HAPI int client_deactivated_by_fault(struct client_node *client)
{
	if (!client || client->faulted)
		return 0;

	DbgPrint("Client[%p] is faulted(%d), pid(%d)\n", client, client->refcnt, client->pid);
	client->faulted = 1;

	DbgPrint("Reset PID (%d)\n", client->pid);
	client->pid = (pid_t)-1;

	invoke_deactivated_cb(client);
	client_destroy(client);
	/*!
	 * \todo
	 * Who invokes this function has to care the reference counter of a client
	 * do I need to invoke the deactivated callback from here?
	 * client->pid = (pid_t)-1;
	 * slave_unref(client)
	 */
	return 0;
}

HAPI const int const client_is_faulted(const struct client_node *client)
{
	/*!
	 * \note
	 * If the "client" is NIL, I assume that it is fault so returns TRUE(1)
	 */
	return client ? client->faulted : 1;
}

HAPI void client_reset_fault(struct client_node *client)
{
	if (client)
		client->faulted = 0;
}

HAPI int client_event_callback_add(struct client_node *client, enum client_event event, int (*cb)(struct client_node *, void *), void *data)
{
	struct event_item *item;

	if (!cb) {
		ErrPrint("Invalid callback (cb == NULL)\n");
		return -EINVAL;
	}

	item = calloc(1, sizeof(*item));
	if (!item) {
		ErrPrint("Heap: %s\n", strerror(errno));
		return -ENOMEM;
	}

	item->cb = cb;
	item->data = data;

	/*!
	 * \note
	 * Use the eina_list_prepend API.
	 * To keep the sequence of a callback invocation.
	 *
	 * Here is an example sequence.
	 *
	 * client_event_callback_add(CALLBACK_01);
	 * client_event_callback_add(CALLBACK_02);
	 * client_event_callback_add(CALLBACK_03);
	 *
	 * Then the invoke_event_callback function will call the CALLBACKS as below sequence
	 *
	 * invoke_CALLBACK_03
	 * invoke_CALLBACK_02
	 * invoke_CALLBACK_01
	 */

	switch (event) {
	case CLIENT_EVENT_DEACTIVATE:
		client->event_deactivate_list = eina_list_prepend(client->event_deactivate_list, item);
		break;
	case CLIENT_EVENT_DESTROY:
		client->event_destroy_list = eina_list_prepend(client->event_destroy_list, item);
		break;
	default:
		DbgFree(item);
		return -EINVAL;
	}

	return 0;
}

HAPI int client_event_callback_del(struct client_node *client, enum client_event event, int (*cb)(struct client_node *, void *), void *data)
{
	struct event_item *item;
	Eina_List *l;
	Eina_List *n;

	if (!cb) {
		ErrPrint("Invalid callback (cb == NULL)\n");
		return -EINVAL;
	}

	switch (event) {
	case CLIENT_EVENT_DEACTIVATE:
		EINA_LIST_FOREACH_SAFE(client->event_deactivate_list, l, n, item) {
			if (item->cb == cb && item->data == data) {
				client->event_deactivate_list = eina_list_remove(client->event_deactivate_list, item);
				DbgFree(item);
				return 0;
			}
		}
		break;

	case CLIENT_EVENT_DESTROY:
		EINA_LIST_FOREACH_SAFE(client->event_destroy_list, l, n, item) {
			if (item->cb == cb && item->data == data) {
				client->event_destroy_list = eina_list_remove(client->event_destroy_list, item);
				DbgFree(item);
				return 0;
			}
		}
		break;

	default:
		ErrPrint("Invalid event\n");
		break;
	}

	return -ENOENT;
}

HAPI int client_set_data(struct client_node *client, const char *tag, void *data)
{
	struct data_item *item;

	item = calloc(1, sizeof(*item));
	if (!item) {
		ErrPrint("Heap: %s\n", strerror(errno));
		return -ENOMEM;
	}

	item->tag = strdup(tag);
	if (!item->tag) {
		ErrPrint("Heap: %s\n", strerror(errno));
		DbgFree(item);
		return -ENOMEM;
	}

	item->data = data;

	client->data_list = eina_list_append(client->data_list, item);
	return 0;
}

HAPI void *client_data(struct client_node *client, const char *tag)
{
	Eina_List *l;
	struct data_item *item;

	EINA_LIST_FOREACH(client->data_list, l, item) {
		if (!strcmp(item->tag, tag))
			return item->data;
	}

	return NULL;
}

HAPI void *client_del_data(struct client_node *client, const char *tag)
{
	Eina_List *l;
	Eina_List *n;
	struct data_item *item;

	EINA_LIST_FOREACH_SAFE(client->data_list, l, n, item) {
		if (!strcmp(item->tag, tag)) {
			void *data;
			client->data_list = eina_list_remove(client->data_list, item);
			data = item->data;
			DbgFree(item->tag);
			DbgFree(item);
			return data;
		}
	}

	return NULL;
}

HAPI void client_paused(struct client_node *client)
{
	if (client->paused)
		return;

	client->paused = 1;
	s_info.nr_of_paused_clients++;
}

HAPI void client_resumed(struct client_node *client)
{
	if (client->paused == 0)
		return;

	client->paused = 0;
	s_info.nr_of_paused_clients--;
}

HAPI int client_init(void)
{
	return 0;
}

HAPI int client_fini(void)
{
	struct global_event_handler *handler;
	struct client_node *client;
	Eina_List *l;
	Eina_List *n;

	EINA_LIST_FOREACH_SAFE(s_info.client_list, l, n, client) {
		client_destroy(client);
	}

	EINA_LIST_FREE(s_info.create_event_list, handler) {
		DbgFree(handler);
	}

	EINA_LIST_FREE(s_info.destroy_event_list, handler) {
		DbgFree(handler);
	}

	return 0;
}

HAPI const int const client_is_activated(const struct client_node *client)
{
	return client ? (client->pid != (pid_t)-1) : 1;
}

HAPI int client_global_event_handler_add(enum client_global_event event_type, int (*cb)(struct client_node *client, void *data), void *data)
{
	struct global_event_handler *handler;

	handler = malloc(sizeof(*handler));
	if (!handler) {
		ErrPrint("Heap: %s\n", strerror(errno));
		return -ENOMEM;
	}

	handler->cbdata = data;
	handler->cb = cb;

	switch (event_type) {
	case CLIENT_GLOBAL_EVENT_CREATE:
		s_info.create_event_list = eina_list_prepend(s_info.create_event_list, handler);
		break;
	case CLIENT_GLOBAL_EVENT_DESTROY:
		s_info.destroy_event_list = eina_list_prepend(s_info.destroy_event_list, handler);
		break;
	default:
		DbgFree(handler);
		return -EINVAL;
	}

	return 0;
}

HAPI int client_global_event_handler_del(enum client_global_event event_type, int (*cb)(struct client_node *, void *), void *data)
{
	Eina_List *l;
	Eina_List *n;
	struct global_event_handler *handler;

	switch (event_type) {
	case CLIENT_GLOBAL_EVENT_CREATE:
		EINA_LIST_FOREACH_SAFE(s_info.create_event_list, l, n, handler) {
			if (handler->cb == cb && handler->cbdata == data) {
				s_info.create_event_list = eina_list_remove(s_info.create_event_list, handler);
				DbgFree(handler);
				return 0;
			}
		}
		break;
	case CLIENT_GLOBAL_EVENT_DESTROY:
		EINA_LIST_FOREACH_SAFE(s_info.destroy_event_list, l, n, handler) {
			if (handler->cb == cb && handler->cbdata == data) {
				s_info.destroy_event_list = eina_list_remove(s_info.destroy_event_list, handler);
				DbgFree(handler);
				return 0;
			}
		}
		break;
	default:
		break;
	}

	return -ENOENT;
}

HAPI int client_subscribe(struct client_node *client, const char *cluster, const char *category)
{
	struct subscribe_item *item;

	item = malloc(sizeof(*item));
	if (!item) {
		ErrPrint("Heap: %s\n", strerror(errno));
		return -ENOMEM;
	}

	item->cluster = strdup(cluster);
	if (!item->cluster) {
		ErrPrint("Heap: %s\n", strerror(errno));
		DbgFree(item);
		return -ENOMEM;
	}

	item->category = strdup(category);
	if (!item->category) {
		ErrPrint("Heap: %s\n", strerror(errno));
		DbgFree(item->cluster);
		DbgFree(item);
		return -ENOMEM;
	}

	client->subscribe_list = eina_list_append(client->subscribe_list, item);
	return 0;
}

HAPI int client_unsubscribe(struct client_node *client, const char *cluster, const char *category)
{
	struct subscribe_item *item;
	Eina_List *l;
	Eina_List *n;

	EINA_LIST_FOREACH_SAFE(client->subscribe_list, l, n, item) {
		if (!strcasecmp(cluster, item->cluster) && !strcasecmp(category, item->category)) {
			client->subscribe_list = eina_list_remove(client->subscribe_list, item);
			DbgFree(item->cluster);
			DbgFree(item->category);
			DbgFree(item);
			return 0;
		}
	}

	return -ENOENT;
}

HAPI int client_is_subscribed(struct client_node *client, const char *cluster, const char *category)
{
	struct subscribe_item *item;
	Eina_List *l;

	EINA_LIST_FOREACH(client->subscribe_list, l, item) {
		if (!strcmp(item->cluster, "*"))
			return 1;

		if (strcasecmp(item->cluster, cluster))
			continue;

		if (!strcmp(item->category, "*"))
			return 1;

		if (!strcasecmp(item->category, category))
			return 1;
	}

	return 0;
}

HAPI int client_browse_list(const char *cluster, const char *category, int (*cb)(struct client_node *client, void *data), void *data)
{
	Eina_List *l;
	struct client_node *client;
	int cnt;

	cnt = 0;
	EINA_LIST_FOREACH(s_info.client_list, l, client) {
		if (!client_is_subscribed(client, cluster, category))
			continue;

		if (cb) {
			if (cb(client, data) < 0)
				return -ECANCELED;
		}
		cnt++;
	}

	return cnt;
}

HAPI int client_nr_of_subscriber(const char *cluster, const char *category)
{
	Eina_List *l;
	struct client_node *client;
	int cnt;

	cnt = 0;
	EINA_LIST_FOREACH(s_info.client_list, l, client) {
		cnt += !!client_is_subscribed(client, cluster, category);
	}

	return cnt;
}

HAPI int client_broadcast(struct inst_info *inst, struct packet *packet)
{
	Eina_List *l;
	Eina_List *list;
	struct client_node *client;

	list = inst ? instance_client_list(inst) : s_info.client_list;
	EINA_LIST_FOREACH(list, l, client) {
		if (client_pid(client) < 0) {
			ErrPrint("Client[%p] has PID[%d]\n", client, client_pid(client));
			continue;
		}

		(void)client_rpc_async_request(client, packet_ref(packet));
	}

	packet_unref(packet);
	return 0;
}

/* End of a file */