aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-xml.h
blob: e56355f2dd082183dfd85e4d9628c9a282a000a7 (plain)
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
/* packet-xml.h
 * wireshark's xml dissector .
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */
#ifndef __PACKET_XML_H__
#define __PACKET_XML_H__

#include "ws_symbol_export.h"

typedef struct _xml_ns_t {
    /* the name of this namespace */
    gchar* name;

    /* its fully qualified name */
    const gchar* fqn;

    /* the contents of the whole element from <> to </> */
    int hf_tag;

    /* chunks of cdata from <> to </> excluding sub tags */
    int hf_cdata;

    /* the subtree for its sub items  */
    gint ett;

    wmem_map_t* attributes;
    /*  key:   the attribute name
        value: hf_id of what's between quotes */

    /* the namespace's namespaces */
    wmem_map_t* elements;
    /*	key:   the element name
        value: the child namespace */

    GPtrArray* element_names;
    /* imported directly from the parser and used while building the namespace */

} xml_ns_t;

#define XML_FRAME_ROOT  0
#define XML_FRAME_TAG   1
#define XML_FRAME_XMPLI 2
#define XML_FRAME_DTD_DOCTYPE 3
#define XML_FRAME_ATTRIB 4
#define XML_FRAME_CDATA 5

typedef struct _xml_frame_t {
    int type;
    struct _xml_frame_t* parent;
    struct _xml_frame_t* first_child;
    struct _xml_frame_t* last_child;
    struct _xml_frame_t* prev_sibling;
    struct _xml_frame_t* next_sibling;
    const gchar *name;
    const gchar *name_orig_case;
    tvbuff_t *value;
    proto_tree* tree;
    proto_item* item;
    proto_item* last_item;
    xml_ns_t* ns;
    int start_offset;
    int length;
    packet_info* pinfo;
} xml_frame_t;

WS_DLL_PUBLIC
xml_frame_t *xml_get_tag(xml_frame_t *frame, const gchar *name);
WS_DLL_PUBLIC
xml_frame_t *xml_get_attrib(xml_frame_t *frame, const gchar *name);
WS_DLL_PUBLIC
xml_frame_t *xml_get_cdata(xml_frame_t *frame);

#endif /* __PACKET_XML_H__ */

/*
 * 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:
 */