]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - support/sdk/java/net/tinyos/packet/PacketSource.java
Merge devel code into the trunk.
[tinyos-2.x.git] / support / sdk / java / net / tinyos / packet / PacketSource.java
diff --git a/support/sdk/java/net/tinyos/packet/PacketSource.java b/support/sdk/java/net/tinyos/packet/PacketSource.java
new file mode 100644 (file)
index 0000000..c0aaf01
--- /dev/null
@@ -0,0 +1,97 @@
+// $Id$
+
+/*                                                                     tab:4
+ * "Copyright (c) 2000-2003 The Regents of the University  of California.  
+ * All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation for any purpose, without fee, and without written agreement is
+ * hereby granted, provided that the above copyright notice, the following
+ * two paragraphs and the author appear in all copies of this software.
+ * 
+ * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
+ * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
+ * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * 
+ * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
+ * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
+ *
+ * Copyright (c) 2002-2003 Intel Corporation
+ * All rights reserved.
+ *
+ * This file is distributed under the terms in the attached INTEL-LICENSE     
+ * file. If you do not find these files, copies can be found by writing to
+ * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
+ * 94704.  Attention:  Intel License Inquiry.
+ */
+
+
+/** This interface specifies the generic behaviour of a packet mediator.
+    The read and write operations are blocking. 
+    Reads and writes may fail (e.g., for communications failure), which
+    implicitly closes the mediator. It is not possible to reopen a mediator
+    after it is closed (instead, a new mediator should be created).
+
+    The packet byte array must be at least 1 byte long - the first byte
+    indicates the type of packet and is used to dispatch to upper layers.
+
+    PacketSources are point-to-point and have "at most once" semantics.
+    writePacket should return true only if the packet has been received
+    Note that checking this is not possible with some of our broken,
+    legacy protocols, and that we will optimistically assume that packets
+    sent over reliable links (e.g., tcp/ip socket to a serial forwarder)
+    will be reliably delivered by tcp/ip.
+ */
+package net.tinyos.packet;
+
+import java.io.*;
+import net.tinyos.util.*;
+
+public interface PacketSource
+{
+    /**
+     * Get PacketSource name
+     * @return the name of this packet source, valid for use with
+     * <code>BuildSource.makeSource</code>.
+     */
+    public String getName();
+
+    /**
+     * Open a packet source
+     * @param messages A destination for informative messages from the
+     *   packet source, or null to discard these.
+     * @exception IOException If the source could not be opened
+     */
+    public void open(Messenger messages) throws IOException;
+
+    /**
+     * Close a packet source. Closing a source must force any 
+     * running <code>readPacket</code> and <code>writePacket</code>
+     * operations to terminate with an IOException
+     * @exception IOException Thrown if a problem occured during closing.
+     *   The source is considered closed even if thos occurs.
+     *   Closing a closed source does not cause this exception
+     */
+    public void close() throws IOException;
+
+    /**
+     * Read a packet
+     * @return The packet read (newly allocated). The format is described
+     *   above
+     * @exception IOException If the source detected a problem. The source
+     *   is automatically closed.
+     */
+    public byte[] readPacket() throws IOException;
+
+    /**
+     * Write a packet
+     * @param packet The packet to write. The format is decribed above.
+     * @return Some packet sources will return false if the packet
+     *   could not be written.
+     */
+    public boolean writePacket(byte[] packet) throws IOException;
+}