~ubuntu-branches/ubuntu/precise/xfce4-panel/precise

« back to all changes in this revision

Viewing changes to panel/main.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 15:45:53 UTC
  • mto: (4.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: james.westby@ubuntu.com-20101204154553-f452gq02eiksf09f
Tags: upstream-4.7.5
ImportĀ upstreamĀ versionĀ 4.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id$
2
 
 *
3
 
 * Copyright (c) 2005 Jasper Huijsmans <jasper@xfce.org>
 
1
/*
 
2
 * Copyright (C) 2008-2009 Nick Schermer <nick@xfce.org>
4
3
 *
5
4
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published
7
 
 * by the Free Software Foundation; either version 2 of the License, or
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
8
7
 * (at your option) any later version.
9
8
 *
10
9
 * This program is distributed in the hope that it will be useful,
11
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU Library General Public License for more details.
 
12
 * GNU General Public License for more details.
14
13
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
17
 */
19
18
 
20
19
#ifdef HAVE_CONFIG_H
21
20
#include <config.h>
22
21
#endif
23
22
 
 
23
#ifdef HAVE_STDIO_H
 
24
#include <stdio.h>
 
25
#endif
24
26
#ifdef HAVE_STDLIB_H
25
27
#include <stdlib.h>
26
28
#endif
30
32
#ifdef HAVE_STRING_H
31
33
#include <string.h>
32
34
#endif
33
 
#ifdef HAVE_LOCALE_H
34
 
#include <locale.h>
 
35
#ifdef HAVE_SIGNAL_H
 
36
#include <signal.h>
35
37
#endif
36
38
 
37
 
#include <gtk/gtk.h>
 
39
#include <glib.h>
 
40
#include <dbus/dbus-glib.h>
38
41
#include <libxfce4util/libxfce4util.h>
39
 
 
40
 
#include "panel-app.h"
41
 
#include "panel-app-messages.h"
42
 
 
43
 
#ifndef _
44
 
#define _(x) x
45
 
#endif
46
 
 
47
 
/* globals */
48
 
static gboolean  opt_version   = FALSE;
49
 
static gboolean  opt_customize = FALSE;
50
 
static gboolean  opt_save      = FALSE;
51
 
static gboolean  opt_restart   = FALSE;
52
 
static gboolean  opt_quit      = FALSE;
53
 
static gboolean  opt_exit      = FALSE;
54
 
static gboolean  opt_add       = FALSE;
55
 
static gchar    *opt_client_id = NULL;
 
42
#include <libxfce4ui/libxfce4ui.h>
 
43
 
 
44
#include <common/panel-private.h>
 
45
#include <common/panel-debug.h>
 
46
#include <libxfce4panel/libxfce4panel.h>
 
47
#include <panel/panel-application.h>
 
48
#include <panel/panel-dbus-service.h>
 
49
#include <panel/panel-dbus-client.h>
 
50
#include <panel/panel-preferences-dialog.h>
 
51
 
 
52
 
 
53
 
 
54
static gint       opt_preferences = -1;
 
55
static gint       opt_add_items = -1;
 
56
static gboolean   opt_save = FALSE;
 
57
static gchar     *opt_add = NULL;
 
58
static gboolean   opt_restart = FALSE;
 
59
static gboolean   opt_quit = FALSE;
 
60
static gboolean   opt_version = FALSE;
 
61
static gchar     *opt_plugin_event = NULL;
 
62
static gchar    **opt_arguments = NULL;
 
63
static gboolean   sm_client_saved_state = FALSE;
 
64
 
 
65
 
 
66
 
 
67
static gboolean panel_callback_handler (const gchar  *name,
 
68
                                        const gchar  *value,
 
69
                                        gpointer      user_data,
 
70
                                        GError      **error);
 
71
 
 
72
 
56
73
 
57
74
/* command line options */
 
75
#define PANEL_CALLBACK_OPTION G_OPTION_FLAG_OPTIONAL_ARG, G_OPTION_ARG_CALLBACK, panel_callback_handler
58
76
static GOptionEntry option_entries[] =
59
77
{
60
 
    { "version",   'V', 0, G_OPTION_ARG_NONE, &opt_version,   N_ ("Print version information and exit"), NULL },
61
 
    { "customize", 'c', 0, G_OPTION_ARG_NONE, &opt_customize, N_ ("Show 'Customize Panel' dialog"), NULL },
62
 
    { "save",      's', 0, G_OPTION_ARG_NONE, &opt_save,      N_ ("Save the panel configuration"), NULL },
63
 
    { "restart",   'r', 0, G_OPTION_ARG_NONE, &opt_restart,   N_ ("Restart the running instance of xfce4-panel"), NULL },
64
 
    { "quit",      'q', 0, G_OPTION_ARG_NONE, &opt_quit,      N_ ("Log out the active session"), NULL },
65
 
    { "exit",      'x', 0, G_OPTION_ARG_NONE, &opt_exit,      N_ ("Close all panels and end the program"), NULL },
66
 
    { "add",       'a', 0, G_OPTION_ARG_NONE, &opt_add,       N_ ("Show 'Add New Items' dialog"), NULL },
67
 
    { "sm-client-id", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_STRING, &opt_client_id, NULL, NULL },
68
 
    { NULL }
 
78
  { "preferences", 'p', PANEL_CALLBACK_OPTION, N_("Show the 'Panel Preferences' dialog"), N_("PANEL-NUMBER") },
 
79
  { "add-items", 'a', PANEL_CALLBACK_OPTION, N_("Show the 'Add New Items' dialog"), N_("PANEL-NUMBER") },
 
80
  { "save", 's', 0, G_OPTION_ARG_NONE, &opt_save, N_("Save the panel configuration"), NULL },
 
81
  { "add", '\0', 0, G_OPTION_ARG_STRING, &opt_add, N_("Add a new plugin to the panel"), N_("PLUGIN-NAME") },
 
82
  { "restart", 'r', 0, G_OPTION_ARG_NONE, &opt_restart, N_("Restart the running panel instance"), NULL },
 
83
  { "quit", 'q', 0, G_OPTION_ARG_NONE, &opt_quit, N_("Quit the running panel instance"), NULL },
 
84
  { "version", 'V', 0, G_OPTION_ARG_NONE, &opt_version, N_("Print version information and exit"), NULL },
 
85
  { "plugin-event", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_STRING, &opt_plugin_event, NULL, NULL },
 
86
  { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_STRING_ARRAY, &opt_arguments, NULL, NULL },
 
87
  { NULL }
69
88
};
70
89
 
71
 
/* main program */
 
90
 
 
91
 
 
92
static gboolean
 
93
panel_callback_handler (const gchar  *name,
 
94
                        const gchar  *value,
 
95
                        gpointer      user_data,
 
96
                        GError      **error)
 
97
{
 
98
  panel_return_val_if_fail (name != NULL, FALSE);
 
99
 
 
100
  if (strcmp (name, "--preferences") == 0
 
101
      || strcmp (name, "-p") == 0)
 
102
    {
 
103
      opt_preferences = value != NULL ? MAX (0, atoi (value)) : 0;
 
104
    }
 
105
  else if (strcmp (name, "--add-items") == 0
 
106
           || strcmp (name, "-a") == 0)
 
107
    {
 
108
      opt_add_items = value != NULL ? MAX (0, atoi (value)) : 0;
 
109
    }
 
110
  else
 
111
    {
 
112
      panel_assert_not_reached ();
 
113
      return FALSE;
 
114
    }
 
115
 
 
116
  return TRUE;
 
117
}
 
118
 
 
119
 
 
120
 
 
121
static void
 
122
panel_signal_handler (gint signum)
 
123
{
 
124
  panel_debug (PANEL_DEBUG_DOMAIN_MAIN,
 
125
               "received signal %s <%d>, %s panel",
 
126
               g_strsignal (signum), signum,
 
127
               signum == SIGUSR1 ? "restarting" : "quiting");
 
128
 
 
129
  panel_dbus_service_exit_panel (signum == SIGUSR1);
 
130
}
 
131
 
 
132
 
 
133
 
 
134
static void
 
135
panel_sm_client_quit (XfceSMClient *sm_client)
 
136
{
 
137
  panel_return_if_fail (XFCE_IS_SM_CLIENT (sm_client));
 
138
  panel_return_if_fail (!panel_dbus_service_get_restart ());
 
139
 
 
140
  panel_debug (PANEL_DEBUG_DOMAIN_MAIN,
 
141
               "terminate panel for session manager");
 
142
 
 
143
  gtk_main_quit ();
 
144
}
 
145
 
 
146
 
 
147
 
 
148
static void
 
149
panel_sm_client_save_state (XfceSMClient     *sm_client,
 
150
                            PanelApplication *application)
 
151
{
 
152
  panel_return_if_fail (XFCE_IS_SM_CLIENT (sm_client));
 
153
  panel_return_if_fail (PANEL_IS_APPLICATION (application));
 
154
 
 
155
  panel_debug (PANEL_DEBUG_DOMAIN_MAIN,
 
156
               "save configuration for session manager");
 
157
 
 
158
  panel_application_save (application, TRUE);
 
159
 
 
160
  sm_client_saved_state = TRUE;
 
161
}
 
162
 
 
163
 
 
164
 
72
165
gint
73
166
main (gint argc, gchar **argv)
74
167
{
75
 
    gint    msg = -1;
76
 
    GError *error = NULL;
77
 
 
78
 
    /* translation domain */
79
 
    xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
80
 
 
81
 
    /* application name */
82
 
    g_set_application_name (PACKAGE_NAME);
83
 
 
84
 
    MARK ("start gtk_init_with_args ()");
85
 
 
86
 
    /* initialize gtk */
87
 
    if (!gtk_init_with_args (&argc, &argv, (gchar *) "", option_entries, (gchar *) GETTEXT_PACKAGE, &error))
88
 
    {
89
 
        /* TRANSLATORS: Errors when gtk_init failed, probably the command
90
 
           executed without xserver running */
91
 
        g_print ("%s: %s\n", PACKAGE_NAME, error ? error->message : _("Failed to open display"));
92
 
 
93
 
        if (error != NULL)
94
 
            g_error_free (error);
95
 
 
96
 
        return EXIT_FAILURE;
97
 
    }
98
 
 
99
 
    /* handle the options */
100
 
    if (G_UNLIKELY (opt_version))
101
 
    {
102
 
        g_print ("%s %s (Xfce %s)\n\n", PACKAGE_NAME, PACKAGE_VERSION, xfce_version_string ());
103
 
        g_print ("%s\n", "Copyright (c) 2004-2009");
104
 
        g_print ("\t%s\n\n", _("The Xfce development team. All rights reserved."));
105
 
        
106
 
        /* TRANSLATORS: Bug report website, %s points to bugzilla.xfce.org */
107
 
        g_print (_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
108
 
        g_print ("\n");
109
 
 
110
 
        return EXIT_SUCCESS;
111
 
    }
112
 
    else if (G_UNLIKELY (opt_customize))
113
 
        msg = PANEL_APP_CUSTOMIZE;
114
 
    else if (G_UNLIKELY (opt_save))
115
 
        msg = PANEL_APP_SAVE;
116
 
    else if (G_UNLIKELY (opt_restart))
117
 
        msg = PANEL_APP_RESTART;
118
 
    else if (G_UNLIKELY (opt_quit))
119
 
        msg = PANEL_APP_QUIT;
120
 
    else if (G_UNLIKELY (opt_exit))
121
 
        msg = PANEL_APP_EXIT;
122
 
    else if (G_UNLIKELY (opt_add))
123
 
        msg = PANEL_APP_ADD;
124
 
 
125
 
    /* handle the message, if there is any */
126
 
    if (G_UNLIKELY (msg >= 0))
127
 
    {
128
 
        if (!panel_app_send (msg))
129
 
        {
130
 
            if (msg != PANEL_APP_RESTART )
131
 
            {
132
 
                return EXIT_FAILURE;
133
 
            }
134
 
            /* else: continue and start new panel */
135
 
        }
136
 
        else
137
 
        {
138
 
            return EXIT_SUCCESS;
139
 
        }
140
 
    }
141
 
 
142
 
    MARK ("start panel_init()");
143
 
    msg = panel_app_init ();
144
 
 
145
 
    if (G_UNLIKELY (msg == INIT_FAILURE))
146
 
    {
147
 
        return EXIT_FAILURE;
148
 
    }
149
 
    else if (G_UNLIKELY (msg == INIT_RUNNING))
150
 
    {
151
 
        g_message (_("Xfce4-panel already running"));
152
 
 
153
 
        return EXIT_SUCCESS;
154
 
    }
155
 
 
156
 
    MARK ("start panel_app_run()");
157
 
    msg = panel_app_run (opt_client_id);
158
 
    MARK ("end panel_app_run()");
159
 
 
160
 
    if (G_UNLIKELY (msg == RUN_RESTART))
161
 
    {
162
 
        g_message (_("Restarting xfce4-panel..."));
163
 
        
164
 
        /* restart */
165
 
        execvp (argv[0], argv);
166
 
    }
167
 
 
168
 
    return G_UNLIKELY (msg == RUN_FAILURE) ? EXIT_FAILURE : EXIT_SUCCESS;
 
168
  GOptionContext   *context;
 
169
  PanelApplication *application;
 
170
  GError           *error = NULL;
 
171
  PanelDBusService *dbus_service;
 
172
  gboolean          succeed = FALSE;
 
173
  guint             i;
 
174
  const gint        signums[] = { SIGINT, SIGQUIT, SIGTERM, SIGABRT, SIGUSR1 };
 
175
  const gchar      *error_msg;
 
176
  XfceSMClient     *sm_client;
 
177
 
 
178
  panel_debug (PANEL_DEBUG_DOMAIN_MAIN,
 
179
               "version %s on gtk+ %d.%d.%d (%d.%d.%d), glib %d.%d.%d (%d.%d.%d)",
 
180
               LIBXFCE4PANEL_VERSION,
 
181
               gtk_major_version, gtk_minor_version, gtk_micro_version,
 
182
               GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION,
 
183
               glib_major_version, glib_minor_version, glib_micro_version,
 
184
               GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
 
185
 
 
186
  /* set translation domain */
 
187
  xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
 
188
 
 
189
#ifdef G_ENABLE_DEBUG
 
190
  /* do NOT remove this line for now, If something doesn't work,
 
191
   * fix your code instead! */
 
192
  g_log_set_always_fatal (G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING);
 
193
#endif
 
194
 
 
195
  /* parse context options */
 
196
  context = g_option_context_new (_("[ARGUMENTS...]"));
 
197
  g_option_context_add_main_entries (context, option_entries, GETTEXT_PACKAGE);
 
198
  g_option_context_add_group (context, gtk_get_option_group (TRUE));
 
199
  g_option_context_add_group (context, xfce_sm_client_get_option_group (argc, argv));
 
200
  if (!g_option_context_parse (context, &argc, &argv, &error))
 
201
    {
 
202
      g_print ("%s: %s.\n", PACKAGE_NAME, error->message);
 
203
      g_print (_("Type \"%s --help\" for usage."), G_LOG_DOMAIN);
 
204
      g_print ("\n");
 
205
      g_error_free (error);
 
206
 
 
207
      return EXIT_FAILURE;
 
208
    }
 
209
  g_option_context_free (context);
 
210
 
 
211
  gtk_init (&argc, &argv);
 
212
 
 
213
  if (opt_version)
 
214
    {
 
215
      /* print version information */
 
216
      if (opt_arguments != NULL && *opt_arguments != NULL)
 
217
        g_print ("%s (%s)", *opt_arguments, PACKAGE_NAME);
 
218
      else
 
219
        g_print ("%s", PACKAGE_NAME);
 
220
      g_print (" %s (Xfce %s)\n\n", PACKAGE_VERSION, xfce_version_string ());
 
221
      g_print ("%s\n", "Copyright (c) 2004-2010");
 
222
      g_print ("\t%s\n\n", _("The Xfce development team. All rights reserved."));
 
223
      g_print (_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
 
224
      g_print ("\n");
 
225
 
 
226
      return EXIT_SUCCESS;
 
227
    }
 
228
  else if (opt_preferences >= 0)
 
229
    {
 
230
      /* send a signal to the running instance to show the preferences dialog */
 
231
      succeed = panel_dbus_client_display_preferences_dialog (opt_preferences, &error);
 
232
      goto dbus_return;
 
233
    }
 
234
  else if (opt_add_items >= 0)
 
235
    {
 
236
      /* send a signal to the running instance to show the add items dialog */
 
237
      succeed = panel_dbus_client_display_items_dialog (opt_add_items, &error);
 
238
      goto dbus_return;
 
239
    }
 
240
  else if (opt_save)
 
241
    {
 
242
      /* send a save signal to the running instance */
 
243
      succeed = panel_dbus_client_save (&error);
 
244
      goto dbus_return;
 
245
    }
 
246
  else if (opt_add != NULL)
 
247
    {
 
248
      /* send a add-new-item signal to the running instance */
 
249
      succeed = panel_dbus_client_add_new_item (opt_add, opt_arguments, &error);
 
250
      goto dbus_return;
 
251
    }
 
252
  else if (opt_restart || opt_quit)
 
253
    {
 
254
      /* send a terminate signal to the running instance */
 
255
      succeed = panel_dbus_client_terminate (opt_restart, &error);
 
256
      goto dbus_return;
 
257
    }
 
258
  else if (opt_plugin_event != NULL)
 
259
    {
 
260
      /* send the plugin event to the running instance */
 
261
      succeed = panel_dbus_client_plugin_event (opt_plugin_event, &error);
 
262
      goto dbus_return;
 
263
    }
 
264
 
 
265
  launch_panel:
 
266
 
 
267
  /* start dbus service */
 
268
  dbus_service = panel_dbus_service_get ();
 
269
  if (!panel_dbus_service_is_owner (dbus_service))
 
270
    {
 
271
      /* quit without error if an instance is running */
 
272
      succeed = TRUE;
 
273
 
 
274
      g_print ("%s: %s\n\n", G_LOG_DOMAIN, _("There is already a running instance"));
 
275
      goto dbus_return;
 
276
    }
 
277
 
 
278
  /* start session management */
 
279
  sm_client = xfce_sm_client_get ();
 
280
  xfce_sm_client_set_restart_style (sm_client, XFCE_SM_CLIENT_RESTART_IMMEDIATELY);
 
281
  xfce_sm_client_set_priority (sm_client, XFCE_SM_CLIENT_PRIORITY_CORE);
 
282
  g_signal_connect (G_OBJECT (sm_client), "quit",
 
283
      G_CALLBACK (panel_sm_client_quit), NULL);
 
284
  if (!xfce_sm_client_connect (sm_client, &error))
 
285
    {
 
286
      g_printerr ("%s: Failed to connect to session manager: %s\n",
 
287
                  G_LOG_DOMAIN, error->message);
 
288
      g_clear_error (&error);
 
289
    }
 
290
 
 
291
  /* setup signal handlers to properly quit the main loop */
 
292
  for (i = 0; i < G_N_ELEMENTS (signums); i++)
 
293
    signal (signums[i], panel_signal_handler);
 
294
 
 
295
  application = panel_application_get ();
 
296
 
 
297
  /* save the state before the quit signal if we can, this is a bit safer */
 
298
  g_signal_connect (G_OBJECT (sm_client), "save-state",
 
299
      G_CALLBACK (panel_sm_client_save_state), application);
 
300
 
 
301
  /* open dialog if we started from launch_panel */
 
302
  if (opt_preferences >= 0)
 
303
    panel_preferences_dialog_show (panel_application_get_nth_window (application, opt_preferences));
 
304
 
 
305
  gtk_main ();
 
306
 
 
307
  /* make sure there are no incomming events when we close */
 
308
  g_object_unref (G_OBJECT (dbus_service));
 
309
 
 
310
  /* destroy all the opened dialogs */
 
311
  panel_application_destroy_dialogs (application);
 
312
 
 
313
  /* only save if we do not quit by the sm client */
 
314
  if (!sm_client_saved_state)
 
315
    panel_application_save (application, TRUE);
 
316
 
 
317
  g_object_unref (G_OBJECT (application));
 
318
  g_object_unref (G_OBJECT (sm_client));
 
319
 
 
320
  if (panel_dbus_service_get_restart ())
 
321
    {
 
322
      /* spawn ourselfs again */
 
323
      g_print ("%s: %s\n\n", G_LOG_DOMAIN, _("Restarting..."));
 
324
      g_spawn_command_line_async (argv[0], NULL);
 
325
    }
 
326
 
 
327
  return EXIT_SUCCESS;
 
328
 
 
329
dbus_return:
 
330
 
 
331
  /* stop any running startup notification */
 
332
  gdk_notify_startup_complete ();
 
333
 
 
334
  if (G_UNLIKELY (error != NULL))
 
335
    {
 
336
      /* get suitable error message */
 
337
      if (opt_preferences >= 0)
 
338
        error_msg = _("Failed to show the preferences dialog");
 
339
      else if (opt_add_items >= 0)
 
340
        error_msg = _("Failed to show the add new items dialog");
 
341
      else if (opt_save)
 
342
        error_msg = _("Failed to save the panel configuration");
 
343
      else if (opt_add)
 
344
        error_msg = _("Failed to add a plugin to the panel");
 
345
      else if (opt_restart)
 
346
        error_msg = _("Failed to restart the panel");
 
347
      else if (opt_quit)
 
348
        error_msg = _("Failed to quit the panel");
 
349
      else
 
350
        error_msg = _("Failed to send D-Bus message");
 
351
 
 
352
      /* show understandable message for this common error */
 
353
      if (error->code == DBUS_GERROR_NAME_HAS_NO_OWNER)
 
354
        {
 
355
          /* normally start the panel */
 
356
          if (opt_preferences >= 0)
 
357
            {
 
358
              g_clear_error (&error);
 
359
 
 
360
              if (xfce_dialog_confirm (NULL, GTK_STOCK_EXECUTE, NULL,
 
361
                                       _("Do you want to start the panel? If you do, make sure "
 
362
                                         "you save the session on logout, so the panel is "
 
363
                                         "automatically started the next time you login."),
 
364
                                       _("No running instance of %s was found"), G_LOG_DOMAIN))
 
365
                {
 
366
                  panel_debug (PANEL_DEBUG_DOMAIN_MAIN, "user confirmed to start the panel");
 
367
                  goto launch_panel;
 
368
                }
 
369
              else
 
370
                {
 
371
                  return EXIT_FAILURE;
 
372
                }
 
373
            }
 
374
          else
 
375
            {
 
376
              /* I18N: %s is replaced with xfce4-panel */
 
377
              g_clear_error (&error);
 
378
              g_set_error (&error, 0, 0, _("No running instance of %s was found"), G_LOG_DOMAIN);
 
379
            }
 
380
        }
 
381
 
 
382
      /* show error dialog */
 
383
      xfce_dialog_show_error (NULL, error, "%s", error_msg);
 
384
      g_error_free (error);
 
385
    }
 
386
 
 
387
  return succeed ? EXIT_SUCCESS : EXIT_FAILURE;
169
388
}
170