aboutsummaryrefslogtreecommitdiff
path: root/src/core/main.c
blob: da1490af433433a06cb38793591fb334ca21d768 (plain) (blame)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
     This file is part of GNUnet.
     (C) 2005, 2006 Christian Grothoff (and other contributing authors)

     GNUnet 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, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file src/core/main.c
 * @brief Main function of gnunet-gtk
 * @author Christian Grothoff
 */

#include "platform.h"
#include "gnunetgtk_common.h"
#include <GNUnet/gnunet_directories.h>
#include <GNUnet/gnunet_util.h>
#include "eggtrayicon.h"

#ifdef WINDOWS
static int debug_mode = GNUNET_NO;
#endif

static char *cfgFilename = DEFAULT_CLIENT_CONFIG_FILE;

/**
 * All gnunet-gtk command line options
 */
static struct GNUNET_CommandLineOption gnunetgtkOptions[] = {
  GNUNET_COMMAND_LINE_OPTION_CFG_FILE (&cfgFilename),  /* -c */
#ifdef WINDOWS
  {'d', "debug", NULL,
   gettext_noop ("run in debug mode"),
   0, &GNUNET_getopt_configure_set_one, &debug_mode},
#endif
  GNUNET_COMMAND_LINE_OPTION_HELP (gettext_noop ("GNUnet GTK user interface.")),       /* -h */
  GNUNET_COMMAND_LINE_OPTION_HOSTNAME, /* -H */
  GNUNET_COMMAND_LINE_OPTION_LOGGING,  /* -L */
  GNUNET_COMMAND_LINE_OPTION_VERSION (VERSION),        /* -v */
  GNUNET_COMMAND_LINE_OPTION_VERBOSE,
  GNUNET_COMMAND_LINE_OPTION_END,
};

static void *
shutdownCode (void *unused)
{
  shutdownPlugins ();
  return NULL;
}

void
gnunet_gtk_main_quit ()
{
  GE_setDefaultContext (NULL);
  run_with_save_calls (&shutdownCode, NULL);
  gtk_main_quit ();
}

#if 0
static void
customLog (const char *msg)
{
  addLogEntry ("%s", msg);
}
#endif

int
main (int argc, char *const *argv)
{
  GtkWidget *root;
  int i;
  struct GE_Context *ectx;
  struct GE_Context *my_ctx;
  struct GC_Configuration *cfg;
  char *log;
  GE_KIND mask;
#if ENABLE_NLS
  char *path;
#endif

#ifdef WINDOWS
  SetCursor (LoadCursor (NULL, IDC_APPSTARTING));
#endif

  g_thread_init (NULL);
  gtk_init (&argc, (char ***) &argv);
  i = GNUNET_init (argc,
                   argv,
                   "gnunet-gtk", &cfgFilename, gnunetgtkOptions, &ectx, &cfg);
  if (i == -1)
    {
      GNUNET_fini (ectx, cfg);
      return -1;
    }
#ifdef WINDOWS
  if (!debug_mode)
    FreeConsole ();
#endif

#if ENABLE_NLS
  setlocale (LC_ALL, "");
  path = GNUNET_get_installation_path (GNUNET_IPK_LOCALEDIR);
  BINDTEXTDOMAIN ("gnunet-gtk", path);
  GNUNET_free (path);
  textdomain ("gnunet-gtk");
  bind_textdomain_codeset ("GNUnet", "UTF-8");
  bind_textdomain_codeset ("gnunet-gtk", "UTF-8");
#endif
  initGNUnetGTKCommon (ectx, cfg, &gnunet_gtk_main_quit);
  /* configure GTK logging */
  GC_get_configuration_value_string (cfg,
                                     "LOGGING",
                                     "USER-LEVEL", "WARNING", &log);
  mask = GE_getKIND (log);
  GNUNET_free (log);
  mask |= mask - 1;             /* set all bits... */
  mask |= GE_USER | GE_BULK | GE_IMMEDIATE;
  if (GNUNET_YES == GC_get_configuration_value_yesno (cfg,
                                               "LOGGING", "DEVELOPER", GNUNET_NO))
    mask |= GE_DEVELOPER | GE_REQUEST;
  my_ctx = createGtkLogger (mask);
  GE_setDefaultContext (my_ctx);
  root = glade_xml_get_widget (getMainXML (), "mainWindow");
  gtk_window_maximize (GTK_WINDOW (root));
#ifndef WINDOWS
  initTrayIcon ();
#endif
  gtk_widget_show (root);

  /* start the event loop */
  gdk_threads_enter ();

#ifdef WINDOWS
  SetCursor (LoadCursor (NULL, IDC_ARROW));
#endif

  gtk_main ();
  gdk_threads_leave ();
  GE_setDefaultContext (ectx);
  GE_free_context (my_ctx);
  doneGNUnetGTKCommon ();
  GNUNET_fini (ectx, cfg);
  return 0;
}

/* ************* end of main.c ************ */