use of com.automatak.dnp3.Master in project solarnetwork-node by SolarNetwork.
the class MasterDemo method run.
static void run(DNP3Manager manager) throws Exception {
// Create a tcp channel class that will connect to the loopback
Channel channel = manager.addTCPClient("client", LogMasks.NORMAL | LogMasks.APP_COMMS, ChannelRetry.getDefault(), "127.0.0.1", "0.0.0.0", 20000, new Slf4jChannelListener());
// You can modify the defaults to change the way the master behaves
MasterStackConfig config = new MasterStackConfig();
// Create a master instance, pass in a simple singleton to print received values to the console
Master master = channel.addMaster("master", PrintingSOEHandler.getInstance(), DefaultMasterApplication.getInstance(), config);
// do an integrity scan every 2 seconds
// master.addPeriodicScan(Duration.ofSeconds(2), Header.getIntegrity());
master.enable();
// all this cruft just to read a line of text in Java. Oh the humanity.
InputStreamReader converter = new InputStreamReader(System.in);
BufferedReader in = new BufferedReader(converter);
while (true) {
System.out.println("Enter something to issue a command or type <quit> to exit");
String line = in.readLine();
switch(line) {
case ("quit"):
return;
case ("crob"):
ControlRelayOutputBlock crob = new ControlRelayOutputBlock(ControlCode.LATCH_ON, (short) 1, 100, 100, CommandStatus.SUCCESS);
master.selectAndOperateCROB(crob, 0).thenAccept(// asynchronously print the result of the command operation
(CommandTaskResult result) -> System.out.println(result));
break;
case ("scan"):
master.scan(Header.getEventClasses());
break;
default:
System.out.println("Unknown command: " + line);
break;
}
}
}
Aggregations