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
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/**
* BlueCove - Java library for Bluetooth
* Copyright (C) 2007-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.
*
* @version $Id$
*/
package com.intel.bluetooth.obex;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

import javax.obex.HeaderSet;
import javax.obex.Operation;
import javax.obex.ResponseCodes;

import com.intel.bluetooth.DebugLog;

abstract class OBEXClientOperation implements Operation, OBEXOperation, OBEXOperationReceive, OBEXOperationDelivery {

/**
* This is not 100% by JSR-82 doc. But some know implementations of OBEX are working this way. This solves the
* problems for Samsung phones that are sending nothing in response to GET request without final bit.
*
* Basically instead of sending at least two packets 'initial' and 'final' we are sending just 'final' one when
* applicable.
*/
final static boolean SHORT_REQUEST_PHASE = true;

protected OBEXClientSessionImpl session;

protected char operationId;

protected HeaderSet replyHeaders;

protected boolean isClosed;

protected boolean operationInProgress;

protected boolean operationInContinue;

protected OBEXOperationOutputStream outputStream;

protected boolean outputStreamOpened = false;

protected OBEXOperationInputStream inputStream;

protected boolean inputStreamOpened = false;

protected boolean errorReceived = false;

protected boolean requestEnded = false;

protected boolean finalBodyReceived = false;

protected OBEXHeaderSetImpl startOperationHeaders = null;

private boolean authenticationResponseCreated = false;

protected Object lock;

OBEXClientOperation(OBEXClientSessionImpl session, char operationId, OBEXHeaderSetImpl sendHeaders)
throws IOException {
this.session = session;
this.operationId = operationId;
this.isClosed = false;
this.operationInProgress = false;
this.lock = new Object();
this.inputStream = new OBEXOperationInputStream(this);
startOperation(sendHeaders);
}

static boolean isShortRequestPhase() {
return SHORT_REQUEST_PHASE;
}

protected void startOperation(OBEXHeaderSetImpl sendHeaders) throws IOException {
if (SHORT_REQUEST_PHASE) {
this.startOperationHeaders = sendHeaders;
} else {
this.operationInProgress = true;
exchangePacket(sendHeaders);
}
}

/*
* (non-Javadoc)
*
* @see com.intel.bluetooth.obex.OBEXOperationReceive#receiveData(com.intel.bluetooth.obex.OBEXOperationInputStream)
*/
public void receiveData(OBEXOperationInputStream is) throws IOException {
if (SHORT_REQUEST_PHASE) {
exchangePacket(this.startOperationHeaders);
this.startOperationHeaders = null;
} else {
exchangePacket(null);
}
}

/*
* (non-Javadoc)
*
* @see com.intel.bluetooth.obex.OBEXOperationDelivery#deliverPacket(boolean, byte[])
*/
public void deliverPacket(boolean finalPacket, byte[] buffer) throws IOException {
if (requestEnded) {
return;
}
if (SHORT_REQUEST_PHASE && (this.startOperationHeaders != null)) {
exchangePacket(this.startOperationHeaders);
this.startOperationHeaders = null;
}
int dataHeaderID = OBEXHeaderSetImpl.OBEX_HDR_BODY;
if (finalPacket) {
this.operationId |= OBEXOperationCodes.FINAL_BIT;
dataHeaderID = OBEXHeaderSetImpl.OBEX_HDR_BODY_END;
DebugLog.debug("client Request Phase ended");
requestEnded = true;
}
OBEXHeaderSetImpl dataHeaders = OBEXSessionBase.createOBEXHeaderSetImpl();
dataHeaders.setHeader(dataHeaderID, buffer);
exchangePacket(dataHeaders);
}

protected void endRequestPhase() throws IOException {
if (requestEnded) {
return;
}
DebugLog.debug("client ends Request Phase");
this.operationInProgress = false;
this.requestEnded = true;
this.operationId |= OBEXOperationCodes.FINAL_BIT;
if (SHORT_REQUEST_PHASE) {
exchangePacket(this.startOperationHeaders);
this.startOperationHeaders = null;
} else {
exchangePacket(null);
}
}

private void exchangePacket(OBEXHeaderSetImpl headers) throws IOException {
boolean success = false;
try {
session.writePacket(this.operationId, headers);
byte[] b = session.readPacket();
OBEXHeaderSetImpl dataHeaders = OBEXHeaderSetImpl.readHeaders(b[0], b, 3);
session.handleAuthenticationResponse(dataHeaders, null);
int responseCode = dataHeaders.getResponseCode();
DebugLog.debug0x("client operation got reply", OBEXUtils.toStringObexResponseCodes(responseCode), responseCode);
switch (responseCode) {
case ResponseCodes.OBEX_HTTP_UNAUTHORIZED:
if ((!authenticationResponseCreated) && (dataHeaders.hasAuthenticationChallenge())) {
DebugLog.debug("client resend request with auth response");
// Send the original data again, since it is not accepted
OBEXHeaderSetImpl retryHeaders = OBEXHeaderSetImpl.cloneHeaders(headers);
session.handleAuthenticationChallenge(dataHeaders, retryHeaders);
authenticationResponseCreated = true;
exchangePacket(retryHeaders);
} else {
this.errorReceived = true;
this.operationInContinue = false;
processIncommingHeaders(dataHeaders);
throw new IOException("Authentication Failure");
}
break;
case OBEXOperationCodes.OBEX_RESPONSE_SUCCESS:
processIncommingHeaders(dataHeaders);
processIncommingData(dataHeaders, true);
this.operationInProgress = false;
this.operationInContinue = false;
break;
case OBEXOperationCodes.OBEX_RESPONSE_CONTINUE:
processIncommingHeaders(dataHeaders);
processIncommingData(dataHeaders, false);
this.operationInContinue = true;
// if ((!authenticationResponseCreated) && (dataHeaders.hasAuthenticationChallenge())) {
// // Send the original data again, since it is not accepted = This is bug On Sony Ericsson
// DebugLog.debug("client resend request with auth response");
// OBEXHeaderSetImpl retryHeaders = OBEXHeaderSetImpl.cloneHeaders(headers);
// session.handleAuthenticationChallenge(dataHeaders, retryHeaders);
// authenticationResponseCreated = true;
// exchangePacket(retryHeaders);
// }
break;
default:
this.errorReceived = true;
this.operationInContinue = false;
// responseCode may be reported by getResponseCode()
processIncommingHeaders(dataHeaders);
processIncommingData(dataHeaders, true);

// OFF; Rely on getResponseCode() to report the error to the application.
// if ((this.operationId & OBEXOperationCodes.FINAL_BIT) == 0) {
// throw new IOException("Operation error, 0x" + Integer.toHexString(responseCode) + " "
// + OBEXUtils.toStringObexResponseCodes(responseCode));
// }

}
success = true;
} finally {
if (!success) {
errorReceived = true;
}
}
}

protected void processIncommingHeaders(HeaderSet dataHeaders) throws IOException {
if (replyHeaders != null) {
// accumulate all received headers.
OBEXHeaderSetImpl.appendHeaders(dataHeaders, replyHeaders);
}
// replyHeaders will contain responseCode from last reply
// The Body values are removed by cloneHeaders in getReceivedHeaders()
this.replyHeaders = dataHeaders;
}

protected void processIncommingData(HeaderSet dataHeaders, boolean eof) throws IOException {
byte[] data = (byte[]) dataHeaders.getHeader(OBEXHeaderSetImpl.OBEX_HDR_BODY);
if (data == null) {
data = (byte[]) dataHeaders.getHeader(OBEXHeaderSetImpl.OBEX_HDR_BODY_END);
if (data != null) {
finalBodyReceived = true;
eof = true;
}
}
if (data != null) {
DebugLog.debug("client received Data eof: " + eof + " len: ", data.length);
inputStream.appendData(data, eof);
} else if (eof) {
inputStream.appendData(null, eof);
}
}

/*
* (non-Javadoc)
*
* @see javax.obex.Operation#abort()
*/
public void abort() throws IOException {
validateOperationIsOpen();
if ((!this.operationInProgress) && (!this.operationInContinue)) {
throw new IOException("the transaction has already ended");
}
synchronized (lock) {
if (outputStream != null) {
outputStream.abort();
}
this.inputStream.close();
}
writeAbort();
}

private void writeAbort() throws IOException {
try {
session.writePacket(OBEXOperationCodes.ABORT, null);
requestEnded = true;
byte[] b = session.readPacket();
HeaderSet dataHeaders = OBEXHeaderSetImpl.readHeaders(b[0], b, 3);
if (dataHeaders.getResponseCode() != OBEXOperationCodes.OBEX_RESPONSE_SUCCESS) {
throw new IOException("Fails to abort operation, received "
+ OBEXUtils.toStringObexResponseCodes(dataHeaders.getResponseCode()));
}
} finally {
this.isClosed = true;
closeStream();
}
}

private void closeStream() throws IOException {
try {
receiveOperationEnd();
} finally {
this.operationInProgress = false;
inputStream.close();
closeOutputStream();
}
}

private void receiveOperationEnd() throws IOException {
while (!isClosed() && (operationInContinue)) {
DebugLog.debug("operation expects operation end");
receiveData(this.inputStream);
}
}

private void closeOutputStream() throws IOException {
if (outputStream != null) {
synchronized (lock) {
if (outputStream != null) {
outputStream.close();
}
outputStream = null;
}
}
}

protected void validateOperationIsOpen() throws IOException {
if (isClosed) {
throw new IOException("operation closed");
}
}

/*
* (non-Javadoc)
*
* @see javax.obex.Operation#getReceivedHeaders()
*/
public HeaderSet getReceivedHeaders() throws IOException {
validateOperationIsOpen();
endRequestPhase();
return OBEXHeaderSetImpl.cloneHeaders(this.replyHeaders);
}

/*
* (non-Javadoc)
*
* @see javax.obex.Operation#getResponseCode()
*
* A call will do an implicit close on the Stream and therefore signal that the request is done.
*/
public int getResponseCode() throws IOException {
validateOperationIsOpen();
endRequestPhase();
closeOutputStream();
receiveOperationEnd();
return this.replyHeaders.getResponseCode();
}

public void sendHeaders(HeaderSet headers) throws IOException {
if (headers == null) {
throw new NullPointerException("headers are null");
}
OBEXHeaderSetImpl.validateCreatedHeaderSet(headers);
validateOperationIsOpen();
if (this.requestEnded) {
throw new IOException("the request phase has already ended");
}
if (SHORT_REQUEST_PHASE && (this.startOperationHeaders != null)) {
exchangePacket(this.startOperationHeaders);
this.startOperationHeaders = null;
}
exchangePacket((OBEXHeaderSetImpl) headers);
}

/*
* (non-Javadoc)
*
* @see javax.microedition.io.ContentConnection#getEncoding() <code>getEncoding()</code> will always return
* <code>null</code>
*/
public String getEncoding() {
return null;
}

/*
* (non-Javadoc)
*
* @see javax.microedition.io.ContentConnection#getLength() <code>getLength()</code> will return the length
* specified by the OBEX Length header or -1 if the OBEX Length header was not included.
*/
public long getLength() {
Long len;
try {
len = (Long) replyHeaders.getHeader(HeaderSet.LENGTH);
} catch (IOException e) {
return -1;
}
if (len == null) {
return -1;
}
return len.longValue();
}

/*
* (non-Javadoc)
*
* @see javax.microedition.io.ContentConnection#getType() <code>getType()</code> will return the value specified in
* the OBEX Type header or <code>null</code> if the OBEX Type header was not included.
*/
public String getType() {
try {
return (String) replyHeaders.getHeader(HeaderSet.TYPE);
} catch (IOException e) {
return null;
}
}

public DataInputStream openDataInputStream() throws IOException {
return new DataInputStream(openInputStream());
}

public DataOutputStream openDataOutputStream() throws IOException {
return new DataOutputStream(openOutputStream());
}

/*
* (non-Javadoc)
*
* @see javax.microedition.io.Connection#close()
*/
public void close() throws IOException {
try {
endRequestPhase();
} finally {
closeStream();
if (!this.isClosed) {
this.isClosed = true;
DebugLog.debug("client operation closed");
}
}
}

public boolean isClosed() {
return this.isClosed || this.errorReceived;
}
}

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

r2645 by skarzhevskyy on Dec 23, 2008   Diff
fix for retryHeaders
r2644 by skarzhevskyy on Dec 22, 2008   Diff
fixed handling of Authentication
Responses
r2640 by skarzhevskyy on Dec 22, 2008   Diff
change internal writePacket function
to accept headers
All revisions of this file

File info

Size: 13256 bytes, 433 lines

File properties

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