medit/tests/medit-app.c

522 lines
14 KiB
C

/* This file has been generated with opag 0.8.0. */
/*
* medit-app.c
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* See COPYING file that comes with this distribution.
*/
#include "medit-ui.h"
#include "THANKS.h"
#include <moo.h>
#include <gtk/gtk.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#if GTK_CHECK_VERSION(2,8,0) && defined(GDK_WINDOWING_X11)
#include <gdk/gdkx.h>
#define TIMESTAMP (gdk_x11_display_get_user_time (gdk_display_get_default ()))
#else
#define TIMESTAMP (0)
#endif
typedef enum {
MODE_SIMPLE,
MODE_PROJECT
} AppMode;
int _medit_parse_options (const char *const program_name,
const int argc,
char **const argv);
/********************************************************
* command line parsing code generated by Opag
* http://www.zero-based.org/software/opag/
*/
#ifndef STR_ERR_UNKNOWN_LONG_OPT
# define STR_ERR_UNKNOWN_LONG_OPT "%s: unrecognized option `--%s'\n"
#endif
#ifndef STR_ERR_LONG_OPT_AMBIGUOUS
# define STR_ERR_LONG_OPT_AMBIGUOUS "%s: option `--%s' is ambiguous\n"
#endif
#ifndef STR_ERR_MISSING_ARG_LONG
# define STR_ERR_MISSING_ARG_LONG "%s: option `--%s' requires an argument\n"
#endif
#ifndef STR_ERR_UNEXPEC_ARG_LONG
# define STR_ERR_UNEXPEC_ARG_LONG "%s: option `--%s' doesn't allow an argument\n"
#endif
#ifndef STR_ERR_UNKNOWN_SHORT_OPT
# define STR_ERR_UNKNOWN_SHORT_OPT "%s: unrecognized option `-%c'\n"
#endif
#ifndef STR_ERR_MISSING_ARG_SHORT
# define STR_ERR_MISSING_ARG_SHORT "%s: option `-%c' requires an argument\n"
#endif
#define STR_HELP_NEW_APP "\
-n, --new-app Run new instance of application\n"
#define STR_HELP_MODE "\
-m, --mode=[simple|project] Use specified mode\n"
#define STR_HELP_PROJECT "\
-p, --project=PROJECT Open project file PROJECT\n"
#define STR_HELP_LINE "\
-l, --line=LINE Open file and position cursor on line LINE\n"
#define STR_HELP_LOG "\
--log[=FILE] Show debug output or write it to FILE\n"
#define STR_HELP_VERSION "\
--version Display version information and exit\n"
#define STR_HELP_HELP "\
-h, --help Display this help text and exit\n"
#define STR_HELP "\
-n, --new-app Run new instance of application\n\
-m, --mode=[simple|project] Use specified mode\n\
-p, --project=PROJECT Open project file PROJECT\n\
-l, --line=LINE Open file and position cursor on line LINE\n\
--log[=FILE] Show debug output or write it to FILE\n\
--version Display version information and exit\n\
-h, --help Display this help text and exit\n"
/* Set to 1 if option --new-app (-n) has been specified. */
char _medit_opt_new_app;
/* Set to 1 if option --mode (-m) has been specified. */
char _medit_opt_mode;
/* Set to 1 if option --project (-p) has been specified. */
char _medit_opt_project;
/* Set to 1 if option --line (-l) has been specified. */
char _medit_opt_line;
/* Set to 1 if option --log has been specified. */
char _medit_opt_log;
/* Set to 1 if option --version has been specified. */
char _medit_opt_version;
/* Set to 1 if option --help (-h) has been specified. */
char _medit_opt_help;
/* Argument to option --mode (-m). */
const char *_medit_arg_mode;
/* Argument to option --project (-p), or a null pointer if no argument. */
const char *_medit_arg_project;
/* Argument to option --line (-l). */
const char *_medit_arg_line;
/* Argument to option --log, or a null pointer if no argument. */
const char *_medit_arg_log;
/* Parse command line options. Return index of first non-option argument,
or -1 if an error is encountered. */
int _medit_parse_options (const char *const program_name, const int argc, char **const argv)
{
static const char *const optstr__new_app = "new-app";
static const char *const optstr__mode = "mode";
static const char *const optstr__line = "line";
static const char *const optstr__version = "version";
static const char *const optstr__help = "help";
int i = 0;
_medit_opt_new_app = 0;
_medit_opt_mode = 0;
_medit_opt_project = 0;
_medit_opt_line = 0;
_medit_opt_log = 0;
_medit_opt_version = 0;
_medit_opt_help = 0;
_medit_arg_mode = 0;
_medit_arg_project = 0;
_medit_arg_line = 0;
_medit_arg_log = 0;
while (++i < argc)
{
const char *option = argv [i];
if (*option != '-')
return i;
else if (*++option == '\0')
return i;
else if (*option == '-')
{
const char *argument;
size_t option_len;
++option;
if ((argument = strchr (option, '=')) == option)
goto error_unknown_long_opt;
else if (argument == 0)
option_len = strlen (option);
else
option_len = argument++ - option;
switch (*option)
{
case '\0':
return i + 1;
case 'h':
if (strncmp (option + 1, optstr__help + 1, option_len - 1) == 0)
{
if (argument != 0)
{
option = optstr__help;
goto error_unexpec_arg_long;
}
_medit_opt_help = 1;
return i + 1;
}
goto error_unknown_long_opt;
case 'l':
if (strncmp (option + 1, optstr__line + 1, option_len - 1) == 0)
{
if (option_len <= 1)
goto error_long_opt_ambiguous;
if (argument != 0)
_medit_arg_line = argument;
else if (++i < argc)
_medit_arg_line = argv [i];
else
{
option = optstr__line;
goto error_missing_arg_long;
}
_medit_opt_line = 1;
break;
}
if (strncmp (option + 1, "og", option_len - 1) == 0)
{
if (option_len <= 1)
goto error_long_opt_ambiguous;
_medit_arg_log = argument;
_medit_opt_log = 1;
break;
}
goto error_unknown_long_opt;
case 'm':
if (strncmp (option + 1, optstr__mode + 1, option_len - 1) == 0)
{
if (argument != 0)
_medit_arg_mode = argument;
else if (++i < argc)
_medit_arg_mode = argv [i];
else
{
option = optstr__mode;
goto error_missing_arg_long;
}
_medit_opt_mode = 1;
break;
}
goto error_unknown_long_opt;
case 'n':
if (strncmp (option + 1, optstr__new_app + 1, option_len - 1) == 0)
{
if (argument != 0)
{
option = optstr__new_app;
goto error_unexpec_arg_long;
}
_medit_opt_new_app = 1;
break;
}
goto error_unknown_long_opt;
case 'p':
if (strncmp (option + 1, "roject", option_len - 1) == 0)
{
_medit_arg_project = argument;
_medit_opt_project = 1;
break;
}
goto error_unknown_long_opt;
case 'v':
if (strncmp (option + 1, optstr__version + 1, option_len - 1) == 0)
{
if (argument != 0)
{
option = optstr__version;
goto error_unexpec_arg_long;
}
_medit_opt_version = 1;
return i + 1;
}
default:
error_unknown_long_opt:
fprintf (stderr, STR_ERR_UNKNOWN_LONG_OPT, program_name, option);
return -1;
error_long_opt_ambiguous:
fprintf (stderr, STR_ERR_LONG_OPT_AMBIGUOUS, program_name, option);
return -1;
error_missing_arg_long:
fprintf (stderr, STR_ERR_MISSING_ARG_LONG, program_name, option);
return -1;
error_unexpec_arg_long:
fprintf (stderr, STR_ERR_UNEXPEC_ARG_LONG, program_name, option);
return -1;
}
}
else
do
{
switch (*option)
{
case 'h':
_medit_opt_help = 1;
return i + 1;
case 'l':
if (option [1] != '\0')
_medit_arg_line = option + 1;
else if (++i < argc)
_medit_arg_line = argv [i];
else
goto error_missing_arg_short;
option = "\0";
_medit_opt_line = 1;
break;
case 'm':
if (option [1] != '\0')
_medit_arg_mode = option + 1;
else if (++i < argc)
_medit_arg_mode = argv [i];
else
goto error_missing_arg_short;
option = "\0";
_medit_opt_mode = 1;
break;
case 'n':
_medit_opt_new_app = 1;
break;
case 'p':
if (option [1] != '\0')
{
_medit_arg_project = option + 1;
option = "\0";
}
else
_medit_arg_project = 0;
_medit_opt_project = 1;
break;
default:
fprintf (stderr, STR_ERR_UNKNOWN_SHORT_OPT, program_name, *option);
return -1;
error_missing_arg_short:
fprintf (stderr, STR_ERR_MISSING_ARG_SHORT, program_name, *option);
return -1;
}
} while (*++option != '\0');
}
return i;
}
/* end of generated code
********************************************************/
static void
usage (void)
{
g_print ("Usage: %s [OPTIONS] [FILES]\n", g_get_prgname ());
g_print ("Options:\n%s", STR_HELP);
}
static void
version (void)
{
g_print ("medit %s\n", MOO_VERSION);
}
static void
check_args (int opt_remain)
{
if (_medit_opt_help)
{
usage ();
exit (0);
}
if (opt_remain < 0)
{
usage ();
exit (1);
}
if (_medit_opt_mode)
{
if (!_medit_arg_mode ||
(strcmp (_medit_arg_mode, "simple") &&
strcmp (_medit_arg_mode, "project")))
{
usage ();
exit (1);
}
}
if (_medit_opt_project && _medit_arg_mode &&
strcmp (_medit_arg_mode, "project"))
{
usage ();
exit (1);
}
if (_medit_opt_version)
{
version ();
exit (0);
}
}
int
main (int argc, char *argv[])
{
MooApp *app;
int opt_remain;
MooEditor *editor;
char **files;
gpointer window;
int retval;
gboolean new_instance = FALSE;
gboolean run_input = TRUE;
AppMode mode = MODE_SIMPLE;
guint32 stamp;
int line = 0;
gtk_init (&argc, &argv);
stamp = TIMESTAMP;
// gdk_window_set_debug_updates (TRUE);
opt_remain = _medit_parse_options (g_get_prgname (), argc, argv);
check_args (opt_remain);
if (_medit_opt_log)
{
if (_medit_arg_log)
moo_set_log_func_file (_medit_arg_log);
else
moo_set_log_func_window (TRUE);
}
if (_medit_opt_mode)
{
if (!strcmp (_medit_arg_mode, "simple"))
mode = MODE_SIMPLE;
else
mode = MODE_PROJECT;
}
if (_medit_opt_project)
mode = MODE_PROJECT;
if (_medit_opt_new_app || mode == MODE_PROJECT)
new_instance = TRUE;
files = moo_filenames_from_locale (argv + opt_remain);
app = g_object_new (MOO_TYPE_APP,
"argv", argv,
"run-input", run_input,
"short-name", "medit",
"full-name", "medit",
"description", "medit is a text editor",
"website", "http://mooedit.sourceforge.net/",
"website-label", "http://mooedit.sourceforge.net/",
"default-ui", MEDIT_UI,
"logo", MOO_STOCK_MEDIT,
"credits", THANKS,
NULL);
if ((!new_instance && moo_app_send_files (app, files, stamp)) ||
!moo_app_init (app))
{
gdk_notify_startup_complete ();
g_strfreev (files);
g_object_unref (app);
return 0;
}
if (mode == MODE_PROJECT)
{
MooPlugin *plugin;
plugin = moo_plugin_lookup ("ProjectManager");
if (!plugin)
{
g_printerr ("Could not initialize project manager plugin\n");
exit (1);
}
if (_medit_arg_project && *_medit_arg_project)
{
char *project = moo_filename_from_locale (_medit_arg_project);
g_object_set (plugin, "project", _medit_arg_project, NULL);
g_free (project);
}
moo_plugin_set_enabled (plugin, TRUE);
}
editor = moo_app_get_editor (app);
window = moo_editor_new_window (editor);
if (_medit_arg_line)
line = strtol (_medit_arg_line, NULL, 10);
if (files && *files)
{
char **p;
for (p = files; p && *p; ++p)
{
if (p == files && _medit_arg_line)
moo_editor_open_file_line (editor, *p, line, window);
else
moo_editor_new_file (editor, window, NULL, *p, NULL);
}
}
g_strfreev (files);
g_signal_connect_swapped (editor, "all-windows-closed",
G_CALLBACK (moo_app_quit), app);
retval = moo_app_run (app);
g_object_unref (app);
return retval;
}
#if defined(__WIN32__) && !defined(__GNUC__)
#include <windows.h>
int __stdcall
WinMain (HINSTANCE hInstance,
HINSTANCE hPrevInstance,
char *lpszCmdLine,
int nCmdShow)
{
return main (__argc, __argv);
}
#endif