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
|
#include "helper.h"
typedef struct {
char txt[32];
int idx;
} Input;
static int free_called = 0;
static Input* input_create(char *txt)
{
Input *input = (Input*)malloc(sizeof(Input));
strncpy(input->txt,txt,32);
input->txt[31] = '\0';
input->idx = 0;
return input;
}
static void input_free(Input *input)
{
EINA_LOG_DOM_DBG(_eiotas_log_dom,"free Input\n");
free(input);
free_called = 1;
}
static void input_show(Input *input)
{
EINA_LOG_DOM_DBG(_eiotas_log_dom,"Input [%d] %s\n",input->idx,input->txt);
}
static void input_receive(const Eiotas_Door *door, Eiotas_Particle *particle, Eiotas_User_Data *data)
{
EINA_LOG_DOM_DBG(_eiotas_log_dom,"input_receive 0x%X\n",PRINTPTR(data));
}
void test_user_door()
{
Eiotas_Spin *dom0 = eiotas_spin_add("dom0",10);
Input *input = input_create("hello world");
input_show(input);
Eiotas_User_Bits user_bits;
user_bits.data = input;
user_bits.free_fct = (Eiotas_User_Data_Free)&input_free;
user_bits.recv_fct = (Eiotas_Receive_Particle)&input_receive;
Eiotas_Door *din0 = eiotas_door_add("input0",&dom0->room,&user_bits);
eiotas_iota_show(&din0->iota); // eiotas_iota_show((Eiotas_Iota*)din0);
eiotas_spin_free(dom0);
check_cond((free_called==1),"input_free not called");
}
|