diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-21 16:07:11 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-21 16:07:11 +0200 |
commit | 98ecb28cf361b021af8d2b502b0e2b567fb7e817 (patch) | |
tree | c7885673f2ef4f09b07c4a5e680602b743a8918e /tests | |
parent | 5ff0441b18582d072e2b6b82b75fbd41e3a26bee (diff) | |
download | edoors-98ecb28cf361b021af8d2b502b0e2b567fb7e817.zip edoors-98ecb28cf361b021af8d2b502b0e2b567fb7e817.tar.gz |
add tests/main.c
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.c | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/tests/main.c b/tests/main.c new file mode 100644 index 0000000..c4731e5 --- /dev/null +++ b/tests/main.c @@ -0,0 +1,86 @@ +#include "Eiotas.h" + +#include <eina_log.h> +#include <stdio.h> + +typedef struct { + char txt[32]; + int idx; +} Input; + +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); +} + +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",data); +} + +int main(int argc, char **argv) +{ + int i; + Eiotas_Particle *p0, *p1, *p2, *p3; + + if(eiotas_init()>0) { + return EXIT_FAILURE; + } + eina_log_domain_level_set("eiotas",EINA_LOG_LEVEL_DBG); + EINA_LOG_DOM_DBG(_eiotas_log_dom,"Eiotas version %d.%d.%d",eiotas_version->major,eiotas_version->minor,eiotas_version->micro); + + Eiotas_Spin *dom0 = eiotas_spin_add("dom0",10); + /* eiotas_iota_show((Eiotas_Iota*)dom0); */ + + /* Eiotas_Room *room = &dom0->room; */ + /* char name[8]; */ + /* for(i=0; i<5; i++) { */ + /* sprintf(name,"room%d",i); */ + /* Eiotas_Room *tmp = eiotas_room_add(name,room); */ + /* if(tmp!=NULL) { */ + /* room = tmp; */ + /* eiotas_iota_show((Eiotas_Iota*)room); // MACROS */ + /* } */ + /* } */ + /* room = eiotas_room_add("room0",&dom0->room); */ + + /* 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); */ + + /* p0 = eiotas_iota_require_particle((Eiotas_Iota*)din0); */ + /* p1 = eiotas_iota_require_particle((Eiotas_Iota*)din0); */ + /* p2 = eiotas_iota_require_particle((Eiotas_Iota*)din0); */ + /* p3 = eiotas_iota_require_particle((Eiotas_Iota*)din0); */ + + /* eiotas_iota_release_particle((Eiotas_Iota*)din0,p0); */ + /* eiotas_iota_release_particle((Eiotas_Iota*)din0,p1); */ + /* eiotas_spin_send_particle(din0->iota.spin,p2,EINA_FALSE); */ + /* eiotas_spin_send_particle(din0->iota.spin,p3,EINA_TRUE); */ + + /* eiotas_spin_free(dom0); */ + + return eiotas_shutdown(); +} |