summaryrefslogtreecommitdiff
path: root/src/examples/eio/efl_io_manager_open.c
blob: 5c731c11861cadb7e82571cfa3d5ecdb48027826 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <stdio.h>

#include <Eina.h>
#include <Eio.h>
#include <Ecore.h>

static Eina_Value
_closing_cb(void* data EINA_UNUSED,
            const Eina_Value file,
            const Eina_Future *dead EINA_UNUSED)
{
   if (file.type == EINA_VALUE_TYPE_ERROR)
     {
        Eina_Error err;

        eina_value_get(&file, &err);
        fprintf(stderr, "Something has gone wrong: %s\n", eina_error_msg_get(err));
     }
   else
     {
        printf("%s closed file.\n", __FUNCTION__);
     }

   ecore_main_loop_quit();

   return file;
}

static Eina_Value
_open_cb(void *data,
         const Eina_Value file,
         const Eina_Future *dead EINA_UNUSED)
{
   Efl_Io_Manager *job = data;

   if (file.type == EINA_VALUE_TYPE_ERROR)
     {
        Eina_Error err;

        eina_value_get(&file, &err);
        fprintf(stderr, "Something has gone wrong: %s\n", eina_error_msg_get(err));
        ecore_main_loop_quit();

        return file;
     }
   if (file.type == EINA_VALUE_TYPE_FILE)
     {
        Eina_File *f;

        eina_value_get(&file, &f);

        printf("%s opened file %s\n", __FUNCTION__, eina_file_filename_get(f));

        return eina_future_as_value(efl_io_manager_close(job, f));
     }
   return file;
}

void open_file(const char *path)
{
   Efl_Io_Manager *job;

   job = efl_add(EFL_IO_MANAGER_CLASS, efl_main_loop_get());

   eina_future_chain(efl_io_manager_open(job, path, EINA_FALSE),
                     { .cb = _open_cb, .data = job },
                     { .cb = _closing_cb, .data = NULL });
}

int main(int argc, char const *argv[])
{
   const char *path;

   eio_init();
   ecore_init();

   path = getenv("HOME");

   if (argc > 1)
     path = argv[1];

   open_file(path);

   ecore_main_loop_begin();

   ecore_shutdown();
   eio_shutdown();
   return 0;
}