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
|
/*
* ex-opt.c
*
* Extension command line options
*
* (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <glib.h>
#include "ex-opt.h"
static GHashTable* ex_opts = NULL;
gboolean ex_opt_add(const gchar* ws_optarg) {
gchar** splitted;
if (!ex_opts)
ex_opts = g_hash_table_new(g_str_hash,g_str_equal);
splitted = g_strsplit(ws_optarg,":",2);
if (splitted[0] && splitted[1]) {
GPtrArray* this_opts = (GPtrArray *)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 = (GPtrArray *)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 key_index) {
GPtrArray* this_opts;
if (! ex_opts)
return 0;
this_opts = (GPtrArray *)g_hash_table_lookup(ex_opts,key);
if (this_opts) {
if (this_opts->len > key_index) {
return (const gchar *)g_ptr_array_index(this_opts,key_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 = (GPtrArray *)g_hash_table_lookup(ex_opts,key);
if (this_opts) {
if (this_opts->len)
return (const gchar *)g_ptr_array_remove_index(this_opts,0);
else
return NULL;
} else {
return NULL;
}
}
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* vi: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/
|