All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.obex.Operation Maven / Gradle / Ivy

Go to download

BlueCove is JSR-82 J2SE implementation that currently interfaces with the Mac OS X, WIDCOMM, BlueSoleil and Microsoft Bluetooth stack

The newest version!
/**
 *  BlueCove - Java library for Bluetooth
 * 
 *  Java docs licensed under the Apache License, Version 2.0
 *  http://www.apache.org/licenses/LICENSE-2.0 
 *   (c) Copyright 2001, 2002 Motorola, Inc.  ALL RIGHTS RESERVED.
 *
 *  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: Operation.java 2531 2008-12-09 19:43:45Z skarzhevskyy $  
 */
package javax.obex;

import java.io.IOException;

import javax.microedition.io.ContentConnection;

/**
 * The Operation interface provides ways to manipulate a single
 * OBEX PUT or GET operation. The implementation of this interface sends OBEX
 * packets as they are built. If during the operation the peer in the operation
 * ends the operation, an IOException is thrown on the next read
 * from the input stream, write to the output stream, or call to
 * sendHeaders().
 * 

* Definition of methods inherited from ContentConnection * *

* getEncoding() will always return null.
* getLength() will return the length specified by the OBEX Length * header or -1 if the OBEX Length header was not included.
* getType() will return the value specified in the OBEX Type * header or null if the OBEX Type header was not included.
*

* How Headers are Handled *

* As headers are received, they may be retrieved through the * getReceivedHeaders() method. If new headers are set during the * operation, the new headers will be sent during the next packet exchange. *

* PUT example *

* *

 * void putObjectViaOBEX(ClientSession conn, HeaderSet head, byte[] obj) throws IOException {
 * 
 *     // Include the length header
 *     head.setHeader(head.LENGTH, new Long(obj.length));
 * 
 *     // Initiate the PUT request
 *     Operation op = conn.put(head);
 * 
 *     // Open the output stream to put the object to it
 *     DataOutputStream out = op.openDataOutputStream();
 * 
 *     // Send the object to the server
 *     out.write(obj);
 * 
 *     // End the transaction
 *     out.close();
 *     op.close();
 * }
 * 
* *

* GET example *

* *

 * byte[] getObjectViaOBEX(ClientSession conn, HeaderSet head) throws IOException {
 * 
 *     // Send the initial GET request to the server
 *     Operation op = conn.get(head);
 * 
 *     // Retrieve the length of the object being sent back
 *     int length = op.getLength();
 * 
 *     // Create space for the object
 *     byte[] obj = new byte[length];
 * 
 *     // Get the object from the input stream
 *     DataInputStream in = op.openDataInputStream();
 *     in.read(obj);
 * 
 *     // End the transaction
 *     in.close();
 *     op.close();
 * 
 *     return obj;
 * }
 * 
* *

Client PUT Operation Flow

* For PUT operations, a call to close() the * OutputStream returned from openOutputStream() or * openDataOutputStream() will signal that the request is done. (In * OBEX terms, the End-Of-Body header should be sent and the final bit in the * request will be set.) At this point, the reply from the server may begin to * be processed. A call to getResponseCode() will do an implicit * close on the OutputStream and therefore signal that the request * is done. *

Client GET Operation Flow

* For GET operation, a call to openInputStream() or * openDataInputStream() signals that the request is complete. (In * OBEX terms, the final bit in the request is set.) A call to * getResponseCode() causes an implicit close on the * OutputStream and therefore signal that the request is done. * */ public interface Operation extends ContentConnection { /** * Sends an ABORT message to the server. By calling this method, the * corresponding input and output streams will be closed along with this * object. No headers are sent in the abort request. This will end the * operation since close() will be called by this method. * * @exception IOException * if the transaction has already ended or if an OBEX server * calls this method */ public void abort() throws IOException; /** * Returns the headers that have been received during the operation. * Modifying the object returned has no effect on the headers that are sent * or retrieved. * * @return the headers received during this Operation * * @exception IOException * if this Operation has been closed */ public HeaderSet getReceivedHeaders() throws IOException; /** * Specifies the headers that should be sent in the next OBEX message that * is sent. * * @param headers * the headers to send in the next message * * @exception IOException * if this Operation has been closed or the * transaction has ended and no further messages will be * exchanged * * @exception IllegalArgumentException * if headers was not created by a call to * ServerRequestHandler.createHeaderSet() or * ClientSession.createHeaderSet() * * @exception NullPointerException * if headers if null */ public void sendHeaders(HeaderSet headers) throws IOException; /** * Returns the response code received from the server. Response codes are * defined in the ResponseCodes class. The OBEX response code * of CONTINUE (0x10 or 0x90) must never be returned from this method. * * @see ResponseCodes * * @return the response code retrieved from the server * * @exception IOException * if an error occurred in the transport layer during the * transaction; if this Operation object has been closed; if * this object was created by an OBEX server */ public int getResponseCode() throws IOException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy