aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eina/src/examples/eina_inlist_03.c
blob: a39a78490d80ddba2dc568edaecc49480fd39dcd (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
// Compile with:
// gcc -g `pkg-config --cflags --libs eina` eina_inlist_01.c -o eina_inlist_01
#include <Eina.h>
#include <stdio.h>

struct my_struct {
     EINA_INLIST;
     Eina_Inlist even;
     int a, b;
};

#define EVEN_INLIST_GET(Inlist) (& ((Inlist)->even))

#define EVEN_INLIST_CONTAINER_GET(ptr, type) \
   ((type *)((char *)ptr - offsetof(type, even)))

int
main(void)
{
   struct my_struct *d, *cur;
   int i;

   Eina_Inlist *list = NULL, *list_even = NULL, *itr;

   eina_init();

   for (i = 0; i < 100; i++)
     {
	d = malloc(sizeof(*d));
	d->a = i;
	d->b = i * 10;
	list = eina_inlist_append(list, EINA_INLIST_GET(d));
	if ((i % 2) == 0)
	  list_even = eina_inlist_prepend(list_even, EVEN_INLIST_GET(d));
     }

   printf("list=%p\n", list);
   EINA_INLIST_FOREACH(list, cur)
     printf("\ta=%d, b=%d\n", cur->a, cur->b);

   printf("list_even=%p\n", list_even);
   for (itr = list_even; itr != NULL; itr = itr->next)
     {
	cur = EVEN_INLIST_CONTAINER_GET(itr, struct my_struct);
	printf("\ta=%d, b=%d\n", cur->a, cur->b);
     }

   printf("list count=%d\n", eina_inlist_count(list));
   printf("list_even count=%d\n\n", eina_inlist_count(list_even));

   itr = list_even;
   while (itr)
     {
	Eina_Inlist *next = itr->next;
	cur = EVEN_INLIST_CONTAINER_GET(itr, struct my_struct);
	if ((cur->a % 3) == 0)
	  list_even = eina_inlist_remove(list_even, itr);
	itr = next;
     }
   printf("list count=%d\n", eina_inlist_count(list));
   printf("list_even count=%d\n\n", eina_inlist_count(list_even));

   while (list)
     {
        Eina_Inlist *aux = list;
        list = eina_inlist_remove(list, list);
        free(aux);
     }

   eina_shutdown();

   return 0;
}