- some radcom files seem to have a different magic key than the one we
[obnox/wireshark/wip.git] / ptvcursor.c
1 /* ptvcursor.c
2  *
3  * Proto Tree TVBuff cursor
4  * Gilbert Ramirez <gram@alumni.rice.edu>
5  *
6  * $Id: ptvcursor.c,v 1.7 2002/08/28 21:00:41 jmayer Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 2000 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #include "ptvcursor.h"
28
29
30 struct ptvcursor {
31         proto_tree      *tree;
32         tvbuff_t        *tvb;
33         gint            offset;
34 };
35
36
37 /* Allocates an initializes a ptvcursor_t with 3 variables:
38  *      proto_tree, tvbuff, and offset. */
39 ptvcursor_t*
40 ptvcursor_new(proto_tree *tree, tvbuff_t *tvb, gint offset)
41 {
42         ptvcursor_t     *ptvc;
43
44         ptvc = g_new(ptvcursor_t, 1);
45         ptvc->tree      = tree;
46         ptvc->tvb       = tvb;
47         ptvc->offset    = offset;
48         return ptvc;
49 }
50
51
52 /* Gets data from tvbuff, adds it to proto_tree, increments offset,
53  * and returns proto_item* */
54 proto_item*
55 ptvcursor_add(ptvcursor_t *ptvc, int hf, gint length, gboolean endianness)
56 {
57         proto_item      *item;
58
59         item = ptvcursor_add_no_advance(ptvc, hf, length, endianness);
60         ptvc->offset += proto_item_get_len(item);
61         return item;
62 }
63
64 /* Gets data from tvbuff, adds it to proto_tree, *DOES NOT* increment
65  * offset, and returns proto_item* */
66 proto_item*
67 ptvcursor_add_no_advance(ptvcursor_t* ptvc, int hf, gint length,
68                 gboolean endianness)
69 {
70         proto_item      *item;
71
72         item = proto_tree_add_item(ptvc->tree, hf, ptvc->tvb, ptvc->offset,
73                         length, endianness);
74
75         return item;
76 }
77
78 /* Advance the ptvcursor's offset within its tvbuff without
79  * adding anything to the proto_tree. */
80 void
81 ptvcursor_advance(ptvcursor_t* ptvc, gint length)
82 {
83         ptvc->offset += length;
84 }
85
86 /* Frees memory for ptvcursor_t, but nothing deeper than that. */
87 void
88 ptvcursor_free(ptvcursor_t *ptvc)
89 {
90         g_free(ptvc);
91 }
92 /* Returns tvbuff. */
93 tvbuff_t*
94 ptvcursor_tvbuff(ptvcursor_t* ptvc)
95 {
96         return ptvc->tvb;
97 }
98
99 /* Returns current offset. */
100 gint
101 ptvcursor_current_offset(ptvcursor_t* ptvc)
102 {
103         return ptvc->offset;
104 }
105
106 proto_tree*
107 ptvcursor_tree(ptvcursor_t* ptvc)
108 {
109         return ptvc->tree;
110 }
111
112 void
113 ptvcursor_set_tree(ptvcursor_t* ptvc, proto_tree *tree)
114 {
115         ptvc->tree = tree;
116 }