blob: a7273b489fd6f0560291d8d5cd051d7ca45c0808 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
package org.apache.plc4x.simulator;
import org.apache.plc4x.simulator.model.Context;
import org.apache.plc4x.simulator.server.ServerModule;
import org.apache.plc4x.simulator.server.s7.*;
import org.apache.plc4x.simulator.simulation.SimulationModule;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Map;
import java.util.ServiceLoader;
import java.util.TreeMap;
import java.util.concurrent.TimeUnit;
import static org.apache.plc4x.simulator.server.s7.S7ValueFactory.*;
public class PlcSimulator {
private static final Logger LOGGER = LoggerFactory.getLogger(PlcSimulator.class);
private boolean running;
private final Map<String, ServerModule> serverModules;
private final SimulationModule simulationModule;
private PlcSimulator(String simulationName) {
this(simulationName, Thread.currentThread().getContextClassLoader());
}
private PlcSimulator(String simulationName, ClassLoader classLoader) {
Context context = null;
// Initialize all the simulation modules.
LOGGER.info("Initializing Simulation Modules:");
SimulationModule foundSimulationModule = null;
ServiceLoader<SimulationModule> simulationModuleLoader = ServiceLoader.load(SimulationModule.class, classLoader);
for (SimulationModule curSimulationModule : simulationModuleLoader) {
if (curSimulationModule.getName().equals(simulationName)) {
LOGGER.info(String.format("Initializing simulation module: %s ...", simulationName));
foundSimulationModule = curSimulationModule;
context = curSimulationModule.getContext();
LOGGER.info("Initialized");
}
}
// If we couldn't find the simulation module provided, report an error and exit.
if (foundSimulationModule == null) {
LOGGER.info(String.format("Couldn't find simulation module %s", simulationName));
System.exit(1);
}
simulationModule = foundSimulationModule;
LOGGER.info("Finished Initializing Simulation Modules\n");
// Initialize all the server modules.
LOGGER.info("Initializing Server Modules:");
serverModules = new TreeMap<>();
ServiceLoader<ServerModule> serverModuleLoader = ServiceLoader.load(ServerModule.class, classLoader);
for (ServerModule serverModule : serverModuleLoader) {
LOGGER.info(String.format("Initializing server module: %s ...", serverModule.getName()));
serverModules.put(serverModule.getName(), serverModule);
// Inject the contexts.
serverModule.setContext(context);
LOGGER.info("Initialized");
}
LOGGER.info("Finished Initializing Server Modules\n");
running = true;
}
private void stop() {
running = false;
}
private void run() throws Exception {
// Start all server modules.
LOGGER.info("Starting Server Modules:");
for (ServerModule serverModule : serverModules.values()) {
LOGGER.info(String.format("Starting server module: %s ...", serverModule.getName()));
((S7ServerModule) serverModule).setHandler(new S7PlcHandlerBase() {
@Override
public S7Value readDB(int dbNumber, int byteAddress, byte bitAddress) throws FieldReadException {
if (byteAddress == 0) {
return INT((short) -42);
} else if (byteAddress == 2) {
return UINT(42);
} else if (byteAddress == 4) {
return LINT(-42);
} else if (byteAddress == 12) {
return DINT(-42);
} else {
throw new InvalidAddressException();
}
}
});
serverModule.start();
LOGGER.info("Started");
}
LOGGER.info("Finished Starting Server Modules\n");
try {
LOGGER.info("Starting simulations ...");
while (running) {
try {
simulationModule.loop();
} catch (Exception e) {
LOGGER.error("Caught error while executing loop() method of " + simulationModule.getName() +
" simulation.", e);
}
// Sleep 100 ms to not run the simulation too eagerly.
TimeUnit.MILLISECONDS.sleep(100);
}
} finally {
LOGGER.info("Simulations ended");
// Start all server modules.
for (ServerModule serverModule : serverModules.values()) {
LOGGER.info(String.format("Stopping server module %s ...", serverModule.getName()));
serverModule.stop();
LOGGER.info("Stopped");
}
}
}
public static void main(String[] args) throws Exception {
final PlcSimulator simulator = new PlcSimulator("Water Tank");
// Make sure we stop everything correctly.
Runtime.getRuntime().addShutdownHook(new Thread(simulator::stop));
// Start the simulator.
simulator.run();
}
}