tizen 2.4 release
[framework/uifw/elementary.git] / src / examples / efl_thread_2.c
1 //Compile with:
2 //gcc -o efl_thread_2 efl_thread_2.c -g `pkg-config --cflags --libs elementary`
3 #include <Elementary.h>
4 #include <pthread.h>
5
6 static Evas_Object *win = NULL;
7 static Evas_Object *rect = NULL;
8
9 struct info
10 {
11    double x, y;
12 };
13
14 static void *my_thread_mainloop_code(void *data);
15
16 static pthread_t thread_id;
17
18 // BEGIN - code running in my custom pthread instance
19 //
20 static void *
21 my_thread_run(void *arg)
22 {
23    double t = 0.0;
24
25    for (;;)
26      {
27         struct info *inf = malloc(sizeof(struct info));
28
29         if (inf)
30           {
31              inf->x = 200 + (200 * sin(t));
32              inf->y = 200 + (200 * cos(t));
33              ecore_main_loop_thread_safe_call_sync
34                 (my_thread_mainloop_code, inf);
35           }
36         // and sleep and loop
37         usleep(1000);
38         t += 0.02;
39      }
40    return NULL;
41 }
42 //
43 // END - code running in my custom pthread instance
44 static void
45 my_thread_new(void)
46 {
47    pthread_attr_t attr;
48
49    if (pthread_attr_init(&attr) != 0)
50      perror("pthread_attr_init");
51    if (pthread_create(&thread_id, &attr, my_thread_run, NULL) != 0)
52      perror("pthread_create");
53 }
54
55 static void *
56 my_thread_mainloop_code(void *data)
57 {
58    struct info *inf = data;
59    evas_object_move(rect, inf->x - 50, inf->y - 50);
60    free(inf);
61    return NULL;
62 }
63
64 // on window delete - cancel thread then delete window and exit mainloop
65 static void
66 del(void *data, Evas_Object *obj, void *event_info)
67 {
68    exit(0);
69 }
70
71 EAPI_MAIN int
72 elm_main(int argc, char **argv)
73 {
74    Evas_Object *o;
75
76    win = elm_win_util_standard_add("efl-thread-2", "EFL Thread 2");
77    evas_object_smart_callback_add(win, "delete,request", del, NULL);
78
79    o = evas_object_rectangle_add(evas_object_evas_get(win));
80    evas_object_color_set(o, 50, 80, 180, 255);
81    evas_object_resize(o, 100, 100);
82    evas_object_show(o);
83    rect = o;
84
85    // create custom thread to do some "work on the side"
86    my_thread_new();
87
88    evas_object_resize(win, 400, 400);
89    evas_object_show(win);
90
91    elm_run();
92
93    return 0;
94 }
95 ELM_MAIN()