edi/src/bin/edi_build_main.c

175 lines
4.1 KiB
C

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/* NOTE: Respecting header order is important for portability.
* Always put system first, then EFL, then your public header,
* and finally your private one. */
#include <Ecore_Getopt.h>
#include <Eio.h>
#include "Edi.h"
#include "edi_private.h"
#define COPYRIGHT "Copyright © 2014 Andy Williams <andy@andyilliams.me> and various contributors (see AUTHORS)."
static int _exit_code;
static Eina_Bool
_exe_data(void *d EINA_UNUSED, int t EINA_UNUSED, void *event_info)
{
Ecore_Exe_Event_Data *ev;
Ecore_Exe_Event_Data_Line *el;
ev = event_info;
for (el = ev->lines; el && el->line; el++)
fprintf(stdout, "%s\n", el->line);
return ECORE_CALLBACK_RENEW;
}
static Eina_Bool
_exe_del(void *d EINA_UNUSED, int t EINA_UNUSED, void *event_info EINA_UNUSED)
{
ecore_main_loop_quit();
return ECORE_CALLBACK_DONE;
}
static const Ecore_Getopt optdesc = {
"edi_build",
"%prog [options] [build|clean|create|test]",
PACKAGE_VERSION,
COPYRIGHT,
"BSD with advertisement clause",
"The EFL IDE builder",
EINA_TRUE,
{
ECORE_GETOPT_LICENSE('L', "license"),
ECORE_GETOPT_COPYRIGHT('C', "copyright"),
ECORE_GETOPT_VERSION('V', "version"),
ECORE_GETOPT_HELP('h', "help"),
ECORE_GETOPT_SENTINEL
}
};
static void
_edi_build_create_done_cb(const char *path, Eina_Bool success)
{
if (success)
fprintf(stdout, "Project created at path %s\n", path);
else
{
fprintf(stderr, "Unable to create project at path %s\n", path);
_exit_code = EXIT_FAILURE;
}
ecore_main_loop_quit();
elm_shutdown();
}
static void
_edi_build_create_start(int argc, int arg0, char **argv)
{
elm_init(argc, argv);
edi_create_efl_project(argv[arg0+1], argv[arg0+2], argv[arg0+3], argv[arg0+4], argv[arg0+5],
_edi_build_create_done_cb);
}
EAPI_MAIN int
main(int argc, char **argv)
{
int args;
char path[PATH_MAX], *build_type = NULL;
Eina_Bool quit_option = EINA_FALSE;
Ecore_Getopt_Value values[] = {
ECORE_GETOPT_VALUE_BOOL(quit_option),
ECORE_GETOPT_VALUE_BOOL(quit_option),
ECORE_GETOPT_VALUE_BOOL(quit_option),
ECORE_GETOPT_VALUE_BOOL(quit_option),
ECORE_GETOPT_VALUE_NONE
};
#if ENABLE_NLS
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
bind_textdomain_codeset(PACKAGE, "UTF-8");
textdomain(PACKAGE);
#endif
_exit_code = EXIT_SUCCESS;
if (!ecore_init())
goto exit;
edi_init();
args = ecore_getopt_parse(&optdesc, values, argc, argv);
if (args < 0)
{
EINA_LOG_CRIT("Could not parse arguments.");
goto end;
}
else if (quit_option)
{
goto end;
}
getcwd(path, PATH_MAX);
edi_project_set(path);
if (!edi_builder_can_build())
{
fprintf(stderr, "Cowardly refusing to build unknown project type.\n");
ecore_shutdown();
goto exit;
}
if (args < argc)
build_type = argv[args];
if (!build_type)
build_type = "build";
if (!strncmp("create", build_type, 6))
{
if (argc - args != 6)
{
fprintf(stderr, "create requires 5 additional parameters:\n");
fprintf(stderr, " parent_path, project_name, project_url, creator_name, creator_email\n");
goto end;
}
_edi_build_create_start(argc, args, argv);
ecore_main_loop_begin();
goto end;
}
ecore_event_handler_add(ECORE_EXE_EVENT_DATA, _exe_data, NULL);
ecore_event_handler_add(ECORE_EXE_EVENT_ERROR, _exe_data, NULL);
ecore_event_handler_add(ECORE_EXE_EVENT_DEL, _exe_del, NULL);
if (!strncmp("clean", build_type, 5))
edi_builder_clean();
else if (!strncmp("test", build_type, 4))
edi_builder_test();
else if (!strncmp("build", build_type, 5))
edi_builder_build();
else
{
fprintf(stderr, "Unrecognised build type - try build, clean, create or test.\n");
goto end;
}
ecore_main_loop_begin();
end:
edi_shutdown();
ecore_shutdown();
return _exit_code;
exit:
return EXIT_FAILURE;
}