
net.tinyos.packet.PacketSource Maven / Gradle / Ivy
The newest version!
// $Id: PacketSource.java,v 1.8 2004/05/31 10:30:28 szewczyk Exp $
/* 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 have the following format:
- a TinyOS TOS_Msg header (5 bytes):
address: 2 bytes, little endian
AM type: 1 byte
group: 1 byte
length: 1 byte
- 'length' data bytes
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
* BuildSource.makeSource
.
*/
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 readPacket
and writePacket
* operations to terminate with an IOException
* @excpetion 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 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;
public int getPlatform();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy