1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
* ex-opt.c
*
* Extension command line options
*
* (c) 2006, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
*
* $Id$
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib.h>
#include "ex-opt.h"
static GHashTable* ex_opts = NULL;
gboolean ex_opt_add(const gchar* optarg) {
gchar** splitted;
if (!ex_opts)
ex_opts = g_hash_table_new(g_str_hash,g_str_equal);
splitted = g_strsplit(optarg,":",2);
if (splitted[0] && splitted[1]) {
GPtrArray* this_opts = g_hash_table_lookup(ex_opts,splitted[0]);
if (this_opts) {
g_ptr_array_add(this_opts,splitted[1]);
g_free(splitted[0]);
} else {
this_opts = g_ptr_array_new();
g_ptr_array_add(this_opts,splitted[1]);
g_hash_table_insert(ex_opts,splitted[0],this_opts);
}
g_free(splitted);
return TRUE;
} else {
g_strfreev(splitted);
return FALSE;
}
}
gint ex_opt_count(const gchar* key) {
GPtrArray* this_opts;
if (! ex_opts)
return 0;
this_opts = g_hash_table_lookup(ex_opts,key);
if (this_opts) {
return this_opts->len;
} else {
return 0;
}
}
const gchar* ex_opt_get_nth(const gchar* key, guint index) {
GPtrArray* this_opts;
if (! ex_opts)
return 0;
this_opts = g_hash_table_lookup(ex_opts,key);
if (this_opts) {
if (this_opts->len > index) {
return g_ptr_array_index(this_opts,index);
} else {
/* XXX: assert? */
return NULL;
}
} else {
return NULL;
}
}
extern const gchar* ex_opt_get_next(const gchar* key) {
GPtrArray* this_opts;
if (! ex_opts)
return 0;
this_opts = g_hash_table_lookup(ex_opts,key);
if (this_opts) {
if (this_opts->len)
return g_ptr_array_remove_index(this_opts,0);
else
return NULL;
} else {
return NULL;
}
}
|