⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 moteif.java

📁 这是无线传感器网络用的操作系统tinyos-1.1.0,未来的世界将是它呵
💻 JAVA
字号:
// $Id: MoteIF.java,v 1.12.2.3 2003/08/26 09:08:10 cssharp 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. *//* Authors:  David Gay  <dgay@intel-research.net> *           Intel Research Berkeley Lab * *//** * @author David Gay <dgay@intel-research.net> * @author Intel Research Berkeley Lab */package net.tinyos.message;import net.tinyos.util.*;import net.tinyos.packet.*;import java.io.*;/** * MoteIf class (simple mote interface).<p> * * A simple, general mote interface built on top of SerialForwarder and * Message. * Users of MoteIF can easily send messages and register new message * listeners. * * @version	1, 15 Jul 2002 * @author	David Gay */public class MoteIF extends Thread {    /** The destination address for a broadcast. */    public static final int TOS_BCAST_ADDR = 0xffff;    static final int ANY_GROUP_ID = -1;    protected PhoenixSource source;    protected Sender sender;    protected Receiver receiver;    protected int groupId;        /**     * Create a new mote interface to an arbitrary packet source. The     * packet source is started if necessary.      *     * Note: The returned MoteIF need not be started (it is a thread     * for legacy reasons only)     *     * @param source packet source to use     */    public MoteIF(PhoenixSource source) {	init(source, ANY_GROUP_ID);    }    /**     * Create a new mote interface to an arbitrary packet source for a     * specific group id. The packet source is started if necessary.     *     * This constructor is only useful if you expect to be using a     * TransparentBase base station (which does not filter or set group ids),     * or if you're using the old GenericBase (which requires the PC to     * specify the same group id as used for the GenericBase)     *     * Note: The returned MoteIF need not be started (it is a thread     * for legacy reasons only)     *     * @param source packet source to use     * @param gid group id of messages to listen to. If set to -1,     *   receive all group ID's, and disable sending of messages.     */    public MoteIF(PhoenixSource source, int gid) {	init(source, gid);    }    /**     * Create a new mote interface to the default packet source. The source     * is automatically started. In most cases, this is probably the     * constructor for you!     * @param messages where to send status messages (null means no messages)     */    public MoteIF(Messenger messages) {	init(BuildSource.makePhoenix(messages), ANY_GROUP_ID);    }    /**     * Create a new mote interface to the default packet source for     * group id gid. The source is automatically started.     *     * This constructor is only useful if you expect to be using a     * TransparentBase base station (which does not filter or set group ids),     * or if you're using the old GenericBase (which requires the PC to     * specify the same group id as used for the GenericBase)     *     * @param messages where to send status messages (null means no messages)     * @param gid group id of messages to listen to. If set to -1,     *   receive all group ID's, and disable sending of messages.     */    public MoteIF(Messenger messages, int gid) {	init(BuildSource.makePhoenix(messages), gid);    }    private void init(PhoenixSource source, int gid) {	this.source = source;	// Start source if it isn't started yet	try {	    source.start();	}	catch (IllegalThreadStateException e) { }	groupId = gid;	receiver = new Receiver(source, groupId);	sender = new Sender(source, groupId);    }    /**     * Return this MoteIF's group id     * @return The group id, -1 for "promiscuous receive" (and send     *   with arbitrary group id - this will only work with the new     *   TinyosBase base station)     */    public int getGroupId() {	return groupId;    }    /**     * @return this MoteIF's source      */    public PhoenixSource getSource() {	return source;    }    /**     * Send m to moteId via this mote interface     * @param moteId message destination     * @param m message     * @exception IOException thrown if message could not be sent     */    synchronized public void send(int moteId, Message m) throws IOException {	sender.send(moteId, m);    }    /**     * Register a listener for given messages type. m should be an instance     * of a subclass of Message (generated by mig). When a message of the     * corresponding type is received, a new instance of m's class is      * created with the received message as data. This message is then      * passed to the given MessageListener.      *      * Note that multiple MessageListeners can be registered for the same     * message type, and in fact each listener can use a different template     * type if it wishes (the only requirement is that m.getType() matches     * the received message).      *     * @param m message template specifying which message to receive     * @param l listener to which received messages are dispatched     */    synchronized public void registerListener(Message m, MessageListener l) {	receiver.registerListener(m, l);    }    /**     * Deregister a listener for a given message type.     * @param m message template specifying which message to receive     * @param l listener to which received messages are dispatched     */    synchronized public void deregisterListener(Message m, MessageListener l) {      receiver.deregisterListener(m, l);    }    ////////////////  DEPRECATED ROUTINES /////////////////    /** The maximum message size that can be sent.     * @deprecated This is relatively meaningless as a PacketSource     *   can be created for any desired packet size     *   (and, worse, the constructors below may assign this static field)     */    public static int maxMessageSize = new BaseTOSMsg().totalSize_data();    /** The default TinyOS packet size.     * @deprecated With the new PacketSource frameworks, applications     *   should not be worrying about packet sizes     */    public static final int defaultPacketSize = BaseTOSMsg.offset_strength();    // The size difference between payload and packet size    // (senders need to know the full packet size)    private static int headerOverhead = defaultPacketSize - maxMessageSize;    SerialStub sfw;    /**     * Create a new mote interface to SerialForwarder at host:port for     * group id gid. The returned MoteIF (a thread object) should be     * started if any messages are to be received.     * @param host host of the SerialForwarder     * @param port port of the SerialForwarder     * @param gid group id of messages to listen to. If set to -1,     *   receive all group ID's, and disable sending of messages.     * @exception IOException thrown if SerialForwarder cannot be reached     * @deprecated Use PhoenixSources     */    public MoteIF(String host, int port, int gid) throws Exception {	this(host,port,gid,maxMessageSize,true);    }    /**     * Create a new mote interface to an arbitrary SerialStub with     * group id gid. The returned MoteIF (a thread object) should be     * started if any messages are to be received.     * @param stub Stub to use for communication to serial port or SerialForwarder     * @param gid group id of messages to listen to. If set to -1,     *   receive all group ID's, and disable sending of messages.     * @exception IOException thrown if SerialForwarder cannot be reached     * @deprecated Use PhoenixSources     */    public MoteIF(SerialStub stub, int gid) throws Exception {	this(stub, gid, maxMessageSize, true);    }    /**     * Create a new mote interface to an arbitrary SerialStub for     * group id gid. The returned MoteIF (a thread object) should be     * started if any messages are to be received.     * @param stub Stub to use for communication to serial port or SerialForwarder     * @param gid group id of messages to listen to. If set to -1,     *   receive all group ID's, and disable sending of messages.     * @param msg_size The maximum message size this application will need to send     * @exception IOException thrown if SerialForwarder cannot be reached     * @deprecated Use PhoenixSources     */    public MoteIF(SerialStub stub, int gid, int msg_size, boolean checkCrc) throws Exception {	maxMessageSize = msg_size;	sfw = stub;	sfw.Open();	groupId = gid;	receiver = new Receiver(sfw, groupId, checkCrc);	if (groupId != -1) {	    sender = new Sender(sfw, groupId, maxMessageSize + headerOverhead);	}    }    /**     * Create a new mote interface to SerialForwarder at host:port for     * group id gid. The returned MoteIF (a thread object) should be     * started if any messages are to be received.     * @param host host of the SerialForwarder     * @param port port of the SerialForwarder     * @param gid group id of messages to listen to. If set to -1,     *   receive all group ID's, and disable sending of messages.     * @param msg_size The maximum message size this application will need to send     *                 Note that the serial forwarded must have been initialized with at least      *                 this message size as well.     * @exception IOException thrown if SerialForwarder cannot be reached     * @deprecated Use PhoenixSources     */    public MoteIF(String host, int port, int gid, int msg_size, boolean checkCrc) throws Exception {	this(new SerialForwarderStub(host, port, msg_size + headerOverhead),	     gid, msg_size, checkCrc);    }    /**     * Body of this thread. Repeatedly reads and dispatches messages from     * the SerialForwarder      * @deprecated No thread is needed for MoteIF when PhoenixSource is used     */    public void run() {	// This does nothing with PhoenixSources (which have their own	// thread)	if (sfw != null) {	    try { sfw.Read(); }	    catch (IOException e) {		e.printStackTrace();		System.exit(2);	    }	}    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -