com.cisco.trex.stateless.TRexTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trex-java-sdk Show documentation
Show all versions of trex-java-sdk Show documentation
Java client SDK provides an implementation for TRex RPC APIs
package com.cisco.trex.stateless;
import com.cisco.trex.stateless.model.RPCResponse;
import com.cisco.trex.stateless.util.IDataCompressor;
import com.cisco.trex.stateless.util.TRexDataCompressor;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.zeromq.SocketType;
import org.zeromq.ZMQ;
import org.zeromq.ZMQException;
/** TRex Transport class to create zmq socket for connection to trex server */
public class TRexTransport {
private static final Logger LOGGER = LoggerFactory.getLogger(TRexTransport.class);
private static final int DEFAULT_TIMEOUT = 3000;
private static final String PROTOCOL = "tcp";
private final String connectionString;
private final IDataCompressor dataCompressor;
private final ZMQ.Context zmqCtx = ZMQ.context(1);
private final ZMQ.Socket zmqSocket;
private final String host;
private final String port;
/**
* @param host Server address
* @param port Server port
* @param timeout How long to wait for server response
* @param dataCompressor
*/
public TRexTransport(String host, String port, int timeout, IDataCompressor dataCompressor) {
this.host = host;
this.port = port;
this.zmqSocket = zmqCtx.socket(SocketType.REQ);
int actualTimeout = timeout <= 0 ? DEFAULT_TIMEOUT : timeout;
zmqSocket.setReceiveTimeOut(actualTimeout);
zmqSocket.setSendTimeOut(actualTimeout);
this.connectionString = PROTOCOL + "://" + this.host + ":" + this.port;
zmqSocket.connect(connectionString);
this.dataCompressor = dataCompressor;
}
/**
* @param host Server address
* @param port Server port
* @param timeout How long to wait for server response
*/
public TRexTransport(String host, String port, int timeout) {
this(host, port, timeout, new TRexDataCompressor());
}
/**
* Send TRex command to the server
*
* @param command
* @return RPCResponse
* @throws IOException
*/
public RPCResponse sendCommand(TRexCommand command) throws IOException {
String json = new ObjectMapper().writeValueAsString(command.getParameters());
String response = sendJson(json);
ObjectMapper objectMapper = new ObjectMapper();
if (objectMapper.readTree(response).isArray()) {
// for versions of TRex before v2.61, single entry response also wrapped with json array
RPCResponse[] rpcResult = objectMapper.readValue(response, RPCResponse[].class);
return rpcResult[0];
}
return objectMapper.readValue(response, RPCResponse.class);
}
/**
* Send TRex command list to the server
*
* @param commands
* @return RPCResponse
* @throws IOException
*/
public RPCResponse[] sendCommands(List commands) throws IOException {
if (commands.size() == 1) {
return new RPCResponse[] {sendCommand(commands.get(0))};
}
List