gnu.io.rfc2217.ParityCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nrjavaserial Show documentation
Show all versions of nrjavaserial Show documentation
A fork of the RXTX library with a focus on ease of use and embeddability in other libraries.
/*
* Copyright (C) 2010 Archie L. Cobbs. All rights reserved.
*
* $Id: ParityCommand.java 39 2011-03-22 17:21:53Z archie.cobbs $
*/
package gnu.io.rfc2217;
import static gnu.io.rfc2217.RFC2217.COM_PORT_OPTION;
import static gnu.io.rfc2217.RFC2217.PARITY_EVEN;
import static gnu.io.rfc2217.RFC2217.PARITY_MARK;
import static gnu.io.rfc2217.RFC2217.PARITY_NONE;
import static gnu.io.rfc2217.RFC2217.PARITY_ODD;
import static gnu.io.rfc2217.RFC2217.PARITY_REQUEST;
import static gnu.io.rfc2217.RFC2217.PARITY_SPACE;
import static gnu.io.rfc2217.RFC2217.SERVER_OFFSET;
import static gnu.io.rfc2217.RFC2217.SET_PARITY;
/**
* RFC 2217 {@code SET-PARITY} command.
*
* @see RFC 2217
*/
public class ParityCommand extends ComPortCommand {
private int parity;
/**
* Decoding constructor.
*
* @param bytes encoded option starting with the {@code COM-PORT-OPTION} byte
* NullPointerException if {@code bytes} is null
* IllegalArgumentException if {@code bytes} has length != 3
* IllegalArgumentException if {@code bytes[0]} is not {@link RFC2217#COM_PORT_OPTION}
* IllegalArgumentException if {@code bytes[1]} is not {@link RFC2217#SET_PARITY} (client or server)
* IllegalArgumentException if {@code bytes[2]} is not a valid RFC 2217 parity value
*/
public ParityCommand(int[] bytes) {
super("SET-PARITY", SET_PARITY, bytes);
this.parity = bytes[2];
switch (this.parity) {
case PARITY_REQUEST:
case PARITY_NONE:
case PARITY_ODD:
case PARITY_EVEN:
case PARITY_MARK:
case PARITY_SPACE:
break;
default:
throw new IllegalArgumentException("invalid parity value " + this.parity);
}
}
/**
* Encoding constructor.
*
* @param parity parity value
* @param client true for the client-to-server command, false for the server-to-client command
* IllegalArgumentException if {@code parity} is not a valid RFC 2217 parity value
*/
public ParityCommand(boolean client, int parity) {
this(new int[] {
COM_PORT_OPTION,
client ? SET_PARITY : SET_PARITY + SERVER_OFFSET,
parity
});
}
@Override
public String toString() {
String desc;
switch (this.parity) {
case PARITY_REQUEST:
desc = "REQUEST";
break;
case PARITY_NONE:
desc = "NONE";
break;
case PARITY_ODD:
desc = "ODD";
break;
case PARITY_EVEN:
desc = "EVEN";
break;
case PARITY_MARK:
desc = "MARK";
break;
case PARITY_SPACE:
desc = "SPACE";
break;
default:
desc = "?";
break;
}
return this.getName() + " " + desc;
}
@Override
public void visit(ComPortCommandSwitch sw) {
sw.caseParity(this);
}
public int getParity() {
return this.parity;
}
@Override
int getMinPayloadLength() {
return 1;
}
@Override
int getMaxPayloadLength() {
return 1;
}
}