ecore: remove use of efl_main_loop_get from efl_io_queue_example.

This commit is contained in:
Cedric BAIL 2018-01-08 15:55:17 -08:00
parent e38a5b1234
commit a0e81d1276
1 changed files with 39 additions and 37 deletions

View File

@ -1,10 +1,6 @@
#define EFL_BETA_API_SUPPORT 1 #include <Efl_Net.h>
#define EFL_EO_API_SUPPORT 1
#include <Ecore.h>
#include <Ecore_Getopt.h> #include <Ecore_Getopt.h>
#include <Ecore_Con.h>
static int retval = EXIT_SUCCESS;
static Eina_List *waiting = NULL; static Eina_List *waiting = NULL;
static Eina_List *commands = NULL; static Eina_List *commands = NULL;
static Eina_Slice line_delimiter; static Eina_Slice line_delimiter;
@ -87,7 +83,7 @@ _copier_done(void *data EINA_UNUSED, const Efl_Event *event)
waiting = eina_list_remove(waiting, event->object); waiting = eina_list_remove(waiting, event->object);
if (!waiting) if (!waiting)
ecore_main_loop_quit(); efl_loop_quit(efl_loop_get(event->object), EINA_VALUE_EMPTY);
} }
static void static void
@ -96,8 +92,8 @@ _copier_error(void *data EINA_UNUSED, const Efl_Event *event)
const Eina_Error *perr = event->info; const Eina_Error *perr = event->info;
fprintf(stderr, "INFO: %s error: #%d '%s'\n", fprintf(stderr, "INFO: %s error: #%d '%s'\n",
efl_name_get(event->object), *perr, eina_error_msg_get(*perr)); efl_name_get(event->object), *perr, eina_error_msg_get(*perr));
retval = EXIT_FAILURE;
ecore_main_loop_quit(); efl_loop_quit(efl_loop_get(event->object), eina_value_int_init(EXIT_FAILURE));
} }
EFL_CALLBACKS_ARRAY_DEFINE(copier_cbs, EFL_CALLBACKS_ARRAY_DEFINE(copier_cbs,
@ -171,8 +167,34 @@ static const Ecore_Getopt options = {
} }
}; };
int EAPI_MAIN void
main(int argc, char **argv) efl_pause(void *data EINA_UNUSED,
const Efl_Event *ev EINA_UNUSED)
{
}
EAPI_MAIN void
efl_resume(void *data EINA_UNUSED,
const Efl_Event *ev EINA_UNUSED)
{
}
EAPI_MAIN void
efl_terminate(void *data EINA_UNUSED,
const Efl_Event *ev EINA_UNUSED)
{
if (waiting)
{
fprintf(stderr, "ERROR: %d operations were waiting!\n",
eina_list_count(waiting));
eina_list_free(waiting);
waiting = NULL;
}
}
EAPI_MAIN void
efl_main(void *data EINA_UNUSED,
const Efl_Event *ev)
{ {
char *address = NULL; char *address = NULL;
char *line_delimiter_str = NULL; char *line_delimiter_str = NULL;
@ -199,24 +221,19 @@ main(int argc, char **argv)
int args; int args;
Eo *dialer, *sender, *receiver, *loop; Eo *dialer, *sender, *receiver, *loop;
ecore_init(); args = ecore_getopt_parse(&options, values, 0, NULL);
ecore_con_init();
args = ecore_getopt_parse(&options, values, argc, argv);
if (args < 0) if (args < 0)
{ {
fputs("ERROR: Could not parse command line options.\n", stderr); fputs("ERROR: Could not parse command line options.\n", stderr);
retval = EXIT_FAILURE;
goto end; goto end;
} }
if (quit_option) goto end; if (quit_option) goto end;
args = ecore_getopt_parse_positional(&options, values, argc, argv, args); args = ecore_getopt_parse_positional(&options, values, 0, NULL, args);
if (args < 0) if (args < 0)
{ {
fputs("ERROR: Could not parse positional arguments.\n", stderr); fputs("ERROR: Could not parse positional arguments.\n", stderr);
retval = EXIT_FAILURE;
goto end; goto end;
} }
@ -225,7 +242,6 @@ main(int argc, char **argv)
if (!commands) if (!commands)
{ {
fputs("ERROR: missing commands to send.\n", stderr); fputs("ERROR: missing commands to send.\n", stderr);
retval = EXIT_FAILURE;
goto end; goto end;
} }
@ -248,7 +264,6 @@ main(int argc, char **argv)
if (!send_queue) if (!send_queue)
{ {
fprintf(stderr, "ERROR: could not create Efl_Io_Queue (send)\n"); fprintf(stderr, "ERROR: could not create Efl_Io_Queue (send)\n");
retval = EXIT_FAILURE;
goto end; goto end;
} }
@ -271,7 +286,6 @@ main(int argc, char **argv)
if (!receive_queue) if (!receive_queue)
{ {
fprintf(stderr, "ERROR: could not create Efl_Io_Queue (receive)\n"); fprintf(stderr, "ERROR: could not create Efl_Io_Queue (receive)\n");
retval = EXIT_FAILURE;
goto error_receive_queue; goto error_receive_queue;
} }
@ -285,7 +299,7 @@ main(int argc, char **argv)
* depend on main loop, thus their parent must be a loop * depend on main loop, thus their parent must be a loop
* provider. We use the loop itself. * provider. We use the loop itself.
*/ */
loop = efl_main_loop_get(); loop = ev->object;
/* The TCP client to use to send/receive network data */ /* The TCP client to use to send/receive network data */
dialer = efl_add(EFL_NET_DIALER_TCP_CLASS, loop, dialer = efl_add(EFL_NET_DIALER_TCP_CLASS, loop,
@ -294,7 +308,6 @@ main(int argc, char **argv)
if (!dialer) if (!dialer)
{ {
fprintf(stderr, "ERROR: could not create Efl_Net_Dialer_Tcp\n"); fprintf(stderr, "ERROR: could not create Efl_Net_Dialer_Tcp\n");
retval = EXIT_FAILURE;
goto error_dialer; goto error_dialer;
} }
@ -308,7 +321,6 @@ main(int argc, char **argv)
if (!sender) if (!sender)
{ {
fprintf(stderr, "ERROR: could not create Efl_Io_Copier (sender)\n"); fprintf(stderr, "ERROR: could not create Efl_Io_Copier (sender)\n");
retval = EXIT_FAILURE;
goto error_sender; goto error_sender;
} }
@ -322,7 +334,6 @@ main(int argc, char **argv)
if (!receiver) if (!receiver)
{ {
fprintf(stderr, "ERROR: could not create Efl_Io_Copier (receiver)\n"); fprintf(stderr, "ERROR: could not create Efl_Io_Copier (receiver)\n");
retval = EXIT_FAILURE;
goto error_receiver; goto error_receiver;
} }
@ -337,15 +348,7 @@ main(int argc, char **argv)
waiting = eina_list_append(waiting, sender); waiting = eina_list_append(waiting, sender);
waiting = eina_list_append(waiting, receiver); waiting = eina_list_append(waiting, receiver);
ecore_main_loop_begin(); return ;
if (waiting)
{
fprintf(stderr, "ERROR: %d operations were waiting!\n",
eina_list_count(waiting));
eina_list_free(waiting);
waiting = NULL;
}
error_dialing: error_dialing:
efl_io_closer_close(receiver); efl_io_closer_close(receiver);
@ -366,8 +369,7 @@ main(int argc, char **argv)
free(cmd); free(cmd);
} }
ecore_con_shutdown(); efl_loop_quit(efl_loop_get(ev->object), eina_value_int_init(EXIT_FAILURE));
ecore_shutdown();
return retval;
} }
EFL_MAIN_EX();