glib/: fully remove galias hacks
[platform/upstream/glib.git] / glib / goption.c
index 378e7a1..ff762e8 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+/**
+ * SECTION:option
+ * @Short_description: parses commandline options
+ * @Title: Commandline option parser
+ * 
+ * The GOption commandline parser is intended to be a simpler replacement for the
+ * popt library. It supports short and long commandline options, as shown in the 
+ * following example:
+ * 
+ * <literal>testtreemodel -r 1 --max-size 20 --rand --display=:1.0 -vb -- file1 file2</literal>
+ * 
+ * The example demonstrates a number of features of the GOption commandline parser
+ * <itemizedlist><listitem><para>
+ *   Options can be single letters, prefixed by a single dash. Multiple
+ *   short options can be grouped behind a single dash.
+ * </para></listitem><listitem><para>
+ *   Long options are prefixed by two consecutive dashes.
+ * </para></listitem><listitem><para>
+ *   Options can have an extra argument, which can be a number, a string or a 
+ *   filename. For long options, the extra argument can be appended with an 
+ *   equals sign after the option name.
+ * </para></listitem><listitem><para>
+ *   Non-option arguments are returned to the application as rest arguments.
+ * </para></listitem><listitem><para>
+ *   An argument consisting solely of two dashes turns off further parsing, 
+ *   any remaining arguments (even those starting with a dash) are returned 
+ *   to the application as rest arguments.
+ * </para></listitem></itemizedlist>
+ * 
+ * Another important feature of GOption is that it can automatically generate 
+ * nicely formatted help output. Unless it is explicitly turned off with 
+ * g_option_context_set_help_enabled(), GOption will recognize the 
+ * <option>--help</option>, <option>-?</option>, <option>--help-all</option>
+ * and <option>--help-</option><replaceable>groupname</replaceable> options 
+ * (where <replaceable>groupname</replaceable> is the name of a #GOptionGroup) 
+ * and write a text similar to the one shown in the following example to stdout.
+ * 
+ * <informalexample><screen>
+ * Usage:
+ *   testtreemodel [OPTION...] - test tree model performance
+ *  
+ * Help Options:
+ *   -h, --help               Show help options
+ *   --help-all               Show all help options
+ *   --help-gtk               Show GTK+ Options
+ *  
+ * Application Options:
+ *   -r, --repeats=N          Average over N repetitions
+ *   -m, --max-size=M         Test up to 2^M items
+ *   --display=DISPLAY        X display to use
+ *   -v, --verbose            Be verbose
+ *   -b, --beep               Beep when done   
+ *   --rand                   Randomize the data
+ * </screen></informalexample>
+ * 
+ * GOption groups options in #GOptionGroup<!-- -->s, which makes it easy to
+ * incorporate options from multiple sources. The intended use for this is
+ * to let applications collect option groups from the libraries it uses,
+ * add them to their #GOptionContext, and parse all options by a single call
+ * to g_option_context_parse(). See gtk_get_option_group() for an example.
+ *
+ * If an option is declared to be of type string or filename, GOption takes
+ * care of converting it to the right encoding; strings are returned in UTF-8,
+ * filenames are returned in the GLib filename encoding. Note that this only
+ * works if setlocale() has been called before g_option_context_parse().
+ * 
+ * Here is a complete example of setting up GOption to parse the example
+ * commandline above and produce the example help output.
+ * 
+ * <informalexample><programlisting>
+ * static gint repeats = 2;
+ * static gint max_size = 8;
+ * static gboolean verbose = FALSE;
+ * static gboolean beep = FALSE;
+ * static gboolean rand = FALSE;
+ * 
+ * static GOptionEntry entries[] = 
+ * {
+ *   { "repeats", 'r', 0, G_OPTION_ARG_INT, &repeats, "Average over N repetitions", "N" },
+ *   { "max-size", 'm', 0, G_OPTION_ARG_INT, &max_size, "Test up to 2^M items", "M" },
+ *   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
+ *   { "beep", 'b', 0, G_OPTION_ARG_NONE, &beep, "Beep when done", NULL },
+ *   { "rand", 0, 0, G_OPTION_ARG_NONE, &rand, "Randomize the data", NULL },
+ *   { NULL }
+ * };
+ * 
+ * int 
+ * main (int argc, char *argv[])
+ * {
+ *   GError *error = NULL;
+ *   GOptionContext *context;
+ * 
+ *   context = g_option_context_new ("- test tree model performance");
+ *   g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
+ *   g_option_context_add_group (context, gtk_get_option_group (TRUE));
+ *   if (!g_option_context_parse (context, &argc, &argv, &error))
+ *     {
+ *       g_print ("option parsing failed: %s\n", error->message);
+ *       exit (1);
+ *     }
+ * 
+ *   // ...
+ * 
+ * }
+ * </programlisting></informalexample>
+ */
 
 #include "config.h"
 
 #include "goption.h"
 #include "glib.h"
-#include "gi18n.h"
+#include "glibintl.h"
+#include "gprintf.h"
 
-#include "galias.h"
 
 #include <string.h>
 #include <stdlib.h>
+#include <stdio.h>
 #include <errno.h>
 
 #define TRANSLATE(group, str) (((group)->translate_func ? (* (group)->translate_func) ((str), (group)->translate_data) : (str)))
@@ -50,6 +157,8 @@ typedef struct
     gint integer;
     gchar *str;
     gchar **array;
+    gdouble dbl;
+    gint64 int64;
   } prev;
   union 
   {
@@ -70,39 +179,45 @@ typedef struct
 
 struct _GOptionContext
 {
-  GList *groups;
+  GList           *groups;
 
-  gchar *parameter_string;
+  gchar           *parameter_string;
+  gchar           *summary;
+  gchar           *description;
 
-  gboolean help_enabled;
-  gboolean ignore_unknown;
+  GTranslateFunc   translate_func;
+  GDestroyNotify   translate_notify;
+  gpointer        translate_data;
+
+  guint            help_enabled   : 1;
+  guint            ignore_unknown : 1;
   
-  GOptionGroup *main_group;
+  GOptionGroup    *main_group;
 
   /* We keep a list of change so we can revert them */
-  GList *changes;
+  GList           *changes;
   
-  /* We also keep track of all argv elements that should be NULLed or
-   * modified.
+  /* We also keep track of all argv elements 
+   * that should be NULLed or modified.
    */
-  GList *pending_nulls;
+  GList           *pending_nulls;
 };
 
 struct _GOptionGroup
 {
-  gchar *name;
-  gchar *description;
-  gchar *help_description;
+  gchar           *name;
+  gchar           *description;
+  gchar           *help_description;
 
-  GDestroyNotify  destroy_notify;
-  gpointer        user_data;
+  GDestroyNotify   destroy_notify;
+  gpointer         user_data;
 
-  GTranslateFunc  translate_func;
-  GDestroyNotify  translate_notify;
-  gpointer       translate_data;
+  GTranslateFunc   translate_func;
+  GDestroyNotify   translate_notify;
+  gpointer        translate_data;
 
-  GOptionEntry *entries;
-  gint         n_entries;
+  GOptionEntry    *entries;
+  gint             n_entries;
 
   GOptionParseFunc pre_parse_func;
   GOptionParseFunc post_parse_func;
@@ -114,25 +229,91 @@ static void free_changes_list (GOptionContext *context,
 static void free_pending_nulls (GOptionContext *context,
                                gboolean        perform_nulls);
 
+
+static int
+_g_unichar_get_width (gunichar c)
+{
+  if (G_UNLIKELY (g_unichar_iszerowidth (c)))
+    return 0;
+
+  /* we ignore the fact that we should call g_unichar_iswide_cjk() under
+   * some locales (legacy East Asian ones) */
+  if (g_unichar_iswide (c))
+    return 2;
+
+  return 1;
+}
+
+static glong
+_g_utf8_strwidth (const gchar *p,
+                  gssize       max)
+{
+  glong len = 0;
+  const gchar *start = p;
+  g_return_val_if_fail (p != NULL || max == 0, 0);
+
+  if (max < 0)
+    {
+      while (*p)
+        {
+          len += _g_unichar_get_width (g_utf8_get_char (p));
+          p = g_utf8_next_char (p);
+        }
+    }
+  else
+    {
+      if (max == 0 || !*p)
+        return 0;
+
+      /* this case may not be quite correct */
+      
+      len += _g_unichar_get_width (g_utf8_get_char (p));
+      p = g_utf8_next_char (p);          
+
+      while (p - start < max && *p)
+        {
+          len += _g_unichar_get_width (g_utf8_get_char (p));
+          p = g_utf8_next_char (p);          
+        }
+    }
+
+  return len;
+}
+
+
 GQuark
 g_option_error_quark (void)
 {
-  static GQuark q = 0;
-  
-  if (q == 0)
-    q = g_quark_from_static_string ("g-option-context-error-quark");
-
-  return q;
+  return g_quark_from_static_string ("g-option-context-error-quark");
 }
 
 /**
  * g_option_context_new:
  * @parameter_string: a string which is displayed in
- *    the first line of <option>--help</option> output, after 
+ *    the first line of <option>--help</option> output, after the
+ *    usage summary 
  *    <literal><replaceable>programname</replaceable> [OPTION...]</literal>
  *
  * Creates a new option context. 
  *
+ * The @parameter_string can serve multiple purposes. It can be used
+ * to add descriptions for "rest" arguments, which are not parsed by
+ * the #GOptionContext, typically something like "FILES" or
+ * "FILE1 FILE2...". If you are using #G_OPTION_REMAINING for
+ * collecting "rest" arguments, GLib handles this automatically by
+ * using the @arg_description of the corresponding #GOptionEntry in
+ * the usage summary.
+ *
+ * Another usage is to give a short summary of the program
+ * functionality, like " - frob the strings", which will be displayed
+ * in the same line as the usage. For a longer description of the
+ * program functionality that should be displayed as a paragraph
+ * below the usage line, use g_option_context_set_summary().
+ *
+ * Note that the @parameter_string is translated using the
+ * function set with g_option_context_set_translate_func(), so
+ * it should normally be passed untranslated.
+ *
  * Returns: a newly created #GOptionContext, which must be
  *    freed with g_option_context_free() after use.
  *
@@ -160,6 +341,9 @@ g_option_context_new (const gchar *parameter_string)
  * Frees context and all the groups which have been 
  * added to it.
  *
+ * Please note that parsed arguments need to be freed separately (see
+ * #GOptionEntry).
+ *
  * Since: 2.6
  */
 void g_option_context_free (GOptionContext *context) 
@@ -176,7 +360,12 @@ void g_option_context_free (GOptionContext *context)
   free_pending_nulls (context, FALSE);
   
   g_free (context->parameter_string);
+  g_free (context->summary);
+  g_free (context->description);
   
+  if (context->translate_notify)
+    (* context->translate_notify) (context->translate_data);
+
   g_free (context);
 }
 
@@ -188,7 +377,8 @@ void g_option_context_free (GOptionContext *context)
  *
  * Enables or disables automatic generation of <option>--help</option> 
  * output. By default, g_option_context_parse() recognizes
- * <option>--help</option>, <option>-?</option>, <option>--help-all</option>
+ * <option>--help</option>, <option>-h</option>,
+ * <option>-?</option>, <option>--help-all</option>
  * and <option>--help-</option><replaceable>groupname</replaceable> and creates
  * suitable output to stdout. 
  *
@@ -395,13 +585,13 @@ calculate_max_length (GOptionGroup *group)
       if (entry->flags & G_OPTION_FLAG_HIDDEN)
        continue;
 
-      len = g_utf8_strlen (entry->long_name, -1);
+      len = _g_utf8_strwidth (entry->long_name, -1);
       
       if (entry->short_name)
        len += 4;
       
       if (!NO_ARG (entry) && entry->arg_description)
-       len += 1 + g_utf8_strlen (TRANSLATE (group, entry->arg_description), -1);
+       len += 1 + _g_utf8_strwidth (TRANSLATE (group, entry->arg_description), -1);
       
       max_length = MAX (max_length, len);
     }
@@ -412,10 +602,11 @@ calculate_max_length (GOptionGroup *group)
 static void
 print_entry (GOptionGroup       *group,
             gint                max_length,
-            const GOptionEntry *entry)
+            const GOptionEntry *entry,
+             GString            *string)
 {
   GString *str;
-
+  
   if (entry->flags & G_OPTION_FLAG_HIDDEN)
     return;
 
@@ -432,15 +623,105 @@ print_entry (GOptionGroup       *group,
   if (entry->arg_description)
     g_string_append_printf (str, "=%s", TRANSLATE (group, entry->arg_description));
   
-  g_print ("%-*s %s\n", max_length + 4, str->str,
-          entry->description ? TRANSLATE (group, entry->description) : "");
+  g_string_append_printf (string, "%s%*s %s\n", str->str,
+                         (int) (max_length + 4 - _g_utf8_strwidth (str->str, -1)), "",
+                         entry->description ? TRANSLATE (group, entry->description) : "");
   g_string_free (str, TRUE);  
 }
 
-static void
-print_help (GOptionContext *context,
-           gboolean        main_help,
-           GOptionGroup   *group) 
+static gboolean
+group_has_visible_entries (GOptionContext *context,
+                           GOptionGroup *group,
+                           gboolean      main_entries)
+{
+  GOptionFlags reject_filter = G_OPTION_FLAG_HIDDEN;
+  GOptionEntry *entry;
+  gint i, l;
+  gboolean main_group = group == context->main_group;
+
+  if (!main_entries)
+    reject_filter |= G_OPTION_FLAG_IN_MAIN;
+
+  for (i = 0, l = (group ? group->n_entries : 0); i < l; i++)
+    {
+      entry = &group->entries[i];
+
+      if (main_entries && !main_group && !(entry->flags & G_OPTION_FLAG_IN_MAIN))
+        continue;
+      if (!(entry->flags & reject_filter))
+        return TRUE;
+    }
+
+  return FALSE;
+}
+
+static gboolean
+group_list_has_visible_entires (GOptionContext *context,
+                                GList          *group_list,
+                                gboolean       main_entries)
+{
+  while (group_list)
+    {
+      if (group_has_visible_entries (context, group_list->data, main_entries))
+        return TRUE;
+
+      group_list = group_list->next;
+    }
+
+  return FALSE;
+}
+
+static gboolean
+context_has_h_entry (GOptionContext *context)
+{
+  gsize i;
+  GList *list;
+
+  if (context->main_group)
+    {
+      for (i = 0; i < context->main_group->n_entries; i++)
+        {
+          if (context->main_group->entries[i].short_name == 'h')
+            return TRUE;
+        }
+    }
+
+  for (list = context->groups; list != NULL; list = g_list_next (list))
+    {
+     GOptionGroup *group;
+
+      group = (GOptionGroup*)list->data;
+      for (i = 0; i < group->n_entries; i++)
+        {
+          if (group->entries[i].short_name == 'h')
+            return TRUE;
+        }
+    }
+  return FALSE;
+}
+
+/**
+ * g_option_context_get_help: 
+ * @context: a #GOptionContext
+ * @main_help: if %TRUE, only include the main group 
+ * @group: the #GOptionGroup to create help for, or %NULL
+ *
+ * Returns a formatted, translated help text for the given context.
+ * To obtain the text produced by <option>--help</option>, call
+ * <literal>g_option_context_get_help (context, TRUE, NULL)</literal>.
+ * To obtain the text produced by <option>--help-all</option>, call
+ * <literal>g_option_context_get_help (context, FALSE, NULL)</literal>.
+ * To obtain the help text for an option group, call
+ * <literal>g_option_context_get_help (context, FALSE, group)</literal>.
+ *
+ * Returns: A newly allocated string containing the help text
+ *
+ * Since: 2.14
+ */
+gchar *
+g_option_context_get_help (GOptionContext *context,
+                          gboolean        main_help,
+                          GOptionGroup   *group)
 {
   GList *list;
   gint max_length, len;
@@ -449,27 +730,48 @@ print_help (GOptionContext *context,
   GHashTable *shadow_map;
   gboolean seen[256];
   const gchar *rest_description;
-  
+  GString *string;
+  guchar token;
+
+  string = g_string_sized_new (1024);
+
   rest_description = NULL;
   if (context->main_group)
     {
+
       for (i = 0; i < context->main_group->n_entries; i++)
        {
          entry = &context->main_group->entries[i];
          if (entry->long_name[0] == 0)
            {
-             rest_description = entry->arg_description;
+             rest_description = TRANSLATE (context->main_group, entry->arg_description);
              break;
            }
        }
     }
-  
-  g_print ("%s\n  %s %s%s%s%s%s\n\n", 
-          _("Usage:"), g_get_prgname(), _("[OPTION...]"),
-          rest_description ? " " : "",
-          rest_description ? rest_description : "",
-          context->parameter_string ? " " : "",
-          context->parameter_string ? context->parameter_string : "");
+
+  g_string_append_printf (string, "%s\n  %s %s", 
+                         _("Usage:"), g_get_prgname(), _("[OPTION...]"));
+
+  if (rest_description)
+    {
+      g_string_append (string, " ");
+      g_string_append (string, rest_description);
+    }
+
+  if (context->parameter_string)
+    {
+      g_string_append (string, " ");
+      g_string_append (string, TRANSLATE (context, context->parameter_string));
+    }
+
+  g_string_append (string, "\n\n");
+
+  if (context->summary)
+    {
+      g_string_append (string, TRANSLATE (context, context->summary));
+      g_string_append (string, "\n\n");
+    }
 
   memset (seen, 0, sizeof (gboolean) * 256);
   shadow_map = g_hash_table_new (g_str_hash, g_str_equal);
@@ -493,18 +795,18 @@ print_help (GOptionContext *context,
   list = context->groups;
   while (list != NULL)
     {
-      GOptionGroup *group = list->data;
-      for (i = 0; i < group->n_entries; i++)
+      GOptionGroup *g = list->data;
+      for (i = 0; i < g->n_entries; i++)
        {
-         entry = &group->entries[i];
+         entry = &g->entries[i];
          if (g_hash_table_lookup (shadow_map, entry->long_name) && 
-             !(entry->flags && G_OPTION_FLAG_NOALIAS))
-           entry->long_name = g_strdup_printf ("%s-%s", group->name, entry->long_name);
+             !(entry->flags & G_OPTION_FLAG_NOALIAS))
+           entry->long_name = g_strdup_printf ("%s-%s", g->name, entry->long_name);
          else  
            g_hash_table_insert (shadow_map, (gpointer)entry->long_name, entry);
 
          if (seen[(guchar)entry->short_name] && 
-             !(entry->flags && G_OPTION_FLAG_NOALIAS))
+             !(entry->flags & G_OPTION_FLAG_NOALIAS))
            entry->short_name = 0;
          else
            seen[(guchar)entry->short_name] = TRUE;
@@ -516,11 +818,11 @@ print_help (GOptionContext *context,
 
   list = context->groups;
 
-  max_length = g_utf8_strlen ("-?, --help", -1);
+  max_length = _g_utf8_strwidth ("-?, --help", -1);
 
   if (list)
     {
-      len = g_utf8_strlen ("--help-all", -1);
+      len = _g_utf8_strwidth ("--help-all", -1);
       max_length = MAX (max_length, len);
     }
 
@@ -532,14 +834,14 @@ print_help (GOptionContext *context,
 
   while (list != NULL)
     {
-      GOptionGroup *group = list->data;
+      GOptionGroup *g = list->data;
       
       /* First, we check the --help-<groupname> options */
-      len = g_utf8_strlen ("--help-", -1) + g_utf8_strlen (group->name, -1);
+      len = _g_utf8_strwidth ("--help-", -1) + _g_utf8_strwidth (g->name, -1);
       max_length = MAX (max_length, len);
 
       /* Then we go through the entries */
-      len = calculate_max_length (group);
+      len = calculate_max_length (g);
       max_length = MAX (max_length, len);
       
       list = list->next;
@@ -551,37 +853,46 @@ print_help (GOptionContext *context,
   if (!group)
     {
       list = context->groups;
-      
-      g_print ("%s\n  -%c, --%-*s %s\n", 
-              _("Help Options:"), '?', max_length - 4, "help", 
-              _("Show help options"));
+
+      token = context_has_h_entry (context) ? '?' : 'h';
+
+      g_string_append_printf (string, "%s\n  -%c, --%-*s %s\n", 
+                             _("Help Options:"), token, max_length - 4, "help", 
+                             _("Show help options"));
       
       /* We only want --help-all when there are groups */
       if (list)
-       g_print ("  --%-*s %s\n", max_length, "help-all", 
-                _("Show all help options"));
+       g_string_append_printf (string, "  --%-*s %s\n", 
+                                max_length, "help-all", 
+                                _("Show all help options"));
       
       while (list)
        {
-         GOptionGroup *group = list->data;
-         
-         g_print ("  --help-%-*s %s\n", max_length - 5, group->name, 
-                  TRANSLATE (group, group->help_description));
+         GOptionGroup *g = list->data;
+
+         if (group_has_visible_entries (context, g, FALSE))
+           g_string_append_printf (string, "  --help-%-*s %s\n",
+                                   max_length - 5, g->name,
+                                   TRANSLATE (g, g->help_description));
          
          list = list->next;
        }
 
-      g_print ("\n");
+      g_string_append (string, "\n");
     }
 
   if (group)
     {
       /* Print a certain group */
-      
-      g_print ("%s\n", TRANSLATE (group, group->description));
-      for (i = 0; i < group->n_entries; i++)
-       print_entry (group, max_length, &group->entries[i]);
-      g_print ("\n");
+
+      if (group_has_visible_entries (context, group, FALSE))
+        {
+          g_string_append (string, TRANSLATE (group, group->description));
+          g_string_append (string, "\n");
+          for (i = 0; i < group->n_entries; i++)
+            print_entry (group, max_length, &group->entries[i], string);
+          g_string_append (string, "\n");
+        }
     }
   else if (!main_help)
     {
@@ -591,47 +902,74 @@ print_help (GOptionContext *context,
 
       while (list)
        {
-         GOptionGroup *group = list->data;
-
-         g_print ("%s\n", group->description);
+         GOptionGroup *g = list->data;
 
-         for (i = 0; i < group->n_entries; i++)
-           if (!(group->entries[i].flags & G_OPTION_FLAG_IN_MAIN))
-             print_entry (group, max_length, &group->entries[i]);
+         if (group_has_visible_entries (context, g, FALSE))
+           {
+             g_string_append (string, g->description);
+             g_string_append (string, "\n");
+             for (i = 0; i < g->n_entries; i++)
+               if (!(g->entries[i].flags & G_OPTION_FLAG_IN_MAIN))
+                 print_entry (g, max_length, &g->entries[i], string);
          
-         g_print ("\n");
+             g_string_append (string, "\n");
+           }
+
          list = list->next;
        }
     }
   
   /* Print application options if --help or --help-all has been specified */
-  if (main_help || !group)
+  if ((main_help || !group) &&
+      (group_has_visible_entries (context, context->main_group, TRUE) ||
+       group_list_has_visible_entires (context, context->groups, TRUE)))
     {
       list = context->groups;
 
-      g_print ("%s\n", _("Application Options:"));
-
+      g_string_append (string,  _("Application Options:"));
+      g_string_append (string, "\n");
       if (context->main_group)
        for (i = 0; i < context->main_group->n_entries; i++) 
          print_entry (context->main_group, max_length, 
-                      &context->main_group->entries[i]);
+                      &context->main_group->entries[i], string);
 
       while (list != NULL)
        {
-         GOptionGroup *group = list->data;
+         GOptionGroup *g = list->data;
 
          /* Print main entries from other groups */
-         for (i = 0; i < group->n_entries; i++)
-           if (group->entries[i].flags & G_OPTION_FLAG_IN_MAIN)
-             print_entry (group, max_length, &group->entries[i]);
+         for (i = 0; i < g->n_entries; i++)
+           if (g->entries[i].flags & G_OPTION_FLAG_IN_MAIN)
+             print_entry (g, max_length, &g->entries[i], string);
          
          list = list->next;
        }
 
-      g_print ("\n");
+      g_string_append (string, "\n");
     }
-  
-  exit (0);
+  if (context->description)
+    {
+      g_string_append (string, TRANSLATE (context, context->description));
+      g_string_append (string, "\n");
+    }
+
+  return g_string_free (string, FALSE);
+}
+
+G_GNUC_NORETURN
+static void
+print_help (GOptionContext *context,
+           gboolean        main_help,
+           GOptionGroup   *group)
+{
+  gchar *help;
+
+  help = g_option_context_get_help (context, main_help, group);
+  g_print ("%s", help);
+  g_free (help);
+
+  exit (0);  
 }
 
 static gboolean
@@ -668,6 +1006,77 @@ parse_int (const gchar *arg_name,
   return TRUE;
 }
 
+
+static gboolean
+parse_double (const gchar *arg_name,
+          const gchar *arg,
+          gdouble        *result,
+          GError     **error)
+{
+  gchar *end;
+  gdouble tmp;
+
+  errno = 0;
+  tmp = g_strtod (arg, &end);
+  
+  if (*arg == '\0' || *end != '\0')
+    {
+      g_set_error (error,
+                  G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
+                  _("Cannot parse double value '%s' for %s"),
+                  arg, arg_name);
+      return FALSE;
+    }
+  if (errno == ERANGE)
+    {
+      g_set_error (error,
+                  G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
+                  _("Double value '%s' for %s out of range"),
+                  arg, arg_name);
+      return FALSE;
+    }
+
+  *result = tmp;
+  
+  return TRUE;
+}
+
+
+static gboolean
+parse_int64 (const gchar *arg_name,
+            const gchar *arg,
+            gint64      *result,
+            GError     **error)
+{
+  gchar *end;
+  gint64 tmp;
+
+  errno = 0;
+  tmp = g_ascii_strtoll (arg, &end, 0);
+
+  if (*arg == '\0' || *end != '\0')
+    {
+      g_set_error (error,
+                  G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
+                  _("Cannot parse integer value '%s' for %s"),
+                  arg, arg_name);
+      return FALSE;
+    }
+  if (errno == ERANGE)
+    {
+      g_set_error (error,
+                  G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
+                  _("Integer value '%s' for %s out of range"),
+                  arg, arg_name);
+      return FALSE;
+    }
+
+  *result = tmp;
+  
+  return TRUE;
+}
+
+
 static Change *
 get_change (GOptionContext *context,
            GOptionArg      arg_type,
@@ -719,7 +1128,9 @@ parse_arg (GOptionContext *context,
      
 {
   Change *change;
-  
+
+  g_assert (value || OPTIONAL_ARG (entry) || NO_ARG (entry));
+
   switch (entry->arg)
     {
     case G_OPTION_ARG_NONE:
@@ -880,12 +1291,51 @@ parse_arg (GOptionContext *context,
 
        retval = (* (GOptionArgFunc) entry->arg_data) (option_name, data, group->user_data, error);
        
+       if (!retval && error != NULL && *error == NULL)
+         g_set_error (error, 
+                      G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
+                      _("Error parsing option %s"), option_name);
+
        g_free (data);
        
        return retval;
        
        break;
       }
+    case G_OPTION_ARG_DOUBLE:
+      {
+       gdouble data;
+
+       if (!parse_double (option_name, value,
+                       &data,
+                       error))
+         {
+           return FALSE;
+         }
+
+       change = get_change (context, G_OPTION_ARG_DOUBLE,
+                            entry->arg_data);
+       change->prev.dbl = *(gdouble *)entry->arg_data;
+       *(gdouble *)entry->arg_data = data;
+       break;
+      }
+    case G_OPTION_ARG_INT64:
+      {
+        gint64 data;
+
+       if (!parse_int64 (option_name, value,
+                        &data,
+                        error))
+         {
+           return FALSE;
+         }
+
+       change = get_change (context, G_OPTION_ARG_INT64,
+                            entry->arg_data);
+       change->prev.int64 = *(gint64 *)entry->arg_data;
+       *(gint64 *)entry->arg_data = data;
+       break;
+      }
     default:
       g_assert_not_reached ();
     }
@@ -896,8 +1346,8 @@ parse_arg (GOptionContext *context,
 static gboolean
 parse_short_option (GOptionContext *context,
                    GOptionGroup   *group,
-                   gint            index,
-                   gint           *new_index,
+                   gint            idx,
+                   gint           *new_idx,
                    gchar           arg,
                    gint           *argc,
                    gchar        ***argv,
@@ -919,36 +1369,36 @@ parse_short_option (GOptionContext *context,
            value = NULL;
          else
            {
-             if (*new_index > index)
+             if (*new_idx > idx)
                {
-                 g_warning ("FIXME: figure out the correct error here");
-
+                 g_set_error (error, 
+                              G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
+                              _("Error parsing option %s"), option_name);
+                 g_free (option_name);
                  return FALSE;
                }
 
-             option_name = g_strdup_printf ("-%c", group->entries[j].short_name);
-             
-             if (index < *argc - 1)
+             if (idx < *argc - 1)
                {
                  if (!OPTIONAL_ARG (&group->entries[j]))       
                    {    
-                     value = (*argv)[index + 1];
-                     add_pending_null (context, &((*argv)[index + 1]), NULL);
-                     *new_index = index+1;
+                     value = (*argv)[idx + 1];
+                     add_pending_null (context, &((*argv)[idx + 1]), NULL);
+                     *new_idx = idx + 1;
                    }
                  else
                    {
-                      if ((*argv)[index + 1][0] == '-') 
+                      if ((*argv)[idx + 1][0] == '-') 
                        value = NULL;
                      else
                        {
-                         value = (*argv)[index + 1];
-                         add_pending_null (context, &((*argv)[index + 1]), NULL);
-                         *new_index = index + 1;
+                         value = (*argv)[idx + 1];
+                         add_pending_null (context, &((*argv)[idx + 1]), NULL);
+                         *new_idx = idx + 1;
                        }
                    }
                }
-             else if (index >= *argc - 1 && OPTIONAL_ARG (&group->entries[j]))
+             else if (idx >= *argc - 1 && OPTIONAL_ARG (&group->entries[j]))
                value = NULL;
              else
                {
@@ -978,7 +1428,7 @@ parse_short_option (GOptionContext *context,
 static gboolean
 parse_long_option (GOptionContext *context,
                   GOptionGroup   *group,
-                  gint           *index,
+                  gint           *idx,
                   gchar          *arg,
                   gboolean        aliased,
                   gint           *argc,
@@ -990,7 +1440,7 @@ parse_long_option (GOptionContext *context,
 
   for (j = 0; j < group->n_entries; j++)
     {
-      if (*index >= *argc)
+      if (*idx >= *argc)
        return TRUE;
 
       if (aliased && (group->entries[j].flags & G_OPTION_FLAG_NOALIAS))
@@ -1000,14 +1450,17 @@ parse_long_option (GOptionContext *context,
          strcmp (arg, group->entries[j].long_name) == 0)
        {
          gchar *option_name;
+         gboolean retval;
 
          option_name = g_strconcat ("--", group->entries[j].long_name, NULL);
-         parse_arg (context, group, &group->entries[j],
-                    NULL, option_name, error);
+         retval = parse_arg (context, group, &group->entries[j],
+                             NULL, option_name, error);
          g_free(option_name);
          
-         add_pending_null (context, &((*argv)[*index]), NULL);
+         add_pending_null (context, &((*argv)[*idx]), NULL);
          *parsed = TRUE;
+
+         return retval;
        }
       else
        {
@@ -1019,22 +1472,22 @@ parse_long_option (GOptionContext *context,
              gchar *value = NULL;
              gchar *option_name;
 
-             add_pending_null (context, &((*argv)[*index]), NULL);
+             add_pending_null (context, &((*argv)[*idx]), NULL);
              option_name = g_strconcat ("--", group->entries[j].long_name, NULL);
 
              if (arg[len] == '=')
                value = arg + len + 1;
-             else if (*index < *argc - 1) 
+             else if (*idx < *argc - 1) 
                {
                  if (!(group->entries[j].flags & G_OPTION_FLAG_OPTIONAL_ARG))  
                    {    
-                     value = (*argv)[*index + 1];
-                     add_pending_null (context, &((*argv)[*index + 1]), NULL);
-                     (*index)++;
+                     value = (*argv)[*idx + 1];
+                     add_pending_null (context, &((*argv)[*idx + 1]), NULL);
+                     (*idx)++;
                    }
                  else
                    {
-                      if ((*argv)[*index + 1][0] == '-') 
+                      if ((*argv)[*idx + 1][0] == '-') 
                        {
                          gboolean retval;
                          retval = parse_arg (context, group, &group->entries[j],
@@ -1045,13 +1498,13 @@ parse_long_option (GOptionContext *context,
                        }
                      else
                        {
-                         value = (*argv)[*index + 1];
-                         add_pending_null (context, &((*argv)[*index + 1]), NULL);
-                         (*index)++;
+                         value = (*argv)[*idx + 1];
+                         add_pending_null (context, &((*argv)[*idx + 1]), NULL);
+                         (*idx)++;
                        }
                    }
                }
-             else if (*index >= *argc - 1 &&
+             else if (*idx >= *argc - 1 &&
                       group->entries[j].flags & G_OPTION_FLAG_OPTIONAL_ARG)
                {
                    gboolean retval;
@@ -1089,7 +1542,7 @@ parse_long_option (GOptionContext *context,
 static gboolean
 parse_remaining_arg (GOptionContext *context,
                     GOptionGroup   *group,
-                    gint           *index,
+                    gint           *idx,
                     gint           *argc,
                     gchar        ***argv,
                     GError        **error,
@@ -1099,18 +1552,19 @@ parse_remaining_arg (GOptionContext *context,
 
   for (j = 0; j < group->n_entries; j++)
     {
-      if (*index >= *argc)
+      if (*idx >= *argc)
        return TRUE;
 
       if (group->entries[j].long_name[0])
        continue;
 
-      g_return_val_if_fail (group->entries[j].arg == G_OPTION_ARG_STRING_ARRAY ||
+      g_return_val_if_fail (group->entries[j].arg == G_OPTION_ARG_CALLBACK ||
+                            group->entries[j].arg == G_OPTION_ARG_STRING_ARRAY ||
                            group->entries[j].arg == G_OPTION_ARG_FILENAME_ARRAY, FALSE);
       
-      add_pending_null (context, &((*argv)[*index]), NULL);
+      add_pending_null (context, &((*argv)[*idx]), NULL);
       
-      if (!parse_arg (context, group, &group->entries[j], (*argv)[*index], "", error))
+      if (!parse_arg (context, group, &group->entries[j], (*argv)[*idx], "", error))
        return FALSE;
       
       *parsed = TRUE;
@@ -1150,6 +1604,12 @@ free_changes_list (GOptionContext *context,
              g_strfreev (change->allocated.array.data);
              *(gchar ***)change->arg_data = change->prev.array;
              break;
+           case G_OPTION_ARG_DOUBLE:
+             *(gdouble *)change->arg_data = change->prev.dbl;
+             break;
+           case G_OPTION_ARG_INT64:
+             *(gint64 *)change->arg_data = change->prev.int64;
+             break;
            default:
              g_assert_not_reached ();
            }
@@ -1195,8 +1655,8 @@ free_pending_nulls (GOptionContext *context,
 /**
  * g_option_context_parse:
  * @context: a #GOptionContext
- * @argc: a pointer to the number of command line arguments.
- * @argv: a pointer to the array of command line arguments.
+ * @argc: a pointer to the number of command line arguments
+ * @argv: a pointer to the array of command line arguments
  * @error: a return location for errors 
  * 
  * Parses the command line arguments, recognizing options
@@ -1216,6 +1676,11 @@ free_pending_nulls (GOptionContext *context,
  * @argv array contains one of the recognized help options,
  * this function will produce help output to stdout and
  * call <literal>exit (0)</literal>.
+ *
+ * Note that function depends on the 
+ * <link linkend="setlocale">current locale</link> for 
+ * automatic character set conversion of string and filename
+ * arguments.
  * 
  * Return value: %TRUE if the parsing was successful, 
  *               %FALSE if an error occurred
@@ -1232,19 +1697,20 @@ g_option_context_parse (GOptionContext   *context,
   GList *list;
 
   /* Set program name */
-  if (argc && argv && *argc)
-    {
-      gchar *prgname;
-      
-      prgname = g_path_get_basename ((*argv)[0]);
-      g_set_prgname (prgname);
-      g_free (prgname);
-    }
-  else
+  if (!g_get_prgname())
     {
-      g_set_prgname ("<unknown>");
+      if (argc && argv && *argc)
+       {
+         gchar *prgname;
+         
+         prgname = g_path_get_basename ((*argv)[0]);
+         g_set_prgname (prgname);
+         g_free (prgname);
+       }
+      else
+       g_set_prgname ("<unknown>");
     }
-  
+
   /* Call pre-parse hooks */
   list = context->groups;
   while (list)
@@ -1304,8 +1770,6 @@ g_option_context_parse (GOptionContext   *context,
                        print_help (context, FALSE, NULL);                    
                      else if (strncmp (arg, "help-", 5) == 0)
                        {
-                         GList *list;
-                         
                          list = context->groups;
                          
                          while (list)
@@ -1375,36 +1839,25 @@ g_option_context_parse (GOptionContext   *context,
                    continue;
                }
              else
-               {
-                 /* short option */
-
-                 gint new_i, j;
+               { /* short option */
+                 gint new_i = i, arg_length;
                  gboolean *nulled_out = NULL;
-                 
+                  gboolean has_h_entry = context_has_h_entry (context);
                  arg = (*argv)[i] + 1;
-
-                 new_i = i;
-
-                 if (context->ignore_unknown)
-                   nulled_out = g_new0 (gboolean, strlen (arg));
-                 
-                 for (j = 0; j < strlen (arg); j++)
+                  arg_length = strlen (arg);
+                  nulled_out = g_newa (gboolean, arg_length);
+                  memset (nulled_out, 0, arg_length * sizeof (gboolean));
+                 for (j = 0; j < arg_length; j++)
                    {
-                     if (context->help_enabled && arg[j] == '?')
-                       print_help (context, TRUE, NULL);
-                     
-                     parsed = FALSE;
-                     
+                     if (context->help_enabled && (arg[j] == '?' ||
+                        (arg[j] == 'h' && !has_h_entry)))
+                        print_help (context, TRUE, NULL);
+                      parsed = FALSE;
                      if (context->main_group &&
                          !parse_short_option (context, context->main_group,
                                               i, &new_i, arg[j],
                                               argc, argv, error, &parsed))
-                       {
-
-                         g_free (nulled_out);
-                         goto fail;
-                       }
-
+                        goto fail;
                      if (!parsed)
                        {
                          /* Try the groups */
@@ -1412,47 +1865,38 @@ g_option_context_parse (GOptionContext   *context,
                          while (list)
                            {
                              GOptionGroup *group = list->data;
-                             
                              if (!parse_short_option (context, group, i, &new_i, arg[j],
                                                       argc, argv, error, &parsed))
                                goto fail;
-                             
                              if (parsed)
                                break;
-                         
                              list = list->next;
                            }
                        }
-
-                     if (context->ignore_unknown)
-                       {
-                         if (parsed)
-                           nulled_out[j] = TRUE;
-                         else
-                           continue;
-                       }
-
-                     if (!parsed)
-                       break;
+                      
+                     if (context->ignore_unknown && parsed)
+                        nulled_out[j] = TRUE;
+                      else if (context->ignore_unknown)
+                        continue;
+                      else if (!parsed)
+                        break;
+                      /* !context->ignore_unknown && parsed */
                    }
-
                  if (context->ignore_unknown)
                    {
                      gchar *new_arg = NULL; 
                      gint arg_index = 0;
-                     
-                     for (j = 0; j < strlen (arg); j++)
+                     for (j = 0; j < arg_length; j++)
                        {
                          if (!nulled_out[j])
                            {
                              if (!new_arg)
-                               new_arg = g_malloc (strlen (arg) + 1);
+                               new_arg = g_malloc (arg_length + 1);
                              new_arg[arg_index++] = arg[j];
                            }
                        }
                      if (new_arg)
                        new_arg[arg_index] = '\0';
-                     
                      add_pending_null (context, &((*argv)[i]), new_arg);
                    }
                  else if (parsed)
@@ -1711,9 +2155,8 @@ g_option_group_set_parse_hooks (GOptionGroup     *group,
  * Associates a function with @group which will be called 
  * from g_option_context_parse() when an error occurs.
  *
- * Note that the user data to be passed to @pre_parse_func and
- * @post_parse_func can be specified when constructing the group
- * with g_option_group_new().
+ * Note that the user data to be passed to @error_func can be
+ * specified when constructing the group with g_option_group_new().
  *
  * Since: 2.6
  **/
@@ -1760,11 +2203,11 @@ g_option_group_set_translate_func (GOptionGroup   *group,
   group->translate_notify = destroy_notify;
 }
 
-static gchar *
+static const gchar *
 dgettext_swapped (const gchar *msgid, 
                  const gchar *domainname)
 {
-  return dgettext (domainname, msgid);
+  return g_dgettext (domainname, msgid);
 }
 
 /**
@@ -1789,5 +2232,150 @@ g_option_group_set_translation_domain (GOptionGroup *group,
                                     g_free);
 } 
 
-#define __G_OPTION_C__
-#include "galiasdef.c"
+/**
+ * g_option_context_set_translate_func:
+ * @context: a #GOptionContext
+ * @func: the #GTranslateFunc, or %NULL 
+ * @data: user data to pass to @func, or %NULL
+ * @destroy_notify: a function which gets called to free @data, or %NULL
+ * 
+ * Sets the function which is used to translate the contexts 
+ * user-visible strings, for <option>--help</option> output. 
+ * If @func is %NULL, strings are not translated.
+ *
+ * Note that option groups have their own translation functions, 
+ * this function only affects the @parameter_string (see g_option_context_new()), 
+ * the summary (see g_option_context_set_summary()) and the description 
+ * (see g_option_context_set_description()).
+ *
+ * If you are using gettext(), you only need to set the translation
+ * domain, see g_option_context_set_translation_domain().
+ *
+ * Since: 2.12
+ **/
+void
+g_option_context_set_translate_func (GOptionContext *context,
+                                    GTranslateFunc func,
+                                    gpointer       data,
+                                    GDestroyNotify destroy_notify)
+{
+  g_return_if_fail (context != NULL);
+  
+  if (context->translate_notify)
+    context->translate_notify (context->translate_data);
+      
+  context->translate_func = func;
+  context->translate_data = data;
+  context->translate_notify = destroy_notify;
+}
+
+/**
+ * g_option_context_set_translation_domain:
+ * @context: a #GOptionContext
+ * @domain: the domain to use
+ * 
+ * A convenience function to use gettext() for translating
+ * user-visible strings. 
+ * 
+ * Since: 2.12
+ **/
+void
+g_option_context_set_translation_domain (GOptionContext *context,
+                                        const gchar     *domain)
+{
+  g_return_if_fail (context != NULL);
+
+  g_option_context_set_translate_func (context, 
+                                      (GTranslateFunc)dgettext_swapped,
+                                      g_strdup (domain),
+                                      g_free);
+}
+
+/**
+ * g_option_context_set_summary:
+ * @context: a #GOptionContext
+ * @summary: a string to be shown in <option>--help</option> output 
+ *  before the list of options, or %NULL
+ * 
+ * Adds a string to be displayed in <option>--help</option> output
+ * before the list of options. This is typically a summary of the
+ * program functionality. 
+ *
+ * Note that the summary is translated (see 
+ * g_option_context_set_translate_func() and
+ * g_option_context_set_translation_domain()).
+ *
+ * Since: 2.12
+ */
+void
+g_option_context_set_summary (GOptionContext *context,
+                             const gchar    *summary)
+{
+  g_return_if_fail (context != NULL);
+
+  g_free (context->summary);
+  context->summary = g_strdup (summary);
+}
+
+
+/**
+ * g_option_context_get_summary:
+ * @context: a #GOptionContext
+ * 
+ * Returns the summary. See g_option_context_set_summary().
+ *
+ * Returns: the summary
+ *
+ * Since: 2.12
+ */
+G_CONST_RETURN gchar *
+g_option_context_get_summary (GOptionContext *context)
+{
+  g_return_val_if_fail (context != NULL, NULL);
+
+  return context->summary;
+}
+
+/**
+ * g_option_context_set_description:
+ * @context: a #GOptionContext
+ * @description: a string to be shown in <option>--help</option> output 
+ *   after the list of options, or %NULL
+ * 
+ * Adds a string to be displayed in <option>--help</option> output
+ * after the list of options. This text often includes a bug reporting
+ * address.
+ *
+ * Note that the summary is translated (see 
+ * g_option_context_set_translate_func()).
+ *
+ * Since: 2.12
+ */
+void
+g_option_context_set_description (GOptionContext *context,
+                                 const gchar    *description)
+{
+  g_return_if_fail (context != NULL);
+
+  g_free (context->description);
+  context->description = g_strdup (description);
+}
+
+
+/**
+ * g_option_context_get_description:
+ * @context: a #GOptionContext
+ * 
+ * Returns the description. See g_option_context_set_description().
+ *
+ * Returns: the description
+ *
+ * Since: 2.12
+ */
+G_CONST_RETURN gchar *
+g_option_context_get_description (GOptionContext *context)
+{
+  g_return_val_if_fail (context != NULL, NULL);
+
+  return context->description;
+}