-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDNSFlagsFieldGuiDecorator.java
More file actions
242 lines (211 loc) · 6.7 KB
/
DNSFlagsFieldGuiDecorator.java
File metadata and controls
242 lines (211 loc) · 6.7 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
import javax.swing.tree.DefaultMutableTreeNode;
/**
* A decorator for the DNSFlagsField interface that uses a tree to
* create a representaiton of state that can be displayed graphically.
*
* @author chris Blades
* @version 21/3/10
*/
public class DNSFlagsFieldGuiDecorator extends DefaultMutableTreeNode
implements DNSFlagsField {
/**
* DNSFlagsField object that this decorator wraps
*/
DNSFlagsField flags;
/**
* Creates a new DNSFlagsFieldGuiDecorator that contains the given
* DNSFlagsField.
*
* @param flags the DNSFlagsField this object should wrap and whose state
* it should reflect
*/
public DNSFlagsFieldGuiDecorator(DNSFlagsField flags) {
this.flags = flags;
setupGui();
}
/**
* Create a tree that reflects flag's state.
*/
private void setupGui() {
// destroy previous tree since we're rebuilding
super.removeAllChildren();
// set name of root node
super.setUserObject("Flags:");
// add is request
String request = flags.isRequest() ? "Response: Message is a Query" : "Response: Message is a Response";
super.add(new DefaultMutableTreeNode(request));
// add opcode
super.add(new DefaultMutableTreeNode("Opcode: " +
flags.getOpcode().getName()));
// add truncated
String truncated = flags.isTruncated() ?
"Truncated: Message is Truncated" :
"Truncated: Message is not Truncated";
super.add(new DefaultMutableTreeNode(truncated));
// add recursion desired
String recDesired = flags.recursionDesired() ?
"Recursion Desired: Yes" :
"Recursion Desired: No";
super.add(new DefaultMutableTreeNode(recDesired));
// add recursion available
String recAvailable = flags.recursionAvailable() ?
"Recursion Available: Yes" :
"Recursion Available: No";
super.add(new DefaultMutableTreeNode(recAvailable));
// add authoritative
String authority = flags.isAuthorative() ?
"Authoritative Answer: Yes" :
"Authoritative Answer: No";
super.add(new DefaultMutableTreeNode(authority));
// add return code
super.add(new DefaultMutableTreeNode("Return Code: " +
flags.getReturnCode()));
}
//
// DNSFlagsField
//
/**
* Returns wether the response flag is set or not
*
* @return true if this flags field represents a request
*/
public boolean isRequest() {
return flags.isRequest();
}
/**
* Returns the opcode vale of this flags field
*
* @return the opcode value of this flags field
*/
public DNSOpcode getOpcode() {
return flags.getOpcode();
}
/**
* Returns wether the authoritative bit is set in this flags field.
*
* @return the state of the authoritative bit
*/
public boolean isAuthorative() {
return flags.isAuthorative();
}
/**
* Returns wether the truncated bit is set in this flags field.
*
* @return the state of the truncated bit
*/
public boolean isTruncated() {
return flags.isTruncated();
}
/**
* Returns wether the recursion desired bit is set in this flags field.
*
* @return the state of the recursion desired bit.
*/
public boolean recursionDesired() {
return flags.recursionDesired();
}
/**
* Returns wether the recursion available bit is set in this flags field.
*
* @return the state of the recursion available bit.
*/
public boolean recursionAvailable() {
return flags.recursionAvailable();
}
/**
* Returns the return code value of the flags field.
*
* @return the return code of this flags field
*/
public int getReturnCode() {
return flags.getReturnCode();
}
/**
* Sets wether this flags field represents a request.
*
* @param request wether this flags field is a request.
*/
public void setIsRequest(boolean request) {
setupGui();
flags.setIsRequest(request);
}
/**
* Sets the opcode of this flags field.
*
* @param opcode the new Opcode of this flags field.
*/
public void setOpcode(DNSOpcode opcode) {
setupGui();
flags.setOpcode(opcode);
}
/**
* sets the state of the authoritative bit.
*
* @param authoritative the state of the authoritative bit
*/
public void setAuthoritative(boolean authoritative) {
setupGui();
flags.setAuthoritative(authoritative);
}
/**
* sets the state of the truncated bit.
*
* @param truncated the state of the truncated bit
*/
public void setTruncated(boolean truncated) {
setupGui();
flags.setTruncated(truncated);
}
/**
* sets the state of the recursion desired bit.
*
* @param recursionDesired the state of the recursion desired bit
*/
public void setRecursionDesired(boolean recursionDesired) {
setupGui();
flags.setRecursionDesired(recursionDesired);
}
/**
* sets the state of the recursion available bit.
*
* @param recursionAvailable the state of the recursion available bit
*/
public void setRecursionAvailable(boolean recursionAvailable) {
setupGui();
flags.setRecursionAvailable(recursionAvailable);
}
/**
* Sets the return code of this flags field.
*
* @param code the new return code of this flags field
*/
public void setReturnCode(int code) {
setupGui();
flags.setReturnCode(code);
}
/**
* Returns the length of the serialzied form of this DNSFlagsField.
*
* @return the length of the serialized form of this DNSFlagsField
*/
public int getLength() {
return flags.getLength();
}
/**
* Returns a serialized version of this DNSFlagsField as per
* DNS protocol
*
* @return serialized version of this DNSFlagsField
*/
public byte[] serialize() {
return flags.serialize();
}
/**
* Returns a mapping of the state values of this DNSFlagsField.
*
* @return The state of this DNSFlagsField
*/
public Map stateValues() {
return flags.stateValues();
}
}