Tizen Native API
Eina_Inlist advanced usage - lists and inlists

This example describes the usage of Eina_Inlist mixed with Eina_List . We create and add elements to an inlist, and the even members are also added to a normal list. Later we remove the elements divisible by 3 from this normal list.

The struct that is going to be used is the same used in Eina_Inlist basic usage , since we still need the EINA_INLIST macro to declare the inlist node info:

The resulting node representing this struct can be exemplified by the following picture:

eina_inlist-node_eg2-my-struct.png

Now we need some pointers and auxiliar variables that will help us iterate on the lists:

Allocating 100 elements and putting them into an inlist, and the even elements also go to the normal list:

After this point, what we have are two distinct lists that share some elements. The first list (inlist) is defined by the pointers inside the elements data structure, while the second list (normal list) has its own node data structure that is kept outside of the elements.

The two lists, sharing some elements, can be represented by the following picture:

Accessing both lists is done normally, as if they didn't have any elements in common:

We can remove elements from the normal list, but we just don't free them because they are still stored in the inlist:

To finish this example, we want to free both lists, we can't just free all elements on the second list (normal list) because they are still being used in the inlist. So we first discard the normal list without freeing its elements, then we free all elements in the inlist (that contains all elements allocated until now):

Here is the full source code for this example: eina_inlist_02.c Eina_Inlist advanced usage - lists and inlists source