Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
prefs-int.h
Go to the documentation of this file.
1/* prefs-int.h
2 * Definitions for implementation of preference handling routines;
3 * used by "friends" of the preferences type.
4 *
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <[email protected]>
7 * Copyright 1998 Gerald Combs
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
12#ifndef __PREFS_INT_H__
13#define __PREFS_INT_H__
14
15#include <stdio.h>
16#include "ws_symbol_export.h"
17#include <epan/wmem_scopes.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22
28 const char *name;
29 const char *title;
30 const char *description;
31 const char *help;
32 void (*apply_cb)(void);
34 GList *prefs;
38 unsigned int prefs_changed_flags;
39 bool obsolete;
42 bool use_gui;
49 unsigned int effect_flags;
52};
53
54typedef struct {
55 module_t *module;
56 FILE *pf;
58
59typedef void (*pref_custom_free_cb) (pref_t* pref);
60typedef void (*pref_custom_reset_cb) (pref_t* pref);
61typedef prefs_set_pref_e (*pref_custom_set_cb) (pref_t* pref, const char* value, unsigned int* changed_flags);
62/* typedef void (*pref_custom_write_cb) (pref_t* pref, write_pref_arg_t* arg); Deprecated. */
63/* pref_custom_type_name_cb should return NULL for internal / hidden preferences. */
64typedef const char * (*pref_custom_type_name_cb) (void);
65typedef char * (*pref_custom_type_description_cb) (void);
66typedef bool (*pref_custom_is_default_cb) (pref_t* pref);
67typedef char * (*pref_custom_to_str_cb) (pref_t* pref, bool default_val);
68
71 pref_custom_free_cb free_cb;
72 pref_custom_reset_cb reset_cb;
73 pref_custom_set_cb set_cb;
74 /* pref_custom_write_cb write_cb; Deprecated. */
75 pref_custom_type_name_cb type_name_cb;
76 pref_custom_type_description_cb type_description_cb;
77 pref_custom_is_default_cb is_default_cb;
78 pref_custom_to_str_cb to_str_cb;
79};
80
81typedef enum {
82 PREF_UINT,
83 PREF_BOOL,
84 PREF_ENUM,
85 PREF_STRING,
86 PREF_RANGE,
87 PREF_STATIC_TEXT,
88 PREF_UAT,
89 PREF_SAVE_FILENAME,
90 PREF_COLOR, // (1)
91 PREF_CUSTOM, // (1)
92 PREF_DIRNAME,
93 PREF_DECODE_AS_RANGE, // (2)
94 PREF_OPEN_FILENAME,
95 PREF_PASSWORD, // (3)
96 PREF_PROTO_TCP_SNDAMB_ENUM, // (4)
97 PREF_DISSECTOR, // (5)
98 PREF_INT,
99 PREF_FLOAT
100} pref_type_e;
101
102/*
103 * (1) These are only supported for "internal" (non-protocol) use
104 * and not as a generic protocol preference.
105 * (2) Internal use only, not a generic protocol preference.
106 * (3) Like string, but never saved to prefs file.
107 * (4) Dedicated to TCP PROTOCOL for handling manual SEQ interpretation,
108 * and allow users manage the sender traffic ambiguities
109 * (5) Like string, but with dissector name syntax check.
110 */
111
112/* read_prefs_file: read in a generic config file and do a callback to */
113/* pref_set_pair_fct() for every key/value pair found */
121typedef prefs_set_pref_e (*pref_set_pair_cb) (char *key, const char *value, void *private_data, bool return_range_errors);
122
123WS_DLL_PUBLIC
124const char* prefs_get_description(pref_t *pref);
125
126WS_DLL_PUBLIC
127const char* prefs_get_title(pref_t *pref);
128
129WS_DLL_PUBLIC
130const char* prefs_get_name(pref_t *pref);
131
132WS_DLL_PUBLIC
133int prefs_get_type(pref_t *pref);
134
135WS_DLL_PUBLIC uint32_t prefs_get_max_value(pref_t *pref);
136
144WS_DLL_PUBLIC
145unsigned int prefs_get_effect_flags(pref_t *pref);
146
158WS_DLL_PUBLIC
159void prefs_set_effect_flags(pref_t *pref, unsigned int flags);
160
163WS_DLL_PUBLIC
164void prefs_set_effect_flags_by_name(module_t * module, const char *pref, unsigned int flags);
165
175WS_DLL_PUBLIC
176unsigned int prefs_get_module_effect_flags(module_t * module);
177
188WS_DLL_PUBLIC
189unsigned prefs_module_list_foreach(const wmem_tree_t* module_list, module_cb callback,
190 void* user_data, bool skip_obsolete);
191
205WS_DLL_PUBLIC
206void prefs_set_module_effect_flags(module_t * module, unsigned int flags);
207
208WS_DLL_PUBLIC
209bool prefs_set_range_value_work(pref_t *pref, const char *value,
210 bool return_range_errors, unsigned int *changed_flags);
211
212WS_DLL_PUBLIC
213unsigned int
214prefs_set_stashed_range_value(pref_t *pref, const char *value);
215
217WS_DLL_PUBLIC
218void
219prefs_range_add_value(pref_t *pref, uint32_t val);
220
222WS_DLL_PUBLIC
223void
224prefs_range_remove_value(pref_t *pref, uint32_t val);
225
226
227WS_DLL_PUBLIC unsigned int prefs_set_bool_value(pref_t *pref, bool value, pref_source_t source);
228WS_DLL_PUBLIC bool prefs_get_bool_value(pref_t *pref, pref_source_t source);
229WS_DLL_PUBLIC void prefs_invert_bool_value(pref_t *pref, pref_source_t source);
230
231WS_DLL_PUBLIC unsigned int prefs_set_uint_value(pref_t *pref, unsigned value, pref_source_t source);
232WS_DLL_PUBLIC unsigned prefs_get_uint_base(pref_t *pref);
233WS_DLL_PUBLIC unsigned prefs_get_uint_value(pref_t *pref, pref_source_t source);
234
235WS_DLL_PUBLIC unsigned int prefs_set_int_value(pref_t* pref, int value, pref_source_t source);
236WS_DLL_PUBLIC int prefs_get_int_value(pref_t* pref, pref_source_t source);
237
238WS_DLL_PUBLIC unsigned int prefs_set_float_value(pref_t* pref, double value, pref_source_t source);
239WS_DLL_PUBLIC double prefs_get_float_value(pref_t* pref, pref_source_t source);
240
241WS_DLL_PUBLIC unsigned int prefs_set_enum_value(pref_t *pref, int value, pref_source_t source);
242WS_DLL_PUBLIC unsigned int prefs_set_enum_string_value(pref_t *pref, const char *value, pref_source_t source);
243WS_DLL_PUBLIC int prefs_get_enum_value(pref_t *pref, pref_source_t source);
244WS_DLL_PUBLIC const enum_val_t* prefs_get_enumvals(pref_t *pref);
245WS_DLL_PUBLIC bool prefs_get_enum_radiobuttons(pref_t *pref);
246
247WS_DLL_PUBLIC bool prefs_set_color_value(pref_t *pref, color_t value, pref_source_t source);
248WS_DLL_PUBLIC color_t* prefs_get_color_value(pref_t *pref, pref_source_t source);
249
250WS_DLL_PUBLIC unsigned int prefs_set_custom_value(pref_t *pref, const char *value, pref_source_t source);
251
252WS_DLL_PUBLIC unsigned int prefs_set_string_value(pref_t *pref, const char* value, pref_source_t source);
253WS_DLL_PUBLIC const char *prefs_get_string_value(pref_t *pref, pref_source_t source);
254
255WS_DLL_PUBLIC struct epan_uat* prefs_get_uat_value(pref_t *pref);
256
257WS_DLL_PUBLIC bool prefs_set_range_value(pref_t *pref, range_t *value, pref_source_t source);
258WS_DLL_PUBLIC range_t* prefs_get_range_value_real(pref_t *pref, pref_source_t source);
259
260WS_DLL_PUBLIC bool prefs_add_decode_as_value(pref_t *pref, unsigned value, bool replace);
261WS_DLL_PUBLIC bool prefs_remove_decode_as_value(pref_t *pref, unsigned value, bool set_default);
262
263WS_DLL_PUBLIC unsigned int prefs_set_password_value(pref_t *pref, const char* value, pref_source_t source);
264WS_DLL_PUBLIC const char *prefs_get_password_value(pref_t *pref, pref_source_t source);
265
266WS_DLL_PUBLIC bool prefs_add_list_value(pref_t *pref, void *value, pref_source_t source);
267WS_DLL_PUBLIC GList* prefs_get_list_value(pref_t *pref, pref_source_t source);
268
269WS_DLL_PUBLIC void reset_pref(pref_t *pref);
270
273WS_DLL_PUBLIC const wmem_tree_t* prefs_get_module_tree(void);
274
278WS_DLL_PUBLIC
279int
280read_prefs_file(const char *pf_path, FILE *pf, pref_set_pair_cb pref_set_pair_fct, void *private_data);
281
288WS_DLL_PUBLIC
289void
290prefs_read_module(const char *name, const char* app_env_var_prefix);
291
292WS_DLL_PUBLIC
293bool
294prefs_pref_is_default(pref_t *pref);
295
302WS_DLL_PUBLIC
303unsigned pref_stash(pref_t *pref, void *unused);
304
305typedef struct pref_unstash_data
306{
307 /* Used to set prefs_changed member to true if the preference
308 differs from its stashed values. */
309 module_t *module;
310 /* Qt uses stashed values to then "applies" them
311 during unstash. Use this flag for that behavior */
312 bool handle_decode_as;
314
323WS_DLL_PUBLIC
324unsigned pref_unstash(pref_t *pref, void *unstash_data_p);
325
334WS_DLL_PUBLIC
335unsigned pref_clean_stash(pref_t *pref, void *unused);
336
341WS_DLL_PUBLIC
342void reset_stashed_pref(pref_t *pref);
343
353WS_DLL_PUBLIC
354char *
355join_string_list(GList *sl);
356
357#ifdef __cplusplus
358}
359#endif /* __cplusplus */
360
361#endif /* prefs-int.h */
WS_DLL_PUBLIC unsigned prefs_module_list_foreach(const wmem_tree_t *module_list, module_cb callback, void *user_data, bool skip_obsolete)
Definition prefs.c:845
WS_DLL_PUBLIC void prefs_set_effect_flags(pref_t *pref, unsigned int flags)
Definition prefs.c:6390
WS_DLL_PUBLIC void prefs_set_effect_flags_by_name(module_t *module, const char *pref, unsigned int flags)
Definition prefs.c:6401
WS_DLL_PUBLIC unsigned pref_unstash(pref_t *pref, void *unstash_data_p)
Definition prefs.c:2148
WS_DLL_PUBLIC char * join_string_list(GList *sl)
Definition prefs.c:4206
prefs_set_pref_e(* pref_set_pair_cb)(char *key, const char *value, void *private_data, bool return_range_errors)
Definition prefs-int.h:121
WS_DLL_PUBLIC void prefs_set_module_effect_flags(module_t *module, unsigned int flags)
Definition prefs.c:6416
WS_DLL_PUBLIC unsigned int prefs_get_module_effect_flags(module_t *module)
Definition prefs.c:6407
WS_DLL_PUBLIC const wmem_tree_t * prefs_get_module_tree(void)
Definition prefs.c:325
WS_DLL_PUBLIC void prefs_range_remove_value(pref_t *pref, uint32_t val)
Definition prefs.c:1802
WS_DLL_PUBLIC unsigned pref_stash(pref_t *pref, void *unused)
WS_DLL_PUBLIC int read_prefs_file(const char *pf_path, FILE *pf, pref_set_pair_cb pref_set_pair_fct, void *private_data)
Definition prefs.c:4847
WS_DLL_PUBLIC void reset_stashed_pref(pref_t *pref)
Definition prefs.c:2315
WS_DLL_PUBLIC void prefs_range_add_value(pref_t *pref, uint32_t val)
Definition prefs.c:1796
WS_DLL_PUBLIC unsigned int prefs_get_effect_flags(pref_t *pref)
Definition prefs.c:6381
WS_DLL_PUBLIC unsigned pref_clean_stash(pref_t *pref, void *unused)
WS_DLL_PUBLIC void prefs_read_module(const char *name, const char *app_env_var_prefix)
Definition prefs.c:4696
unsigned(* module_cb)(module_t *module, void *user_data)
Definition prefs.h:429
prefs_set_pref_e
Definition prefs.h:1149
Internal memory allocator interface used by the wmem subsystem.
Definition wmem_allocator.h:34
Internal representation of a wmem balanced tree.
Definition wmem_tree-int.h:81
RGB color representation with 16-bit precision per channel.
Definition color.h:27
Definition params.h:23
Definition range.h:41
Definition uat-int.h:40
Definition prefs-int.h:70
Definition prefs-int.h:27
unsigned int effect_flags
Definition prefs-int.h:49
wmem_allocator_t * scope
Definition prefs-int.h:33
GList * prefs
Definition prefs-int.h:34
bool use_gui
Definition prefs-int.h:42
wmem_tree_t * submodules
Definition prefs-int.h:36
const char * description
Definition prefs-int.h:30
const char * name
Definition prefs-int.h:28
bool obsolete
Definition prefs-int.h:39
struct pref_module * parent
Definition prefs-int.h:35
unsigned int prefs_changed_flags
Definition prefs-int.h:38
void(* apply_cb)(void)
Definition prefs-int.h:32
int numprefs
Definition prefs-int.h:37
const char * title
Definition prefs-int.h:29
const char * help
Definition prefs-int.h:31
Definition prefs-int.h:306
Definition prefs.c:201
Definition prefs-int.h:54