1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/*
* $Id$
*
* Copyright (c) 1996, 2009, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.javatest.agent;
import gnu.io.CommPortIdentifier;
import gnu.io.NoSuchPortException;
import gnu.io.PortInUseException;
import gnu.io.SerialPort;
import gnu.io.SerialPortEvent;
import gnu.io.UnsupportedCommOperationException;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.TooManyListenersException;
/**
* A connection via a serial port.
*/
public class SerialPortConnection implements Connection {
private static final int baudRate =
Integer.getInteger("javatest.serialPort.baudRate", 38400).intValue();
private String name;
private SerialPort port;
private InputStream portInputStream;
private OutputStream portOutputStream;
private boolean closed;
/**
* Create a connection via a serial port.
*
* @param name The name of the serial port to use.
* @param app The name of the application using the port.
* @param timeout The time, in milliseconds, to wait for the port
* to be available.
* @throws IOException if a problem occurs accessing the serial port.
* @throws NoSuchPortException if a bad port name was specified.
* @throws PortInUseException if the specified port was not available.
* @throws InterruptedException if the thread was interrupted while waiting
* for the port to become available.
*/
public SerialPortConnection(String name, String app, int timeout) throws IOException, NoSuchPortException, PortInUseException, InterruptedException {
this(open(CommPortIdentifier.getPortIdentifier(name), app, timeout));
}
/**
* Create a connection via a serial port.
*
* @param portId An identifier for the serial port to use.
* @param app The name of the application using the port.
* @param timeout The time, in milliseconds, to wait for the port
* to be available.
* @throws IOException if a problem occurs accessing the serial port.
* @throws PortInUseException if the specified port was not available.
* @throws InterruptedException if the thread was interrupted while waiting
* for the port to become available.
*/
public SerialPortConnection(CommPortIdentifier portId, String app, int timeout) throws IOException, PortInUseException, InterruptedException {
this(open(portId, app, timeout));
}
private SerialPortConnection(SerialPort port) throws IOException, InterruptedException {
//System.err.println("opening " + port.getName());
this.port = port;
portInputStream = port.getInputStream();
portOutputStream = port.getOutputStream();
try {
port.setSerialPortParams(baudRate,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
port.setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN | SerialPort.FLOWCONTROL_RTSCTS_OUT);
} catch (UnsupportedCommOperationException e) {
throw new IOException(e.toString());
}
//System.err.println("opened " + port.getName() +
// " " + port.getBaudRate() +
// " " + port.getDataBits() + "/" + parityToString(port.getParity()) + "/" + port.getStopBits() +
// " " + flowControlToString(port.getFlowControlMode()));
// flush any input; we haven't marked ourselves as open for business set,
// so the data cannot be for us
int bytesToFlush = portInputStream.available();
if (bytesToFlush > 0) {
portInputStream.skip(bytesToFlush);
}
// use DTR to indicate we're open and listening;
// we'll switch off DTR when the connection is closed
//System.err.println("setting DTR to true");
port.setDTR(true);
// set up a listener to notify this thread when DSR/CD become true,
// and to close this connection when they become false
try {
port.addEventListener(ev -> {
int t = ev.getEventType();
switch (ev.getEventType()) {
case SerialPortEvent.CD:
case SerialPortEvent.DSR:
// WARNING: The following line may cause ThreadDeath if
// it determines the port should be closed.
updateReadyStatus();
break;
}
});
} catch (TooManyListenersException e) {
// should not happen, because ports are always opened inside this class
}
port.notifyOnCarrierDetect(true);
port.notifyOnDSR(true);
waitUntilReady();
}
private static SerialPort open(CommPortIdentifier cpi, String app, int timeout) throws PortInUseException {
if (cpi.getPortType() != CommPortIdentifier.PORT_SERIAL) {
throw new IllegalArgumentException("not a serial port: " + cpi.getName());
}
return (SerialPort) cpi.open(app, timeout);
}
@Override
public String getName() {
return port.getName();
}
@Override
public InputStream getInputStream() {
return portInputStream;
}
@Override
public OutputStream getOutputStream() {
return new FilterOutputStream(portOutputStream) {
// flushing stream after it has been closed causes
// IllegalStateException
@Override
public void flush() throws IOException {
if (!closed) {
super.flush();
}
}
};
}
@Override
public synchronized void close() {
if (!closed) {
try {
//System.err.println("setting DTR to false");
port.setDTR(false);
// send break for at least two character periods
// note that char-rate = baud-rate/10 (for 1 start/8 data/1 stop bit)
//System.err.println("send break");
//port.sendBreak(2*Math.max(1, 10000/port.getBaudRate()));
//System.err.println("closing streams");
// --- leave client to connection to close these streams, since they
// --- can only be closed once
//portInputStream.close();
//portOutputStream.close();
//System.err.println("closing port");
// WARNING: The following line may cause ThreadDeath if
// this method is called called from an event routine.
port.close();
} finally {
closed = true;
//System.err.println("closed");
notifyAll();
}
}
}
@Override
public synchronized boolean isClosed() {
return closed;
}
@Override
public synchronized void waitUntilClosed(int timeout) throws InterruptedException {
long now = System.currentTimeMillis();
long end = now + timeout;
while (now < end && !closed) {
wait(end - now);
now = System.currentTimeMillis();
}
}
private synchronized void updateReadyStatus() {
if (port.isDSR() || port.isCD()) {
notifyAll();
} else {
//System.err.println("lost DSR and CD, closing connection");
Thread t = new Thread() {
@Override
public void run() {
// WARNING: The following line may cause ThreadDeath if
// this method is called called from an event routine.
close();
}
};
t.start();
}
}
private synchronized void waitUntilReady() throws InterruptedException {
// wait for other end to set DTR, available at this end as DSR
while (!(port.isDSR() || port.isCD())) {
//System.err.println("waiting for DSR or CD");
wait();
}
//System.err.println("DSR or CD available");
}
private String parityToString(int parity) {
switch (parity) {
case SerialPort.PARITY_NONE:
return "none";
case SerialPort.PARITY_ODD:
return "odd";
case SerialPort.PARITY_EVEN:
return "even";
case SerialPort.PARITY_MARK:
return "mark";
case SerialPort.PARITY_SPACE:
return "space";
default:
return "?" + parity + "?";
}
}
private String flowControlToString(int flowControl) {
switch (flowControl) {
case SerialPort.FLOWCONTROL_NONE:
return "none";
case SerialPort.FLOWCONTROL_RTSCTS_IN | SerialPort.FLOWCONTROL_RTSCTS_OUT:
return "h/w";
case SerialPort.FLOWCONTROL_XONXOFF_IN | SerialPort.FLOWCONTROL_XONXOFF_OUT:
return "s/w";
default:
return "?" + flowControl + "?";
}
}
}
|