Documentation updates.
[platform/upstream/glib.git] / glib / goption.c
1 /* goption.c - Option parser
2  *
3  *  Copyright (C) 1999, 2003 Red Hat Software
4  *  Copyright (C) 2004       Anders Carlsson <andersca@gnome.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include "config.h"
23
24 #include "galias.h"
25
26 #include "goption.h"
27 #include "glib.h"
28 #include "gi18n.h"
29
30 #include <string.h>
31 #include <stdlib.h>
32 #include <errno.h>
33
34 #define TRANSLATE(group, str) (((group)->translate_func ? (* (group)->translate_func) ((str), (group)->translate_data) : (str)))
35
36 typedef struct {
37   GOptionArg arg_type;
38   gpointer arg_data;  
39   union {
40     gboolean bool;
41     gint integer;
42     gchar *str;
43     gchar **array;
44   } prev;
45   union {
46     gchar *str;
47     struct {
48       gint len;
49       gchar **data;
50     } array;
51   } allocated;
52 } Change;
53
54 typedef struct
55 {
56   gchar **ptr;
57   gchar *value;
58 } PendingNull;
59
60 struct _GOptionContext
61 {
62   GList *groups;
63
64   gchar *parameter_string;
65
66   gboolean help_enabled;
67   gboolean ignore_unknown;
68   
69   GOptionGroup *main_group;
70
71   /* We keep a list of change so we can revert them */
72   GList *changes;
73   
74   /* We also keep track of all argv elements that should be NULLed or
75    * modified.
76    */
77   GList *pending_nulls;
78 };
79
80 struct _GOptionGroup
81 {
82   gchar *name;
83   gchar *description;
84   gchar *help_description;
85
86   GDestroyNotify  destroy_notify;
87   gpointer        user_data;
88
89   GTranslateFunc  translate_func;
90   GDestroyNotify  translate_notify;
91   gpointer        translate_data;
92
93   GOptionEntry *entries;
94   gint         n_entries;
95
96   GOptionParseFunc pre_parse_func;
97   GOptionParseFunc post_parse_func;
98   GOptionErrorFunc error_func;
99 };
100
101 static void free_changes_list (GOptionContext *context,
102                                gboolean        revert);
103 static void free_pending_nulls (GOptionContext *context,
104                                 gboolean        perform_nulls);
105
106 GQuark
107 g_option_error_quark (void)
108 {
109   static GQuark q = 0;
110   
111   if (q == 0)
112     q = g_quark_from_static_string ("g-option-context-error-quark");
113
114   return q;
115 }
116
117 /**
118  * g_option_context_new:
119  * @parameter_string: a string which is displayed in
120  *    the first line of <option>--help</option> output, after 
121  *    <literal><replaceable>programname</replaceable> [OPTION...]</literal>
122  *
123  * Creates a new option context. 
124  *
125  * Returns: a newly created #GOptionContext, which must be
126  *    freed with g_option_context_free() after use.
127  *
128  * Since: 2.6
129  */
130 GOptionContext *
131 g_option_context_new (const gchar *parameter_string)
132
133 {
134   GOptionContext *context;
135
136   context = g_new0 (GOptionContext, 1);
137
138   context->parameter_string = g_strdup (parameter_string);
139   context->help_enabled = TRUE;
140   context->ignore_unknown = FALSE;
141
142   return context;
143 }
144
145 /**
146  * g_option_context_free:
147  * @context: a #GOptionContext 
148  *
149  * Frees context and all the groups which have been 
150  * added to it.
151  *
152  * Since: 2.6
153  */
154 void g_option_context_free (GOptionContext *context) 
155 {
156   g_return_if_fail (context != NULL);
157
158   g_list_foreach (context->groups, (GFunc)g_option_group_free, NULL);
159   g_list_free (context->groups);
160
161   if (context->main_group) 
162     g_option_group_free (context->main_group);
163
164   free_changes_list (context, FALSE);
165   free_pending_nulls (context, FALSE);
166   
167   g_free (context->parameter_string);
168   
169   g_free (context);
170 }
171
172
173 /**
174  * g_option_context_set_help_enabled:
175  * @context: a #GOptionContext
176  * @help_enabled: %TRUE to enable <option>--help</option>, %FALSE to disable it
177  *
178  * Enables or disables automatic generation of <option>--help</option> 
179  * output. By default, g_option_context_parse() recognizes
180  * <option>--help</option>, <option>-?</option>, <option>--help-all</option>
181  * and <option>--help-</option><replaceable>groupname</replaceable> and creates
182  * suitable output to stdout. 
183  *
184  * Since: 2.6
185  */
186 void g_option_context_set_help_enabled (GOptionContext *context,
187                                         gboolean        help_enabled)
188
189 {
190   g_return_if_fail (context != NULL);
191
192   context->help_enabled = help_enabled;
193 }
194
195 /**
196  * g_option_context_get_help_enabled:
197  * @context: a #GOptionContext
198  * 
199  * Returns whether automatic <option>--help</option> generation
200  * is turned on for @context. See g_option_context_set_help_enabled().
201  * 
202  * Returns: %TRUE if automatic help generation is turned on.
203  *
204  * Since: 2.6
205  */
206 gboolean 
207 g_option_context_get_help_enabled (GOptionContext *context) 
208 {
209   g_return_val_if_fail (context != NULL, FALSE);
210   
211   return context->help_enabled;
212 }
213
214 /**
215  * g_option_context_set_ignore_unknown_options:
216  * @context: a #GOptionContext
217  * @ignore_unknown: %TRUE to ignore unknown options, %FALSE to produce
218  *    an error when unknown options are met
219  * 
220  * Sets whether to ignore unknown options or not. If an argument is 
221  * ignored, it is left in the @argv array after parsing. By default, 
222  * g_option_context_parse() treats unknown options as error.
223  * 
224  * This setting does not affect non-option arguments (i.e. arguments 
225  * which don't start with a dash). But note that GOption cannot reliably
226  * determine whether a non-option belongs to a preceding unknown option.
227  *
228  * Since: 2.6
229  **/
230 void
231 g_option_context_set_ignore_unknown_options (GOptionContext *context,
232                                              gboolean        ignore_unknown)
233 {
234   g_return_if_fail (context != NULL);
235
236   context->ignore_unknown = ignore_unknown;
237 }
238
239 /**
240  * g_option_context_get_ignore_unknown_options:
241  * @context: a #GOptionContext
242  * 
243  * Returns whether unknown options are ignored or not. See
244  * g_option_context_set_ignore_unknown_options().
245  * 
246  * Returns: %TRUE if unknown options are ignored.
247  * 
248  * Since: 2.6
249  **/
250 gboolean
251 g_option_context_get_ignore_unknown_options (GOptionContext *context)
252 {
253   g_return_val_if_fail (context != NULL, FALSE);
254
255   return context->ignore_unknown;
256 }
257
258 /**
259  * g_option_context_add_group:
260  * @context: a #GOptionContext
261  * @group: the group to add
262  * 
263  * Adds a #GOptionGroup to the @context, so that parsing with @context
264  * will recognize the options in the group. Note that the group will
265  * be freed together with the context when g_option_context_free() is
266  * called, so you must not free the group yourself after adding it
267  * to a context.
268  *
269  * Since: 2.6
270  **/
271 void
272 g_option_context_add_group (GOptionContext *context,
273                             GOptionGroup   *group)
274 {
275   GList *list;
276
277   g_return_if_fail (context != NULL);
278   g_return_if_fail (group != NULL);
279   g_return_if_fail (group->name != NULL);
280   g_return_if_fail (group->description != NULL);
281   g_return_if_fail (group->help_description != NULL);
282
283   for (list = context->groups; list; list = list->next)
284     {
285       GOptionGroup *g = (GOptionGroup *)list->data;
286
287       if ((group->name == NULL && g->name == NULL) ||
288           (group->name && g->name && strcmp (group->name, g->name) == 0))
289         g_warning ("A group named \"%s\" is already part of this GOptionContext", 
290                    group->name);
291     }
292
293   context->groups = g_list_append (context->groups, group);
294 }
295
296 /**
297  * g_option_context_set_main_group:
298  * @context: a #GOptionContext
299  * @group: the group to set as main group
300  * 
301  * Sets a #GOptionGroup as main group of the @context. 
302  * This has the same effect as calling g_option_context_add_group(), 
303  * the only difference is that the options in the main group are 
304  * treated differently when generating <option>--help</option> output.
305  *
306  * Since: 2.6
307  **/
308 void
309 g_option_context_set_main_group (GOptionContext *context,
310                                  GOptionGroup   *group)
311 {
312   g_return_if_fail (context != NULL);
313   g_return_if_fail (group != NULL);
314
315   context->main_group = group;
316 }
317
318 /**
319  * g_option_context_get_main_group:
320  * @context: a #GOptionContext
321  * 
322  * Returns a pointer to the main group of @context.
323  * 
324  * Return value: the main group of @context, or %NULL if @context doesn't
325  *  have a main group. Note that group belongs to @context and should
326  *  not be modified or freed.
327  *
328  * Since: 2.6
329  **/
330 GOptionGroup *
331 g_option_context_get_main_group (GOptionContext *context)
332 {
333   g_return_val_if_fail (context != NULL, NULL);
334
335   return context->main_group;
336 }
337
338 /**
339  * g_option_context_add_main_entries:
340  * @context: a #GOptionContext
341  * @entries: a %NULL-terminated array of #GOptionEntry<!-- -->s
342  * @translation_domain: a translation domain to use for translating
343  *    the <option>--help</option> output for the options in @entries
344  *    with gettext(), or %NULL
345  * 
346  * A convenience function which creates a main group if it doesn't 
347  * exist, adds the @entries to it and sets the translation domain.
348  * 
349  * Since: 2.6
350  **/
351 void
352 g_option_context_add_main_entries (GOptionContext      *context,
353                                    const GOptionEntry  *entries,
354                                    const gchar         *translation_domain)
355 {
356   g_return_if_fail (entries != NULL);
357
358   if (!context->main_group)
359     context->main_group = g_option_group_new (NULL, NULL, NULL, NULL, NULL);
360   
361   g_option_group_add_entries (context->main_group, entries);
362   g_option_group_set_translation_domain (context->main_group, translation_domain);
363 }
364
365 static void
366 print_entry (GOptionGroup       *group,
367              gint                max_length,
368              const GOptionEntry *entry)
369 {
370   GString *str;
371
372   if (entry->flags & G_OPTION_FLAG_HIDDEN)
373     return;
374
375   str = g_string_new (NULL);
376   
377   if (entry->short_name)
378     g_string_append_printf (str, "  -%c, --%s", entry->short_name, entry->long_name);
379   else
380     g_string_append_printf (str, "  --%s", entry->long_name);
381   
382   if (entry->arg_description)
383     g_string_append_printf (str, "=%s", TRANSLATE (group, entry->arg_description));
384   
385   g_print ("%-*s %s\n", max_length + 4, str->str,
386            entry->description ? TRANSLATE (group, entry->description) : "");
387   g_string_free (str, TRUE);  
388 }
389
390 static void
391 print_help (GOptionContext *context,
392             gboolean        main_help,
393             GOptionGroup   *group)
394 {
395   GList *list;
396   gint max_length, len;
397   gint i;
398   GHashTable *shadow_map;
399   gboolean seen[256];
400   
401   g_print ("%s\n  %s %s %s\n\n", 
402            _("Usage:"), g_get_prgname(), _("[OPTION...]"),
403            context->parameter_string ? context->parameter_string : "");
404
405   memset (seen, 0, sizeof (gboolean) * 256);
406   shadow_map = g_hash_table_new (g_str_hash, g_str_equal);
407
408   if (context->main_group)
409     {
410       for (i = 0; i < context->main_group->n_entries; i++)
411         {
412           g_hash_table_insert (shadow_map, 
413                                (gpointer)context->main_group->entries[i].long_name, 
414                                context->main_group->entries + i);
415           
416           if (seen[(guchar)context->main_group->entries[i].short_name])
417             context->main_group->entries[i].short_name = 0;
418           else
419             seen[(guchar)context->main_group->entries[i].short_name] = TRUE;
420         }
421     }
422
423   list = context->groups;
424   while (list != NULL)
425     {
426       GOptionGroup *group = list->data;
427       for (i = 0; i < group->n_entries; i++)
428         {
429           if (g_hash_table_lookup (shadow_map, group->entries[i].long_name))
430             group->entries[i].long_name = g_strdup_printf ("%s-%s", group->name, group->entries[i].long_name);
431           else  
432             g_hash_table_insert (shadow_map, (gpointer)group->entries[i].long_name, group->entries + i);
433
434           if (seen[(guchar)group->entries[i].short_name])
435             group->entries[i].short_name = 0;
436           else
437             seen[(guchar)group->entries[i].short_name] = TRUE;
438         }
439       list = list->next;
440     }
441
442   g_hash_table_destroy (shadow_map);
443
444   list = context->groups;
445
446   max_length = g_utf8_strlen ("--help, -?", -1);
447
448   if (list)
449     {
450       len = g_utf8_strlen ("--help-all", -1);
451       max_length = MAX (max_length, len);
452     }
453
454   while (list != NULL)
455     {
456       GOptionGroup *group = list->data;
457       
458       /* First, we check the --help-<groupname> options */
459       len = g_utf8_strlen ("--help-", -1) + g_utf8_strlen (group->name, -1);
460       max_length = MAX (max_length, len);
461
462       /* Then we go through the entries */
463       for (i = 0; i < group->n_entries; i++)
464         {
465           if (group->entries[i].flags & G_OPTION_FLAG_HIDDEN)
466             continue;
467
468           len = g_utf8_strlen (group->entries[i].long_name, -1);
469
470           if (group->entries[i].short_name)
471             len += 4;
472
473           if (group->entries[i].arg != G_OPTION_ARG_NONE &&
474               group->entries[i].arg_description)
475             len += 1 + g_utf8_strlen (TRANSLATE (group, group->entries[i].arg_description), -1);
476
477           max_length = MAX (max_length, len);
478         }
479       
480       list = list->next;
481     }
482
483   /* Add a bit of padding */
484   max_length += 4;
485   
486   list = context->groups;
487
488   g_print ("%s\n  --%-*s %s\n", 
489            _("Help Options:"), max_length, "help", _("Show help options"));
490
491   /* We only want --help-all when there are groups */
492   if (list)
493     g_print ("  --%-*s %s\n", max_length, "help-all", _("Show all help options"));
494
495   while (list)
496     {
497       GOptionGroup *group = list->data;
498
499       g_print ("  --help-%-*s %s\n", max_length - 5, group->name, TRANSLATE (group, group->help_description));
500       
501       list = list->next;
502     }
503
504   g_print ("\n");
505
506   if (group)
507     {
508       /* Print a certain group */
509       
510       g_print ("%s\n", TRANSLATE (group, group->description));
511       for (i = 0; i < group->n_entries; i++)
512         print_entry (group, max_length, &group->entries[i]);
513       g_print ("\n");
514     }
515   else if (!main_help)
516     {
517       /* Print all groups */
518
519       list = context->groups;
520
521       while (list)
522         {
523           GOptionGroup *group = list->data;
524
525           g_print ("%s\n", group->description);
526
527           for (i = 0; i < group->n_entries; i++)
528             if (!(group->entries[i].flags & G_OPTION_FLAG_IN_MAIN))
529               print_entry (group, max_length, &group->entries[i]);
530           
531           g_print ("\n");
532           list = list->next;
533         }
534     }
535   
536   /* Print application options if --help or --help-all has been specified */
537   if (main_help || !group)
538     {
539       list = context->groups;
540
541       g_print ("%s\n", _("Application Options:"));
542
543       if (context->main_group)
544         for (i = 0; i < context->main_group->n_entries; i++) 
545           print_entry (context->main_group, max_length, &context->main_group->entries[i]);
546
547       while (list != NULL)
548         {
549           GOptionGroup *group = list->data;
550
551           /* Print main entries from other groups */
552           for (i = 0; i < group->n_entries; i++)
553             if (group->entries[i].flags & G_OPTION_FLAG_IN_MAIN)
554               print_entry (group, max_length, &group->entries[i]);
555           
556           list = list->next;
557         }
558
559       g_print ("\n");
560     }
561   
562   exit (0);
563 }
564
565 static gboolean
566 parse_int (const gchar *arg_name,
567            const gchar *arg,
568            gint        *result,
569            GError     **error)
570 {
571   gchar *end;
572   glong tmp = strtol (arg, &end, 0);
573
574   errno = 0;
575   
576   if (*arg == '\0' || *end != '\0')
577     {
578       g_set_error (error,
579                    G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
580                    _("Cannot parse integer value '%s' for --%s"),
581                    arg, arg_name);
582       return FALSE;
583     }
584
585   *result = tmp;
586   if (*result != tmp || errno == ERANGE)
587     {
588       g_set_error (error,
589                    G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
590                    _("Integer value '%s' for %s out of range"),
591                    arg, arg_name);
592       return FALSE;
593     }
594
595   return TRUE;
596 }
597
598 static Change *
599 get_change (GOptionContext *context,
600             GOptionArg      arg_type,
601             gpointer        arg_data)
602 {
603   GList *list;
604   Change *change = NULL;
605   
606   for (list = context->changes; list != NULL; list = list->next)
607     {
608       change = list->data;
609
610       if (change->arg_data == arg_data)
611         goto found;
612     }
613
614   change = g_new0 (Change, 1);
615   change->arg_type = arg_type;
616   change->arg_data = arg_data;
617   
618   context->changes = g_list_prepend (context->changes, change);
619   
620  found:
621
622   return change;
623 }
624
625 static void
626 add_pending_null (GOptionContext *context,
627                   gchar         **ptr,
628                   gchar          *value)
629 {
630   PendingNull *n;
631
632   n = g_new0 (PendingNull, 1);
633   n->ptr = ptr;
634   n->value = value;
635
636   context->pending_nulls = g_list_prepend (context->pending_nulls, n);
637 }
638                   
639 static gboolean
640 parse_arg (GOptionContext *context,
641            GOptionGroup   *group,
642            GOptionEntry   *entry,
643            const gchar    *value,
644            const gchar    *option_name,
645            GError        **error)
646      
647 {
648   Change *change;
649   
650   switch (entry->arg)
651     {
652     case G_OPTION_ARG_NONE:
653       {
654         change = get_change (context, G_OPTION_ARG_NONE,
655                              entry->arg_data);
656
657         *(gboolean *)entry->arg_data = TRUE;
658         break;
659       }      
660     case G_OPTION_ARG_STRING:
661       {
662         gchar *data;
663
664         data = g_locale_to_utf8 (value, -1, NULL, NULL, error);
665
666         if (!data)
667           return FALSE;
668
669         change = get_change (context, G_OPTION_ARG_STRING,
670                              entry->arg_data);
671         g_free (change->allocated.str);
672         
673         change->prev.str = *(gchar **)entry->arg_data;
674         change->allocated.str = data;
675         
676         *(gchar **)entry->arg_data = data;
677         break;
678       }
679     case G_OPTION_ARG_STRING_ARRAY:
680       {
681         gchar *data;
682         
683         data = g_locale_to_utf8 (value, -1, NULL, NULL, error);
684
685         if (!data)
686           return FALSE;
687
688         change = get_change (context, G_OPTION_ARG_STRING_ARRAY,
689                              entry->arg_data);
690
691         if (change->allocated.array.len == 0)
692           {
693             change->prev.array = entry->arg_data;
694             change->allocated.array.data = g_new (gchar *, 2);
695           }
696         else
697           change->allocated.array.data =
698             g_renew (gchar *, change->allocated.array.data,
699                      change->allocated.array.len + 2);
700
701         change->allocated.array.data[change->allocated.array.len] = data;
702         change->allocated.array.data[change->allocated.array.len + 1] = NULL;
703
704         change->allocated.array.len ++;
705
706         *(gchar ***)entry->arg_data = change->allocated.array.data;
707
708         break;
709       }
710       
711     case G_OPTION_ARG_FILENAME:
712       {
713         gchar *data;
714
715 #ifdef G_OS_WIN32
716         data = g_locale_to_utf8 (value, -1, NULL, NULL, error);
717         
718         if (!data)
719           return FALSE;
720 #else
721         data = g_strdup (value);
722 #endif
723         change = get_change (context, G_OPTION_ARG_FILENAME,
724                              entry->arg_data);
725         g_free (change->allocated.str);
726         
727         change->prev.str = *(gchar **)entry->arg_data;
728         change->allocated.str = data;
729
730         *(gchar **)entry->arg_data = data;
731         break;
732       }
733
734     case G_OPTION_ARG_FILENAME_ARRAY:
735       {
736         gchar *data;
737         
738 #ifdef G_OS_WIN32
739         data = g_locale_to_utf8 (value, -1, NULL, NULL, error);
740         
741         if (!data)
742           return FALSE;
743 #else
744         data = g_strdup (value);
745 #endif
746         change = get_change (context, G_OPTION_ARG_STRING_ARRAY,
747                              entry->arg_data);
748
749         if (change->allocated.array.len == 0)
750           {
751             change->prev.array = entry->arg_data;
752             change->allocated.array.data = g_new (gchar *, 2);
753           }
754         else
755           change->allocated.array.data =
756             g_renew (gchar *, change->allocated.array.data,
757                      change->allocated.array.len + 2);
758
759         change->allocated.array.data[change->allocated.array.len] = data;
760         change->allocated.array.data[change->allocated.array.len + 1] = NULL;
761
762         change->allocated.array.len ++;
763
764         *(gchar ***)entry->arg_data = change->allocated.array.data;
765
766         break;
767       }
768       
769     case G_OPTION_ARG_INT:
770       {
771         gint data;
772
773         if (!parse_int (option_name, value,
774                         &data,
775                         error))
776           return FALSE;
777
778         change = get_change (context, G_OPTION_ARG_INT,
779                              entry->arg_data);
780         change->prev.integer = *(gint *)entry->arg_data;
781         *(gint *)entry->arg_data = data;
782         break;
783       }
784     case G_OPTION_ARG_CALLBACK:
785       {
786         gchar *tmp;
787         gboolean retval;
788         
789         tmp = g_locale_to_utf8 (value, -1, NULL, NULL, error);
790
791         if (!value)
792           return FALSE;
793
794         retval = (* (GOptionArgFunc) entry->arg_data) (option_name, tmp, group->user_data, error);
795         
796         g_free (tmp);
797         
798         return retval;
799         
800         break;
801       }
802     default:
803       g_assert_not_reached ();
804     }
805
806   return TRUE;
807 }
808
809 static gboolean
810 parse_short_option (GOptionContext *context,
811                     GOptionGroup   *group,
812                     gint            index,
813                     gint           *new_index,
814                     gchar           arg,
815                     gint           *argc,
816                     gchar        ***argv,
817                     GError        **error,
818                     gboolean       *parsed)
819 {
820   gint j;
821     
822   for (j = 0; j < group->n_entries; j++)
823     {
824       if (arg == group->entries[j].short_name)
825         {
826           if (group->entries[j].arg == G_OPTION_ARG_NONE)
827             {
828               parse_arg (context, group, &group->entries[j],
829                          NULL, NULL, error);
830               *parsed = TRUE;
831             }
832           else
833             {
834               gchar *value = NULL;
835               gchar *option_name;
836               
837               if (*new_index > index)
838                 {
839                   g_warning ("FIXME: figure out the correct error here");
840
841                   return FALSE;
842                 }
843               
844               if (index < *argc - 1)
845                 {
846                   value = (*argv)[index + 1];
847                   add_pending_null (context, &((*argv)[index + 1]), NULL);
848                   *new_index = index + 1;
849                 }
850               else
851                 value = "";
852
853
854               option_name = g_strdup_printf ("-%c", group->entries[j].short_name);
855               
856               if (!parse_arg (context, group, &group->entries[j], value, option_name, error))
857                 {
858                   g_free (option_name);
859                   return FALSE;
860                 }
861
862               g_free (option_name);
863               *parsed = TRUE;
864             }
865         }
866     }
867
868   return TRUE;
869 }
870
871 static gboolean
872 parse_long_option (GOptionContext *context,
873                    GOptionGroup   *group,
874                    gint           *index,
875                    gchar          *arg,
876                    gint           *argc,
877                    gchar        ***argv,
878                    GError        **error,
879                    gboolean       *parsed)
880 {
881   gint j;
882
883   for (j = 0; j < group->n_entries; j++)
884     {
885       if (*index >= *argc)
886         return TRUE;
887
888       if (group->entries[j].arg == G_OPTION_ARG_NONE &&
889           strcmp (arg, group->entries[j].long_name) == 0)
890         {
891           parse_arg (context, group, &group->entries[j],
892                      NULL, NULL, error);
893           
894           add_pending_null (context, &((*argv)[*index]), NULL);
895           *parsed = TRUE;
896         }
897       else
898         {
899           gint len = strlen (group->entries[j].long_name);
900           
901           if (strncmp (arg, group->entries[j].long_name, len) == 0 &&
902               (arg[len] == '=' || arg[len] == 0))
903             {
904               gchar *value = NULL;
905               gchar *option_name;
906
907               add_pending_null (context, &((*argv)[*index]), NULL);
908               
909               if (arg[len] == '=')
910                 value = arg + len + 1;
911               else if (*index < *argc - 1)
912                 {
913                   value = (*argv)[*index + 1];
914                   add_pending_null (context, &((*argv)[*index + 1]), NULL);
915                   (*index)++;
916                 }
917               else
918                 value = "";
919
920               option_name = g_strconcat ("--", group->entries[j].long_name, NULL);
921               
922               if (!parse_arg (context, group, &group->entries[j], value, option_name, error))
923                 {
924                   g_free (option_name);
925                   return FALSE;
926                 }
927
928               g_free (option_name);
929               *parsed = TRUE;
930             }
931         }
932     }
933   
934   return TRUE;
935 }
936
937 static gboolean
938 parse_remaining_arg (GOptionContext *context,
939                      GOptionGroup   *group,
940                      gint           *index,
941                      gint           *argc,
942                      gchar        ***argv,
943                      GError        **error,
944                      gboolean       *parsed)
945 {
946   gint j;
947
948   for (j = 0; j < group->n_entries; j++)
949     {
950       if (*index >= *argc)
951         return TRUE;
952
953       if (group->entries[j].long_name[0])
954         continue;
955
956       g_return_val_if_fail (group->entries[j].arg == G_OPTION_ARG_STRING_ARRAY ||
957                             group->entries[j].arg == G_OPTION_ARG_FILENAME_ARRAY, FALSE);
958       
959       add_pending_null (context, &((*argv)[*index]), NULL);
960       
961       if (!parse_arg (context, group, &group->entries[j], (*argv)[*index], "", error))
962         return FALSE;
963       
964       *parsed = TRUE;
965       return TRUE;
966     }
967
968   return TRUE;
969 }
970
971 static void
972 free_changes_list (GOptionContext *context,
973                    gboolean        revert)
974 {
975   GList *list;
976
977   for (list = context->changes; list != NULL; list = list->next)
978     {
979       Change *change = list->data;
980
981       if (revert)
982         {
983           switch (change->arg_type)
984             {
985             case G_OPTION_ARG_NONE:
986               *(gboolean *)change->arg_data = change->prev.bool;
987               break;
988             case G_OPTION_ARG_INT:
989               *(gint *)change->arg_data = change->prev.integer;
990               break;
991             case G_OPTION_ARG_STRING:
992             case G_OPTION_ARG_FILENAME:
993               g_free (change->allocated.str);
994               *(gchar **)change->arg_data = change->prev.str;
995               break;
996             case G_OPTION_ARG_STRING_ARRAY:
997             case G_OPTION_ARG_FILENAME_ARRAY:
998               g_strfreev (change->allocated.array.data);
999               *(gchar ***)change->arg_data = change->prev.array;
1000               break;
1001             default:
1002               g_assert_not_reached ();
1003             }
1004         }
1005       
1006       g_free (change);
1007     }
1008
1009   g_list_free (context->changes);
1010   context->changes = NULL;
1011 }
1012
1013 static void
1014 free_pending_nulls (GOptionContext *context,
1015                     gboolean        perform_nulls)
1016 {
1017   GList *list;
1018
1019   for (list = context->pending_nulls; list != NULL; list = list->next)
1020     {
1021       PendingNull *n = list->data;
1022
1023       if (perform_nulls)
1024         {
1025           if (n->value)
1026             {
1027               /* Copy back the short options */
1028               *(n->ptr)[0] = '-';             
1029               strcpy (*n->ptr + 1, n->value);
1030             }
1031           else
1032             *n->ptr = NULL;
1033         }
1034       
1035       g_free (n->value);
1036       g_free (n);
1037     }
1038
1039   g_list_free (context->pending_nulls);
1040   context->pending_nulls = NULL;
1041 }
1042
1043 /**
1044  * g_option_context_parse:
1045  * @context: a #GOptionContext
1046  * @argc: a pointer to the number of command line arguments.
1047  * @argv: a pointer to the array of command line arguments.
1048  * @error: a return location for errors 
1049  * 
1050  * Parses the command line arguments, recognizing options
1051  * which have been added to @context. A side-effect of 
1052  * calling this function is that g_set_prgname() will be
1053  * called.
1054  *
1055  * If the parsing is successful, any parsed arguments are
1056  * removed from the array and @argc and @argv are updated 
1057  * accordingly. In case of an error, @argc and @argv are
1058  * left unmodified.
1059  * 
1060  * Return value: %TRUE if the parsing was successful, 
1061  *               %FALSE if an error occurred
1062  *
1063  * Since: 2.6
1064  **/
1065 gboolean
1066 g_option_context_parse (GOptionContext   *context,
1067                         gint             *argc,
1068                         gchar          ***argv,
1069                         GError          **error)
1070 {
1071   gint i, j, k;
1072   GList *list;
1073
1074   /* Set program name */
1075   if (argc && argv && *argc)
1076     {
1077       gchar *prgname;
1078       
1079       prgname = g_path_get_basename ((*argv)[0]);
1080       g_set_prgname (prgname);
1081       g_free (prgname);
1082     }
1083   else
1084     {
1085       g_set_prgname ("<unknown>");
1086     }
1087   
1088   /* Call pre-parse hooks */
1089   list = context->groups;
1090   while (list)
1091     {
1092       GOptionGroup *group = list->data;
1093       
1094       if (group->pre_parse_func)
1095         {
1096           if (!(* group->pre_parse_func) (context, group,
1097                                           group->user_data, error))
1098             goto fail;
1099         }
1100       
1101       list = list->next;
1102     }
1103
1104   if (context->main_group && context->main_group->pre_parse_func)
1105     {
1106       if (!(* context->main_group->pre_parse_func) (context, context->main_group,
1107                                                     context->main_group->user_data, error))
1108         goto fail;
1109     }
1110
1111   if (argc && argv)
1112     {
1113       gboolean stop_parsing = FALSE;
1114
1115       for (i = 1; i < *argc; i++)
1116         {
1117           gchar *arg, *dash;
1118           gboolean parsed = FALSE;
1119
1120           if ((*argv)[i][0] == '-' && !stop_parsing)
1121             {
1122               if ((*argv)[i][1] == '-')
1123                 {
1124                   /* -- option */
1125
1126                   arg = (*argv)[i] + 2;
1127
1128                   /* '--' terminates list of arguments */
1129                   if (*arg == 0)
1130                     {
1131                       add_pending_null (context, &((*argv)[i]), NULL);
1132                       stop_parsing = TRUE;
1133                       continue;
1134                     }
1135
1136                   /* Handle help options */
1137                   if (context->help_enabled)
1138                     {
1139                       if (strcmp (arg, "help") == 0)
1140                         print_help (context, TRUE, NULL);
1141                       else if (strcmp (arg, "help-all") == 0)
1142                         print_help (context, FALSE, NULL);                    
1143                       else if (strncmp (arg, "help-", 5) == 0)
1144                         {
1145                           GList *list;
1146                           
1147                           list = context->groups;
1148                           
1149                           while (list)
1150                             {
1151                               GOptionGroup *group = list->data;
1152                               
1153                               if (strcmp (arg + 5, group->name) == 0)
1154                                 print_help (context, FALSE, group);                                           
1155                               
1156                               list = list->next;
1157                             }
1158                         }
1159                     }
1160
1161                   if (context->main_group &&
1162                       !parse_long_option (context, context->main_group, &i, arg,
1163                                           argc, argv, error, &parsed))
1164                     goto fail;
1165
1166                   if (parsed)
1167                     continue;
1168                   
1169                   /* Try the groups */
1170                   list = context->groups;
1171                   while (list)
1172                     {
1173                       GOptionGroup *group = list->data;
1174                       
1175                       if (!parse_long_option (context, group, &i, arg,
1176                                               argc, argv, error, &parsed))
1177                         goto fail;
1178                       
1179                       if (parsed)
1180                         break;
1181                       
1182                       list = list->next;
1183                     }
1184                   
1185                   if (parsed)
1186                     continue;
1187
1188                   /* Now look for --<group>-<option> */
1189                   dash = strchr (arg, '-');
1190                   if (dash)
1191                     {
1192                       /* Try the groups */
1193                       list = context->groups;
1194                       while (list)
1195                         {
1196                           GOptionGroup *group = list->data;
1197                           
1198                           if (strncmp (group->name, arg, dash - arg) == 0)
1199                             {
1200                               if (!parse_long_option (context, group, &i, dash + 1,
1201                                                       argc, argv, error, &parsed))
1202                                 goto fail;
1203                               
1204                               if (parsed)
1205                                 break;
1206                             }
1207                           
1208                           list = list->next;
1209                         }
1210                     }
1211                   
1212                   if (context->ignore_unknown)
1213                     continue;
1214                 }
1215               else
1216                 {
1217                   /* short option */
1218
1219                   gint new_i, j;
1220                   gboolean *nulled_out = NULL;
1221                   
1222                   arg = (*argv)[i] + 1;
1223
1224                   new_i = i;
1225
1226                   if (context->ignore_unknown)
1227                     nulled_out = g_new0 (gboolean, strlen (arg));
1228                   
1229                   for (j = 0; j < strlen (arg); j++)
1230                     {
1231                       parsed = FALSE;
1232                       
1233                       if (context->main_group &&
1234                           !parse_short_option (context, context->main_group,
1235                                                i, &new_i, arg[j],
1236                                                argc, argv, error, &parsed))
1237                         {
1238
1239                           g_free (nulled_out);
1240                           goto fail;
1241                         }
1242
1243                       if (!parsed)
1244                         {
1245                           /* Try the groups */
1246                           list = context->groups;
1247                           while (list)
1248                             {
1249                               GOptionGroup *group = list->data;
1250                               
1251                               if (!parse_short_option (context, group, i, &new_i, arg[j],
1252                                                        argc, argv, error, &parsed))
1253                                 goto fail;
1254                               
1255                               if (parsed)
1256                                 break;
1257                           
1258                               list = list->next;
1259                             }
1260                         }
1261
1262                       if (context->ignore_unknown)
1263                         {
1264                           if (parsed)
1265                             nulled_out[j] = TRUE;
1266                           else
1267                             continue;
1268                         }
1269
1270                       if (!parsed)
1271                         break;
1272                     }
1273
1274                   if (context->ignore_unknown)
1275                     {
1276                       gchar *new_arg = NULL; 
1277                       gint arg_index = 0;
1278                       
1279                       for (j = 0; j < strlen (arg); j++)
1280                         {
1281                           if (!nulled_out[j])
1282                             {
1283                               if (!new_arg)
1284                                 new_arg = g_malloc (strlen (arg));
1285                               new_arg[arg_index++] = arg[j];
1286                             }
1287                         }
1288                       if (new_arg)
1289                         new_arg[arg_index] = '\0';
1290                       
1291                       add_pending_null (context, &((*argv)[i]), new_arg);
1292                     }
1293                   else if (parsed)
1294                     {
1295                       add_pending_null (context, &((*argv)[i]), NULL);
1296                       i = new_i;
1297                     }
1298                 }
1299               
1300               if (!parsed && !context->ignore_unknown)
1301                 {
1302                   g_set_error (error,
1303                                G_OPTION_ERROR, G_OPTION_ERROR_UNKNOWN_OPTION,
1304                                _("Unknown option %s"), (*argv)[i]);
1305                   goto fail;
1306                 }
1307             }
1308           else
1309             {
1310               /* Collect remaining args */
1311               if (context->main_group &&
1312                   !parse_remaining_arg (context, context->main_group, &i,
1313                                         argc, argv, error, &parsed))
1314                 goto fail;
1315               
1316             }
1317         }
1318
1319       /* Call post-parse hooks */
1320       list = context->groups;
1321       while (list)
1322         {
1323           GOptionGroup *group = list->data;
1324
1325           if (group->post_parse_func)
1326             {
1327               if (!(* group->post_parse_func) (context, group,
1328                                                group->user_data, error))
1329                 goto fail;
1330             }
1331           
1332           list = list->next;
1333         }
1334
1335       if (context->main_group && context->main_group->post_parse_func)
1336         {
1337           if (!(* context->main_group->post_parse_func) (context, context->main_group,
1338                                                          context->main_group->user_data, error))
1339             goto fail;
1340         }
1341
1342       free_pending_nulls (context, TRUE);
1343       
1344       for (i = 1; i < *argc; i++)
1345         {
1346           for (k = i; k < *argc; k++)
1347             if ((*argv)[k] != NULL)
1348               break;
1349           
1350           if (k > i)
1351             {
1352               k -= i;
1353               for (j = i + k; j < *argc; j++)
1354                 {
1355                   (*argv)[j-k] = (*argv)[j];
1356                   (*argv)[j] = NULL;
1357                 }
1358               *argc -= k;
1359             }
1360         }      
1361     }
1362
1363   return TRUE;
1364
1365  fail:
1366   
1367   /* Call error hooks */
1368   list = context->groups;
1369   while (list)
1370     {
1371       GOptionGroup *group = list->data;
1372       
1373       if (group->error_func)
1374         (* group->error_func) (context, group,
1375                                group->user_data, error);
1376       
1377       list = list->next;
1378     }
1379
1380   if (context->main_group && context->main_group->error_func)
1381     (* context->main_group->error_func) (context, context->main_group,
1382                                          context->main_group->user_data, error);
1383   
1384   free_changes_list (context, TRUE);
1385   free_pending_nulls (context, FALSE);
1386
1387   return FALSE;
1388 }
1389                                    
1390 /**
1391  * g_option_group_new:
1392  * @name: the name for the option group, this is used to provide
1393  *   help for the options in this group with <option>--help-</option>@name
1394  * @description: a description for this group to be shown in 
1395  *   <option>--help</option>. This string is translated using the translation
1396  *   domain or translation function of the group
1397  * @help_description: a description for the <option>--help-</option>@name option.
1398  *   This string is translated using the translation domain or translation function
1399  *   of the group
1400  * @user_data: user data that will be passed to the pre- and post-parse hooks,
1401  *   the error hook and to callbacks of %G_OPTION_ARG_CALLBACK options, or %NULL
1402  * @destroy: a function that will be called to free @user_data, or %NULL
1403  * 
1404  * Creates a new #GOptionGroup.
1405  * 
1406  * Return value: a newly created option group. It should be added 
1407  *   to a #GOptionContext or freed with g_option_group_free().
1408  *
1409  * Since: 2.6
1410  **/
1411 GOptionGroup *
1412 g_option_group_new (const gchar    *name,
1413                     const gchar    *description,
1414                     const gchar    *help_description,
1415                     gpointer        user_data,
1416                     GDestroyNotify  destroy)
1417
1418 {
1419   GOptionGroup *group;
1420
1421   group = g_new0 (GOptionGroup, 1);
1422   group->name = g_strdup (name);
1423   group->description = g_strdup (description);
1424   group->help_description = g_strdup (help_description);
1425   group->user_data = user_data;
1426   group->destroy_notify = destroy;
1427   
1428   return group;
1429 }
1430
1431
1432 /**
1433  * g_option_group_free:
1434  * @group: a #GOptionGroup
1435  * 
1436  * Frees a #GOptionGroup. Note that you must <emphasis>not</emphasis>
1437  * free groups which have been added to a #GOptionContext.
1438  *
1439  * Since: 2.6
1440  **/
1441 void
1442 g_option_group_free (GOptionGroup *group)
1443 {
1444   g_return_if_fail (group != NULL);
1445
1446   g_free (group->name);
1447   g_free (group->description);
1448   g_free (group->help_description);
1449
1450   g_free (group->entries);
1451   
1452   if (group->destroy_notify)
1453     (* group->destroy_notify) (group->user_data);
1454
1455   if (group->translate_notify)
1456     (* group->translate_notify) (group->translate_data);
1457   
1458   g_free (group);
1459 }
1460
1461
1462 /**
1463  * g_option_group_add_entries:
1464  * @group: a #GOptionGroup
1465  * @entries: a %NULL-terminated array of #GOptionEntry<!-- -->s
1466  * 
1467  * Adds the options specified in @entries to @group.
1468  *
1469  * Since: 2.6
1470  **/
1471 void
1472 g_option_group_add_entries (GOptionGroup       *group,
1473                             const GOptionEntry *entries)
1474 {
1475   gint n_entries;
1476   
1477   g_return_if_fail (entries != NULL);
1478
1479   for (n_entries = 0; entries[n_entries].long_name != NULL; n_entries++);
1480
1481   group->entries = g_renew (GOptionEntry, group->entries, group->n_entries + n_entries);
1482
1483   memcpy (group->entries + group->n_entries, entries, sizeof (GOptionEntry) * n_entries);
1484
1485   group->n_entries += n_entries;
1486 }
1487
1488 /**
1489  * g_option_group_set_parse_hooks:
1490  * @group: a #GOptionGroup
1491  * @pre_parse_func: a function to call before parsing, or %NULL
1492  * @post_parse_func: a function to call after parsing, or %NULL
1493  * 
1494  * Associates two functions with @group which will be called 
1495  * from g_option_context_parse() before the first option is parsed
1496  * and after the last option has been parsed, respectively.
1497  *
1498  * Note that the user data to be passed to @pre_parse_func and
1499  * @post_parse_func can be specified when constructing the group
1500  * with g_option_group_new().
1501  *
1502  * Since: 2.6
1503  **/
1504 void
1505 g_option_group_set_parse_hooks (GOptionGroup     *group,
1506                                 GOptionParseFunc  pre_parse_func,
1507                                 GOptionParseFunc  post_parse_func)
1508 {
1509   g_return_if_fail (group != NULL);
1510
1511   group->pre_parse_func = pre_parse_func;
1512   group->post_parse_func = post_parse_func;  
1513 }
1514
1515 /**
1516  * g_option_group_set_error_hook:
1517  * @group: a #GOptionGroup
1518  * @error_func: a function to call when an error occurs
1519  * 
1520  * Associates a function with @group which will be called 
1521  * from g_option_context_parse() when an error occurs.
1522  *
1523  * Note that the user data to be passed to @pre_parse_func and
1524  * @post_parse_func can be specified when constructing the group
1525  * with g_option_group_new().
1526  *
1527  * Since: 2.6
1528  **/
1529 void
1530 g_option_group_set_error_hook (GOptionGroup     *group,
1531                                GOptionErrorFunc  error_func)
1532 {
1533   g_return_if_fail (group != NULL);
1534
1535   group->error_func = error_func;  
1536 }
1537
1538
1539 /**
1540  * g_option_group_set_translate_func:
1541  * @group: a #GOptionGroup
1542  * @func: the #GTranslateFunc, or %NULL 
1543  * @data: user data to pass to @func, or %NULL
1544  * @destroy_notify: a function which gets called to free @data, or %NULL
1545  * 
1546  * Sets the function which is used to translate user-visible
1547  * strings, for <option>--help</option> output. Different
1548  * groups can use different #GTranslateFunc<!-- -->s. If @func
1549  * is %NULL, strings are not translated.
1550  *
1551  * If you are using gettext(), you only need to set the translation
1552  * domain, see g_option_group_set_translation_domain().
1553  *
1554  * Since: 2.6
1555  **/
1556 void
1557 g_option_group_set_translate_func (GOptionGroup   *group,
1558                                    GTranslateFunc  func,
1559                                    gpointer        data,
1560                                    GDestroyNotify  destroy_notify)
1561 {
1562   g_return_if_fail (group != NULL);
1563   
1564   if (group->translate_notify)
1565     group->translate_notify (group->translate_data);
1566       
1567   group->translate_func = func;
1568   group->translate_data = data;
1569   group->translate_notify = destroy_notify;
1570 }
1571
1572 static gchar *
1573 dgettext_swapped (const gchar *msgid, 
1574                   const gchar *domainname)
1575 {
1576   return dgettext (domainname, msgid);
1577 }
1578
1579 /**
1580  * g_option_group_set_translation_domain:
1581  * @group: a #GOptionGroup
1582  * @domain: the domain to use
1583  * 
1584  * A convenience function to use gettext() for translating
1585  * user-visible strings. 
1586  * 
1587  * Since: 2.6
1588  **/
1589 void
1590 g_option_group_set_translation_domain (GOptionGroup *group,
1591                                        const gchar  *domain)
1592 {
1593   g_return_if_fail (group != NULL);
1594
1595   g_option_group_set_translate_func (group, 
1596                                      (GTranslateFunc)dgettext_swapped,
1597                                      g_strdup (domain),
1598                                      g_free);
1599
1600