118 lines
3.8 KiB
Java
118 lines
3.8 KiB
Java
|
/*
|
||
|
* Copyright (c) 2011, Swedish Institute of Computer Science.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without
|
||
|
* modification, are permitted provided that the following conditions
|
||
|
* are met:
|
||
|
* 1. Redistributions of source code must retain the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer.
|
||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer in the
|
||
|
* documentation and/or other materials provided with the distribution.
|
||
|
* 3. Neither the name of the Institute nor the names of its contributors
|
||
|
* may be used to endorse or promote products derived from this software
|
||
|
* without specific prior written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||
|
* SUCH DAMAGE.
|
||
|
*
|
||
|
* -----------------------------------------------------------------
|
||
|
*
|
||
|
* UDPConnection
|
||
|
*
|
||
|
* Authors : Niclas Finne
|
||
|
* Created : 1 June 2011
|
||
|
*/
|
||
|
|
||
|
package se.sics.contiki.collect;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.net.DatagramPacket;
|
||
|
import java.net.DatagramSocket;
|
||
|
import java.net.InetAddress;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public class UDPConnection extends SerialConnection {
|
||
|
|
||
|
private final int port;
|
||
|
private DatagramSocket serverSocket;
|
||
|
|
||
|
public UDPConnection(SerialConnectionListener listener, int port) {
|
||
|
super(listener);
|
||
|
this.port = port;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getConnectionName() {
|
||
|
return "<UDP:" + port + ">";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void open(String comPort) {
|
||
|
close();
|
||
|
this.comPort = comPort == null ? "" : comPort;
|
||
|
|
||
|
isClosed = false;
|
||
|
try {
|
||
|
serverSocket = new DatagramSocket(port);
|
||
|
|
||
|
/* Start thread listening on UDP */
|
||
|
Thread readInput = new Thread(new Runnable() {
|
||
|
public void run() {
|
||
|
byte[] data = new byte[1024];
|
||
|
try {
|
||
|
while (isOpen) {
|
||
|
DatagramPacket packet = new DatagramPacket(data, data.length);
|
||
|
serverSocket.receive(packet);
|
||
|
|
||
|
InetAddress addr = packet.getAddress();
|
||
|
System.out.println("UDP: received " + packet.getLength() + " bytes from " + addr.getHostAddress() + ":" + packet.getPort());
|
||
|
// TODO handle data
|
||
|
// serialData(line);
|
||
|
}
|
||
|
System.out.println("SerialConnection UDP terminated.");
|
||
|
closeConnection();
|
||
|
} catch (IOException e) {
|
||
|
lastError = "Error when reading from SerialConnection UDP: " + e;
|
||
|
System.err.println(lastError);
|
||
|
if (!isClosed) {
|
||
|
e.printStackTrace();
|
||
|
closeConnection();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}, "UDP thread");
|
||
|
isOpen = true;
|
||
|
serialOpened();
|
||
|
readInput.start();
|
||
|
|
||
|
} catch (Exception e) {
|
||
|
lastError = "Failed to open UDP server at port " + port + ": " + e;
|
||
|
System.err.println(lastError);
|
||
|
e.printStackTrace();
|
||
|
closeConnection();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void doClose() {
|
||
|
if (serverSocket != null) {
|
||
|
serverSocket.close();
|
||
|
serverSocket = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|