Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
str_util.h
Go to the documentation of this file.
1
10
11#ifndef __STR_UTIL_H__
12#define __STR_UTIL_H__
13
14#include <wireshark.h>
15#include <wsutil/wmem/wmem.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif /* __cplusplus */
20
34WS_DLL_PUBLIC
35char *
36wmem_strconcat(wmem_allocator_t *allocator, const char *first, ...)
37G_GNUC_MALLOC G_GNUC_NULL_TERMINATED;
38
52WS_DLL_PUBLIC
53char *
54wmem_strjoin(wmem_allocator_t *allocator,
55 const char *separator, const char *first, ...)
56G_GNUC_MALLOC G_GNUC_NULL_TERMINATED;
57
58
73WS_DLL_PUBLIC
74char *
75wmem_strjoinv(wmem_allocator_t *allocator,
76 const char *separator, char **str_array)
77G_GNUC_MALLOC;
78
92WS_DLL_PUBLIC
93char **
94wmem_strsplit(wmem_allocator_t *allocator, const char *src,
95 const char *delimiter, int max_tokens);
96
111WS_DLL_PUBLIC
112char*
113wmem_ascii_strdown(wmem_allocator_t *allocator, const char *str, ssize_t len);
114
133WS_DLL_PUBLIC
134char *ascii_strdown_inplace(char *str);
135
154WS_DLL_PUBLIC
155char *ascii_strup_inplace(char *str);
156
163WS_DLL_PUBLIC
164bool isprint_string(const char *str);
165
192WS_DLL_PUBLIC
193bool isprint_utf8_string(const char *str, const unsigned length);
194
201WS_DLL_PUBLIC
202bool isdigit_string(const char *str);
203
219WS_DLL_PUBLIC
220const char *ws_ascii_strcasestr(const char *haystack, const char *needle);
221
230WS_DLL_PUBLIC
231const uint8_t *ws_memrchr(const void *haystack, int ch, size_t n);
232
241WS_DLL_PUBLIC
242char *ws_strchrnul(const char *str, int ch);
243
256WS_DLL_PUBLIC
257char *ws_escape_string(wmem_allocator_t *alloc, const char *string, bool add_quotes);
258
271WS_DLL_PUBLIC
272char *ws_escape_string_len(wmem_allocator_t *alloc, const char *string, ssize_t len, bool add_quotes);
273
290WS_DLL_PUBLIC
291char *ws_escape_null(wmem_allocator_t *alloc, const char *string, size_t len, bool add_quotes);
292
313WS_DLL_PUBLIC
314char *ws_escape_csv(wmem_allocator_t *alloc, const char *string, bool add_quotes, char quote_char, bool double_quote, bool escape_whitespace);
315
332WS_DLL_PUBLIC
333bool ws_csv_value_is_formula(const char *string);
334
344WS_DLL_PUBLIC
345int ws_xton(char ch);
346
357typedef enum {
359 /* XXX - This does not append a trailing space if there is no prefix.
360 * That's good if you intend to list the unit somewhere else, e.g. in a
361 * legend, header, or other column, but doesn't work well if intending
362 * to append your own unit. You can test whether there's a prefix or
363 * not with g_ascii_isdigit() (plus special handling for inf and NaN).
364 */
377
378#define FORMAT_SIZE_PREFIX_SI (1 << 0)
379#define FORMAT_SIZE_PREFIX_IEC (1 << 1)
380
397WS_DLL_PUBLIC
398char *format_units(wmem_allocator_t *allocator, double size,
399 format_size_units_e unit, uint16_t flags,
400 int precision);
401
413WS_DLL_PUBLIC
414char *format_size_wmem(wmem_allocator_t *allocator, int64_t size,
415 format_size_units_e unit, uint16_t flags);
416
427#define format_size(size, unit, flags) \
428 format_size_wmem(NULL, size, unit, flags)
429
439WS_DLL_PUBLIC
440char printable_char_or_period(char c);
441
455WS_DLL_PUBLIC WS_RETNONNULL
456const char *ws_strerrorname_r(int errnum, char *buf, size_t buf_size);
457
471WS_DLL_PUBLIC
472char *ws_strdup_underline(wmem_allocator_t *allocator, long offset, size_t len);
473
499WS_DLL_PUBLIC
500char *format_text(wmem_allocator_t* allocator, const char *string, size_t len);
501
510WS_DLL_PUBLIC
511char *format_text_string(wmem_allocator_t* allocator, const char *string);
512
524WS_DLL_PUBLIC
525char *format_text_wsp(wmem_allocator_t* allocator, const char *line, size_t len);
526
545WS_DLL_PUBLIC
546char *format_text_chr(wmem_allocator_t *allocator,
547 const char *string, size_t len, char chr);
548
564WS_DLL_PUBLIC
565char *format_char(wmem_allocator_t *allocator, char c);
566
587WS_DLL_PUBLIC
588char* ws_utf8_truncate(char *string, size_t len);
589
599WS_DLL_PUBLIC
600void EBCDIC_to_ASCII(uint8_t *buf, unsigned bytes);
601
608WS_DLL_PUBLIC
609uint8_t EBCDIC_to_ASCII1(uint8_t c);
610
622
623/*
624 * Hexdump options for ASCII:
625 */
626
630#define HEXDUMP_ASCII_MASK (0x0003U)
631
638#define HEXDUMP_ASCII_OPTION(option) ((option) & HEXDUMP_ASCII_MASK)
639
646#define HEXDUMP_ASCII_INCLUDE (0x0000U)
647
653#define HEXDUMP_ASCII_DELIMIT (0x0001U)
654
660#define HEXDUMP_ASCII_EXCLUDE (0x0002U)
661
680WS_DLL_PUBLIC
681bool hex_dump_buffer(bool (*print_line)(void *, const char *), void *fp,
682 const unsigned char *cp, unsigned length,
683 hex_dump_enc encoding,
684 unsigned ascii_option);
685
696#define plurality(d,s,p) ((d) == 1 ? (s) : (p))
697
704#define true_or_false(val) ((val) ? "TRUE" : "FALSE")
705
712#define string_or_null(val) ((val) ? (val) : "[NULL]")
713
714#ifdef __cplusplus
715}
716#endif /* __cplusplus */
717
718#endif /* __STR_UTIL_H__ */
struct _wmem_allocator_t wmem_allocator_t
Definition wmem_core.h:44
WS_DLL_PUBLIC char * format_text_string(wmem_allocator_t *allocator, const char *string)
Definition str_util.c:1320
WS_DLL_PUBLIC char * ws_utf8_truncate(char *string, size_t len)
Definition str_util.c:1397
WS_DLL_PUBLIC WS_RETNONNULL const char * ws_strerrorname_r(int errnum, char *buf, size_t buf_size)
Return the symbolic name of an error code.
Definition str_util.c:853
hex_dump_enc
Character encoding types supported by hex dump formatting.
Definition str_util.h:618
@ HEXDUMP_ENC_EBCDIC
Definition str_util.h:620
@ HEXDUMP_ENC_ASCII
Definition str_util.h:619
format_size_units_e
Unit types used by format_size_wmem() for formatting size values.
Definition str_util.h:357
@ FORMAT_SIZE_UNIT_BITS_S
Definition str_util.h:367
@ FORMAT_SIZE_UNIT_EVENTS
Definition str_util.h:371
@ FORMAT_SIZE_UNIT_BYTES
Definition str_util.h:365
@ FORMAT_SIZE_UNIT_PACKETS
Definition str_util.h:369
@ FORMAT_SIZE_UNIT_BYTES_S
Definition str_util.h:368
@ FORMAT_SIZE_UNIT_SECONDS
Definition str_util.h:374
@ FORMAT_SIZE_UNIT_NONE
Definition str_util.h:358
@ FORMAT_SIZE_UNIT_FIELDS
Definition str_util.h:373
@ FORMAT_SIZE_UNIT_EVENTS_S
Definition str_util.h:372
@ FORMAT_SIZE_UNIT_ERLANGS
Definition str_util.h:375
@ FORMAT_SIZE_UNIT_PACKETS_S
Definition str_util.h:370
@ FORMAT_SIZE_UNIT_BITS
Definition str_util.h:366
WS_DLL_PUBLIC uint8_t EBCDIC_to_ASCII1(uint8_t c)
Convert a single EBCDIC-encoded byte to its ASCII equivalent.
Definition str_util.c:1519
WS_DLL_PUBLIC char * format_text_chr(wmem_allocator_t *allocator, const char *string, size_t len, char chr)
Definition str_util.c:1349
WS_DLL_PUBLIC char * format_text_wsp(wmem_allocator_t *allocator, const char *line, size_t len)
Definition str_util.c:1332
WS_DLL_PUBLIC char * format_units(wmem_allocator_t *allocator, double size, format_size_units_e unit, uint16_t flags, int precision)
Definition str_util.c:485
WS_DLL_PUBLIC bool hex_dump_buffer(bool(*print_line)(void *, const char *), void *fp, const unsigned char *cp, unsigned length, hex_dump_enc encoding, unsigned ascii_option)
Generate a formatted hex dump of a byte buffer.
Definition str_util.c:1548
WS_DLL_PUBLIC char * ws_strdup_underline(wmem_allocator_t *allocator, long offset, size_t len)
Create a string of underscores for visual alignment or highlighting.
Definition str_util.c:867
WS_DLL_PUBLIC char * format_text(wmem_allocator_t *allocator, const char *string, size_t len)
Definition str_util.c:1295
WS_DLL_PUBLIC char * format_char(wmem_allocator_t *allocator, char c)
Definition str_util.c:1369
WS_DLL_PUBLIC char * format_size_wmem(wmem_allocator_t *allocator, int64_t size, format_size_units_e unit, uint16_t flags)
Definition str_util.c:630
WS_DLL_PUBLIC void EBCDIC_to_ASCII(uint8_t *buf, unsigned bytes)
Convert a buffer of EBCDIC-encoded bytes to ASCII in-place.
Definition str_util.c:1506
WS_DLL_PUBLIC char * wmem_strconcat(wmem_allocator_t *allocator, const char *first,...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED
Concatenate multiple strings into a single newly allocated string.
Definition str_util.c:48
WS_DLL_PUBLIC char printable_char_or_period(char c)
Return a printable character or '.' if non-printable.
Definition str_util.c:697