Search in sources :

Example 1 with LocalCapabilitiesDirectory

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);
}
Also used : Options(org.apache.commons.cli.Options) URISyntaxException(java.net.URISyntaxException) Properties(java.util.Properties) URI(java.net.URI) HelpFormatter(org.apache.commons.cli.HelpFormatter) Injector(com.google.inject.Injector) LocalCapabilitiesDirectory(io.joynr.capabilities.LocalCapabilitiesDirectory) CommandLineParser(org.apache.commons.cli.CommandLineParser) DefaultParser(org.apache.commons.cli.DefaultParser) DiscoveryEntry(joynr.types.DiscoveryEntry) MqttPahoModule(io.joynr.messaging.mqtt.paho.client.MqttPahoModule) ConsoleReader(jline.console.ConsoleReader) IOException(java.io.IOException) CommandLine(org.apache.commons.cli.CommandLine) ParseException(org.apache.commons.cli.ParseException) Module(com.google.inject.Module) AtmosphereMessagingModule(io.joynr.messaging.AtmosphereMessagingModule) MqttPahoModule(io.joynr.messaging.mqtt.paho.client.MqttPahoModule) WebsocketModule(io.joynr.messaging.websocket.WebsocketModule) AtmosphereMessagingModule(io.joynr.messaging.AtmosphereMessagingModule)

Aggregations

Injector (com.google.inject.Injector)1 Module (com.google.inject.Module)1 LocalCapabilitiesDirectory (io.joynr.capabilities.LocalCapabilitiesDirectory)1 AtmosphereMessagingModule (io.joynr.messaging.AtmosphereMessagingModule)1 MqttPahoModule (io.joynr.messaging.mqtt.paho.client.MqttPahoModule)1 WebsocketModule (io.joynr.messaging.websocket.WebsocketModule)1 IOException (java.io.IOException)1 URI (java.net.URI)1 URISyntaxException (java.net.URISyntaxException)1 Properties (java.util.Properties)1 ConsoleReader (jline.console.ConsoleReader)1 DiscoveryEntry (joynr.types.DiscoveryEntry)1 CommandLine (org.apache.commons.cli.CommandLine)1 CommandLineParser (org.apache.commons.cli.CommandLineParser)1 DefaultParser (org.apache.commons.cli.DefaultParser)1 HelpFormatter (org.apache.commons.cli.HelpFormatter)1 Options (org.apache.commons.cli.Options)1 ParseException (org.apache.commons.cli.ParseException)1