use of io.joynr.capabilities.LocalCapabilitiesDirectory in project joynr by bmwcarit.
the class ClusterController method main.
public static void main(String[] args) {
int port = 4242;
String host = "localhost";
String transport = null;
String brokerUri = null;
Options options = new Options();
Options helpOptions = new Options();
setupOptions(options, helpOptions);
CommandLine line;
CommandLineParser parser = new DefaultParser();
// to just get help / usage info.
try {
line = parser.parse(helpOptions, args);
if (line.hasOption('h')) {
HelpFormatter formatter = new HelpFormatter();
// use 'options' here to print help about all possible parameters
formatter.printHelp(ClusterController.class.getName(), options, true);
System.exit(0);
}
} catch (ParseException e) {
// ignore, since any option except '-h' will cause this exception
}
try {
line = parser.parse(options, args);
if (line.hasOption('p')) {
port = Integer.parseInt(line.getOptionValue('p'));
LOG.info("found port = " + port);
}
if (line.hasOption('H')) {
host = line.getOptionValue('H');
LOG.info("found host = " + host);
}
if (line.hasOption('t')) {
transport = line.getOptionValue('t').toLowerCase();
LOG.info("found transport = " + transport);
}
if (line.hasOption('b')) {
brokerUri = line.getOptionValue('b');
LOG.info("found brokerUri = " + brokerUri);
}
} catch (ParseException e) {
LOG.error("failed to parse command line: " + e);
HelpFormatter formatter = new HelpFormatter();
formatter.printHelp(ClusterController.class.getName(), options, true);
System.exit(1);
}
webSocketConfig = new Properties();
webSocketConfig.setProperty(WebsocketModule.PROPERTY_WEBSOCKET_MESSAGING_HOST, host);
webSocketConfig.setProperty(WebsocketModule.PROPERTY_WEBSOCKET_MESSAGING_PORT, "" + port);
webSocketConfig.setProperty(WebsocketModule.PROPERTY_WEBSOCKET_MESSAGING_PROTOCOL, "ws");
webSocketConfig.setProperty(WebsocketModule.PROPERTY_WEBSOCKET_MESSAGING_PATH, "");
Properties ccConfig = new Properties();
ccConfig.putAll(webSocketConfig);
ccConfig.setProperty(ConfigurableMessagingSettings.PROPERTY_CC_CONNECTION_TYPE, "WEBSOCKET");
Module runtimeModule = new CCWebSocketRuntimeModule();
if (transport != null) {
Module backendTransportModules = Modules.EMPTY_MODULE;
if (transport.contains("atmosphere") || transport.contains("http")) {
backendTransportModules = Modules.combine(backendTransportModules, new AtmosphereMessagingModule());
}
if (transport.contains("mqtt")) {
if (brokerUri != null) {
try {
URI uri = new URI(brokerUri);
if (uri.getAuthority() == null || uri.getHost() == null || uri.getPort() < 0) {
throw new URISyntaxException(brokerUri, "host, authority or port was not set");
}
} catch (URISyntaxException e) {
System.err.println(brokerUri + " is not a valid URI for the MQTT broker. Expecting for example: tcp://localhost:1883 Error: " + e.getMessage());
System.exit(1);
}
ccConfig.put("joynr.messaging.mqtt.brokerUri", brokerUri);
ccConfig.put("joynr.messaging.primaryglobaltransport", "mqtt");
}
backendTransportModules = Modules.combine(backendTransportModules, new MqttPahoModule());
}
runtimeModule = Modules.override(runtimeModule).with(backendTransportModules);
}
Injector injectorCC = new JoynrInjectorFactory(ccConfig, runtimeModule).getInjector();
runtime = injectorCC.getInstance(JoynrRuntime.class);
LocalCapabilitiesDirectory capabilitiesDirectory = injectorCC.getInstance(LocalCapabilitiesDirectory.class);
Thread shutdownHook = new Thread() {
@Override
public void run() {
LOG.info("executing shutdown hook");
synchronized (this) {
LOG.info("notifying any waiting thread from shutdown hook");
notifyAll();
}
LOG.info("shutting down");
runtime.shutdown(false);
LOG.info("shutdown completed");
}
};
LOG.info("adding shutdown hook");
Runtime.getRuntime().addShutdownHook(shutdownHook);
if (System.console() != null) {
ConsoleReader console;
try {
console = new ConsoleReader();
String command = "";
while (!command.equals("q")) {
command = console.readLine();
if (command.equals("caps")) {
Set<DiscoveryEntry> allLocalDiscoveryEntries = capabilitiesDirectory.listLocalCapabilities();
StringBuffer discoveryEntriesAsText = new StringBuffer();
for (DiscoveryEntry capability : allLocalDiscoveryEntries) {
discoveryEntriesAsText.append(capability.toString()).append('\n');
}
LOG.info(discoveryEntriesAsText.toString());
} else {
LOG.info("\n\nUSAGE press\n" + " q\tto quit\n caps\tto list registered providers\n");
}
}
} catch (IOException e) {
LOG.error("error reading input from console", e);
}
} else {
LOG.info("\n\nNon-interactive mode detected.\n" + "This cluster controller will continue to run until its JVM gets terminated\n" + "by the operating system. This can be triggered by sending a SIGTERM signal\n" + "to the process running the JVM.");
synchronized (shutdownHook) {
LOG.info("waiting on shutdown hook");
try {
shutdownHook.wait();
} catch (InterruptedException e) {
// ignore
}
}
}
System.exit(0);
}
Aggregations