Start update for 1.5 version of User's Guide.
[obnox/wireshark/wip.git] / epan / value_string.h
index 3fc92c9bf369b24478ac56b36eb66e930bf2af8a..bfdc0d6b141e9b9f51fbc9651a6dcb0459c83911 100644 (file)
@@ -55,39 +55,129 @@ typedef struct _range_string {
    Returns the associated string ptr, and sets "*idx" to the index in
    that table, on a match, and returns NULL, and sets "*idx" to -1,
    on failure. */
-extern const gchar* match_strval_idx(guint32 val, const value_string *vs, gint *idx);
+extern const gchar* match_strval_idx(const guint32 val, const value_string *vs, gint *idx);
 
 /* Like match_strval_idx(), but doesn't return the index. */
-extern const gchar* match_strval(guint32 val, const value_string *vs);
+extern const gchar* match_strval(const guint32 val, const value_string *vs);
 
 /* Tries to match val against each element in the value_string array vs.
    Returns the associated string ptr on a match.
    Formats val with fmt, and returns the resulting string, on failure. */
-extern const gchar* val_to_str(guint32 val, const value_string *vs, const char *fmt);
+extern const gchar* val_to_str(const guint32 val, const value_string *vs, const char *fmt);
+
 
 /* Tries to match val against each element in the value_string array vs.
+   Returns the associated string ptr on a match.
+   Returns 'unknown_str', on failure. */
+extern const gchar* val_to_str_const(const guint32 val, const value_string *vs, const char *unknown_str);
+
+/* Tries to match val against each element in the string_string array vs.
    Returns the associated string ptr, and sets "*idx" to the index in
    that table, on a match, and returns NULL, and sets "*idx" to -1,
    on failure. */
 extern const gchar* match_strstr_idx(const gchar *val, const string_string *vs, gint *idx);
 
-/* Like match_strval_idx(), but doesn't return the index. */
+/* Like match_strstr_idx(), but doesn't return the index. */
 extern const gchar* match_strstr(const gchar *val, const string_string *vs);
 
-/* Tries to match val against each element in the value_string array vs.
+/* Tries to match val against each element in the string_string array vs.
    Returns the associated string ptr on a match.
    Formats val with fmt, and returns the resulting string, on failure. */
 extern const gchar* str_to_str(const gchar *val, const string_string *vs, const char *fmt);
 
+/* --------------------------------------------------------------------*/
+/* value_string_ext functions
+ *
+ *   Extended value strings allow fast(er) value_string array lookups by
+ *    using (if possible) direct access or a binary search of the array.
+ *
+ *    If the values in the value_string array are a contiguous range of values
+ *    from min to max, the value will be used as as a direct index into the array.
+ *
+ *    If the values in the array are not contiguous (ie: there are "gaps"),
+ *    but are in assending order a binary search will be used.
+ *
+ *    If direct access or binary search cannot be used, then a linear search
+ *    is used.
+ *
+ *    Note that the value_string array used with VALUE_STRING_EXT_INIT
+ *     *must* be terminated with {0, NULL}).
+ *
+ *    Extended value strings are defined at compile time as follows:
+ *      static const value_string vs[] = { {value1, "string1"}, {value2, "string2"}, ..., {0, NULL}};
+ *      static value_string_ext vse = VALUE_STRING_EXT_INIT(vs);
+ *
+ *    Extended value strings can be created at runtime by calling
+ *      value_string_ext_new(<ptr to value_string array>,
+ *                           <total number of entries in the value_string_array>,
+ *                           <value_string_name>);
+ *      Note: <total number of entries in the value_string_array> should include the {0, NULL} entry
+ */
+/* --------------------------------------------------------------------*/
+struct _value_string_ext;
+typedef const char *(*_value_string_match_t)(const guint32, const struct _value_string_ext *, gint *idx);
+
+typedef struct _value_string_ext {
+  _value_string_match_t _vs_match;
+  guint32 _vs_first_value;    /* first value of the value_string array       */
+  guint   _vs_num_entries;    /* number of entries in the value_string array */
+                              /*  (excluding final {0, NULL})                */
+  const value_string *_vs_p;  /* the value string array address              */
+  const gchar *_vs_name;      /* vse "Name" (for error messages)             */
+} value_string_ext;
+
+/* "Acessors" */
+#define VALUE_STRING_EXT_VS_P(x) (x)->_vs_p
+#define VALUE_STRING_EXT_VS_NUM_ENTRIES(x) (x)->_vs_num_entries
+#define VALUE_STRING_EXT_VS_NAME(x) (x)->_vs_name
+
+/* (Fcns for use by proto_registrar_dump_values() [See proto.c]) */
+gboolean value_string_ext_validate(value_string_ext *vse);
+gchar *value_string_ext_match_type_str(value_string_ext *vse);
+/* --- --- */
+
+extern const gchar *_match_strval_ext_init(const guint32 val, const value_string_ext *vse, gint *idx);
+#define VALUE_STRING_EXT_INIT(x) { (_value_string_match_t) _match_strval_ext_init, 0, array_length(x)-1, x, #x }
+
+/* Create a value_string_ext given a ptr to a value_string array and the total number of entries. */
+/* Note: vs_tot_num_entries should include the required {0, NULL} terminating entry of the array. */
+/* Return: a pointer to a gmalloc'd and initialized value_string_ext struct.                      */
+extern value_string_ext *value_string_ext_new(value_string *vs, guint vs_tot_num_entries, gchar *vs_name);
+
+/* Looks up val in a value_string array using access method (direct, binary search
+ *  or linear) determined at rutime during the initial access); (see _match_strval_ext_init)
+ * Returns the associated string ptr on a match or NULL on failure.
+ */
+extern const gchar* match_strval_ext(const guint32 val, const value_string_ext *vse);
+
+/* Tries to match val against each element in the value_string array vs.
+ *  Returns the associated string ptr, and sets "*idx" to the index in
+ *  that table, on a match, and returns NULL, and sets "*idx" to -1,
+ *  on failure.
+ */
+extern const gchar* match_strval_idx_ext(const guint32 val, value_string_ext *vse, gint *idx);
+
+/* Similar to match_strval_ext except that on failure
+ * Formats val with fmt, and returns the resulting string
+ */
+extern const gchar* val_to_str_ext(const guint32 val, const value_string_ext *vs, const char *fmt);
+
+/* Similar to match_strval_ext except that on failure
+ *  Returns 'unknown_str'
+ */
+extern const gchar* val_to_str_ext_const(const guint32 val, const value_string_ext *vs, const char *unknown_str);
+
+/* ---- ---- */
+
 /* Generate a string describing an enumerated bitfield (an N-bit field
    with various specific values having particular names). */
-extern const char *decode_enumerated_bitfield(guint32 val, guint32 mask,
-  int width, const value_string *tab, const char *fmt);
+extern const char *decode_enumerated_bitfield(const guint32 val, const guint32 mask,
+  const int width, const value_string *tab, const char *fmt);
 
 /* Generate a string describing an enumerated bitfield (an N-bit field
    with various specific values having particular names). */
-extern const char *decode_enumerated_bitfield_shifted(guint32 val, guint32 mask,
-  int width, const value_string *tab, const char *fmt);
+extern const char *decode_enumerated_bitfield_shifted(const guint32 val, const guint32 mask,
+  const int width, const value_string *tab, const char *fmt);
 
 
 /* ranges aware versions */
@@ -95,15 +185,15 @@ extern const char *decode_enumerated_bitfield_shifted(guint32 val, guint32 mask,
 /* Tries to match val against each range in the range_string array rs.
    Returns the associated string ptr on a match.
    Formats val with fmt, and returns the resulting string, on failure. */
-extern const gchar* rval_to_str(guint32 val, const range_string *rs, const char *fmt);
+extern const gchar* rval_to_str(const guint32 val, const range_string *rs, const char *fmt);
 
 /* Tries to match val against each range in the range_string array rs.
    Returns the associated string ptr, and sets "*idx" to the index in
    that table, on a match, and returns NULL, and sets "*idx" to -1,
    on failure. */
-extern const gchar *match_strrval_idx(guint32 val, const range_string *rs, gint *idx);
+extern const gchar *match_strrval_idx(const guint32 val, const range_string *rs, gint *idx);
 
 /* Like match_strrval_idx(), but doesn't return the index. */
-extern const gchar *match_strrval(guint32 val, const range_string *rs);
+extern const gchar *match_strrval(const guint32 val, const range_string *rs);
 
 #endif /* __VALUE_STRING_H__ */