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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1999 by Sun Microsystems, Inc.
* All rights reserved.
*
*/
// AttributeDescriptor.java: Describes an SLP attribute.
// Author: James Kempf
// Created On: Thu Jun 19 10:38:01 1997
// Last Modified By: James Kempf
// Last Modified On: Tue Jun 2 13:29:08 1998
// Update Count: 29
//
package com.sun.slp;
import java.util.*;
/**
* The instances of the AttributeDescriptor class
* return information on a particular service location attribute. This
* information is primarily for GUI tools. Programmatic attribute
* verification should be done through the ServiceLocationAttributeVerifier.
*
* @author James Kempf
*
*/
class AttributeDescriptor
extends Object
implements ServiceLocationAttributeDescriptor {
// Indicates byte array type.
private static final String JAVA_OPAQUE_TYPE = "[B";
private String id = "";
private String valueType = "";
private String description = "";
private Vector allowedValues = new Vector();
private Vector defaultValues = new Vector();
private boolean isMultivalued = false;
private boolean isOptional = false;
private boolean requiresExplicitMatch = false;
private boolean isLiteral = false;
private boolean isKeyword = false;
/**
* Return the attribute's id.
*
* @return A String with the attribute's id.
*/
final public String getId() {
return id;
}
/**
* Return the fully qualified Java type of the attribute. SLP types
* are translated into Java types as follows:
*
* STRING java.lang.String
* INTEGER java.lang.Integer
* BOOLEAN java.lang.Boolean
* OPAQUE [B (i.e. array of byte, byte[]);
* KEYWORD null string, ""
*
* @return A String containing the Java type name for the attribute values.
*/
final public String getValueType() {
return valueType;
}
/**
* Return attribute's help text.
*
* @return A String containing the attribute's help text.
*/
final public String getDescription() {
return description;
}
/**
* Return an Enumeration of allowed values for the attribute type.
* For keyword attributes returns null. For no allowed values
* (i.e. unrestricted) returns an empty Enumeration. Small memory
* implementations may want to parse values on demand rather
* than at the time the descriptor is created.
*
* @return An Enumeration of allowed values for the attribute or
* null if the attribute is keyword.
*/
final public Enumeration getAllowedValues() {
if (getIsKeyword()) {
return null;
} else {
return allowedValues.elements();
}
}
/**
* Return an Enumeration of default values for the attribute type.
* For keyword attributes returns null. For no allowed values
* (i.e. unrestricted) returns an empty Enumeration. Small memory
* implementations may want to parse values on demand rather
* than at the time the descriptor is created.
*
* @return An Enumeration of default values for the attribute or
* null if the attribute is keyword.
*/
final public Enumeration getDefaultValues() {
if (getIsKeyword()) {
return null;
} else {
return defaultValues.elements();
}
}
/**
* Returns true if the "M" flag is set.
*
* @return True if the "M" flag is set.
*/
final public boolean getIsMultivalued() {
return isMultivalued;
}
/**
* Returns true if the "O" flag is set.
*
* @return True if the "O" flag is set.
*/
final public boolean getIsOptional() {
return isOptional;
}
/**
* Returns true if the "X" flag is set.
*
* @return True if the "X" flag is set.
*/
final public boolean getRequiresExplicitMatch() {
return requiresExplicitMatch;
}
/**
* Returns true if the "L" flag is set.
*
* @return True if the "L" flag is set.
*/
final public boolean getIsLiteral() {
return isLiteral;
}
/**
* Returns true if the attribute is a keyword attribute.
*
* @return True if the attribute is a keyword attribute
*/
final public boolean getIsKeyword() {
return isKeyword;
}
//
// Package private interface for setting properties.
//
/**
* Set the attribute's id.
*
* @param nid New id string
*/
void setId(String nid) {
id = nid;
}
/**
* Set the fully qualified Java type of the attribute. We don't check
* the argument here, assuming that the caller has taken care of it.
*
* @param nvt New value type.
*/
void setValueType(String nvt) {
valueType = nvt;
}
/**
* Set attribute's help text.
*
* @param ndes A String containing the attribute's help text.
*/
void setDescription(String ndes) {
description = ndes;
}
/**
* Set the allowed values for an attribute.
*
* @param nnv A vector of allowed values for the attribute.
*/
void setAllowedValues(Vector nnv) {
allowedValues = nnv;
}
/**
* Set the default values for an attribute.
*
* @param nnv A vector of default values for the attribute.
*/
void setDefaultValues(Vector nnv) {
defaultValues = nnv;
}
/**
* Set the isMultivalued flag.
*
* @param flag New multivalued flag.
*/
void setIsMultivalued(boolean flag) {
isMultivalued = flag;
}
/**
* Set the isOptional flag.
*
* @param flag New optional flag.
*/
void setIsOptional(boolean flag) {
isOptional = flag;
}
/**
* Set the requiresExplicitMatch flag.
*
* @param flag New explicit match flag.
*/
void setRequiresExplicitMatch(boolean flag) {
requiresExplicitMatch = flag;
}
/**
* Set the isLiteral flag.
*
* @param flag New literal flag.
*/
void setIsLiteral(boolean flag) {
isLiteral = flag;
}
/**
* Set the keyword attribute flag.
*
* @param flag New keyword attribute flag.
*/
void setIsKeyword(boolean flag) {
isKeyword = flag;
}
/**
* Format a string with the id and all the fields.
*
*/
public String toString() {
String ret = "";
ret += "\nid:" + id + "\n";
ret += "valueType:" + valueType + "\n";
ret += "description:" + description + "\n";
ret +=
"defaultValues:" +
(defaultValues == null ? "<null>":
(valueType.equals(JAVA_OPAQUE_TYPE) ?
formatByteArrays(defaultValues) : defaultValues.toString())) +
"\n";
ret +=
"allowedValues:" +
(allowedValues == null ? "<null>":
(valueType.equals(JAVA_OPAQUE_TYPE) ?
formatByteArrays(allowedValues) : allowedValues.toString())) +
"\n";
ret += "isMultivalued:" + (isMultivalued ? "true":"false") + "\n";
ret += "isOptional:" + (isOptional ? "true":"false") + "\n";
ret += "requiresExplicitMatch:" +
(requiresExplicitMatch ? "true":"false") + "\n";
ret += "isLiteral:" + (isLiteral ? "true":"false") + "\n";
ret += "isKeyword:" + (isKeyword ? "true":"false") + "\n\n";
return ret;
}
// Formats an array of bytes for opaque, rather than just the address.
private String formatByteArrays(Vector arrays) {
int i, n = arrays.size();
StringBuffer ret = new StringBuffer();
ret.append("[");
for (i = 0; i < n; i++) {
byte array[] = (byte[])arrays.elementAt(i);
ret.append("{ ");
int j, m = array.length;
for (j = 0; j < m; j++) {
ret.append("0x");
ret.append(Integer.toHexString((int)array[j]&0xFF));
ret.append(j == m - 1 ? " } " : ",");
}
ret.append(i == n - 1 ? "":" , ");
}
ret.append("]");
return ret.toString();
}
}
|