My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
/**
* BlueCove - Java library for Bluetooth
* Copyright (C) 2006-2009 Vlad Skarzhevskyy
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @author vlads
* @version $Id$
*/
package com.intel.bluetooth;

import java.io.IOException;
import java.io.InputStream;

import javax.bluetooth.DataElement;
import javax.bluetooth.UUID;

/**
* Read WIDCOMM SDP_DISC_ATTTR_VAL C struct and convert to DataElements
*/
class BluetoothStackWIDCOMMSDPInputStream extends InputStream {

public static final boolean debug = false;

private InputStream source;

protected BluetoothStackWIDCOMMSDPInputStream(InputStream in) throws IOException {
this.source = in;
readVersionInfo();
}

public int read() throws IOException {
return source.read();
}

private long readLong(int size) throws IOException {
long result = 0;
for (int i = 0; i < size; i++) {
result += ((long) read()) << (8 * i);
}
return result;
}

private long readLongDebug(int size) throws IOException {
long result = 0;
for (int i = 0; i < size; i++) {
int data = read();
if (debug) {
DebugLog.debug("readLong data[" + i + "]", data);
}
result += ((long) data) << (8 * i);
}
return result;
}

private int readInt() throws IOException {
return (int) readLong(4);
}

private byte[] readBytes(int size) throws IOException {
byte[] result = new byte[size];
for (int i = 0; i < size; i++) {
result[i] = (byte) read();
}
return result;
}

static String hexString(byte[] b) {
StringBuffer buf = new StringBuffer();
for (int i = 0; i < b.length; i++) {
buf.append(Integer.toHexString(b[i] >> 4 & 0xf));
buf.append(Integer.toHexString(b[i] & 0xf));
}
return buf.toString();
}

static byte[] getUUIDHexBytes(UUID uuid) {
return Utils.UUIDToByteArray(uuid);
}

static final int ATTR_TYPE_INT = 0; // Attribute value is an integer

static final int ATTR_TYPE_TWO_COMP = 1; // Attribute value is an 2's

// complement integer

static final int ATTR_TYPE_UUID = 2; // Attribute value is a UUID

static final int ATTR_TYPE_BOOL = 3; // Attribute value is a boolean

static final int ATTR_TYPE_ARRAY = 4; // Attribute value is an array of

// bytes

static final int MAX_SEQ_ENTRIES = 20;

static final int MAX_ATTR_LEN_OLD = 256;

private int valueSize = 0;

private void readVersionInfo() throws IOException {
valueSize = readInt();
}

public DataElement readElement() throws IOException {

DataElement result = null;
DataElement mainSeq = null;
DataElement currentSeq = null;
int elements = readInt();
if (elements < 0 || elements > MAX_SEQ_ENTRIES) {
throw new IOException("Unexpected number of elements " + elements);
}
if (debug) {
DebugLog.debug("elements", elements);
}
for (int i = 0; i < elements; i++) {
if (debug) {
DebugLog.debug("element", i);
}
int type = readInt();
int length = readInt();
boolean start_of_seq = (readInt() != 0);
if (debug) {
DebugLog.debug("type", type);
DebugLog.debug("length", length);
DebugLog.debug("start_of_seq", start_of_seq);
}
if (length < 0 || valueSize < length) {
throw new IOException("Unexpected length " + length);
}
DataElement dataElement;
switch (type) {
case ATTR_TYPE_INT:
switch (length) {
case 1:
dataElement = new DataElement(DataElement.U_INT_1, readLong(1));
break;
case 2:
dataElement = new DataElement(DataElement.U_INT_2, readLong(2));
break;
case 4:
dataElement = new DataElement(DataElement.U_INT_4, readLong(4));
break;
case 8:
dataElement = new DataElement(DataElement.U_INT_8, readBytes(8));
break;
case 16:
dataElement = new DataElement(DataElement.U_INT_16, readBytes(16));
break;
default:
throw new IOException("Unknown U_INT length " + length);
}
break;
case ATTR_TYPE_TWO_COMP:
switch (length) {
case 1:
dataElement = new DataElement(DataElement.INT_1, (byte) readLong(1));
break;
case 2:
dataElement = new DataElement(DataElement.INT_2, (short) readLong(2));
break;
case 4:
dataElement = new DataElement(DataElement.INT_4, (int) readLong(4));
break;
case 8:
dataElement = new DataElement(DataElement.INT_8, readLongDebug(8));
break;
case 16:
dataElement = new DataElement(DataElement.INT_16, readBytes(16));
break;
default:
throw new IOException("Unknown INT length " + length);
}
break;
case ATTR_TYPE_UUID:
UUID uuid = null;
switch (length) {
case 2:
uuid = new UUID(readLong(2));
break;
case 4:
uuid = new UUID(readLong(4));
break;
case 16:
uuid = new UUID(hexString(readBytes(16)), false);
break;
default:
throw new IOException("Unknown UUID length " + length);
}
dataElement = new DataElement(DataElement.UUID, uuid);
break;
case ATTR_TYPE_BOOL:
dataElement = new DataElement(readLong(length) != 0);
break;
case ATTR_TYPE_ARRAY:
dataElement = new DataElement(DataElement.STRING, Utils.newStringUTF8(readBytes(length)));
break;
default:
throw new IOException("Unknown data type " + type);
}

if (debug) {
DebugLog.debug("dataElement " + dataElement);
}

if (start_of_seq) {
DataElement newSeq = new DataElement(DataElement.DATSEQ);
newSeq.addElement(dataElement);
dataElement = newSeq;

if (i != 0) {
// Second or other sequence
if (mainSeq != null) {
mainSeq.addElement(newSeq);
} else {
// move first sequence to new main sequence
mainSeq = new DataElement(DataElement.DATSEQ);
result = mainSeq;
mainSeq.addElement(currentSeq);
mainSeq.addElement(newSeq);
}
}
currentSeq = newSeq;
} else if (currentSeq != null) {
currentSeq.addElement(dataElement);
}

if (result == null) {
result = dataElement;
}

if ((i < (elements - 1)) && (skip(valueSize - length) != (valueSize - length))) {
throw new IOException("Unexpected end of data");
}
}
return result;

}
}

Change log

r2915 by skarzhevskyy on Mar 13, 2009   Diff
Updated javadocs and Copyright
Go to: 
Project members, sign in to write a code review

Older revisions

r2476 by skarzhevskyy on Dec 1, 2008   Diff
Correction to headers
r2416 by skarzhevskyy on Oct 9, 2008   Diff
Change license to Apache License,
Version 2.0
r2408 by skarzhevskyy on Oct 9, 2008   Diff
organize product to modules
All revisions of this file

File info

Size: 8655 bytes, 255 lines

File properties

svn:mime-type
text/plain
svn:eol-style
native
svn:keywords
Date Author Id Revision
Powered by Google Project Hosting