All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.leshan.client.servers.ServerInfo Maven / Gradle / Ivy

There is a newer version: 1.0.0-M11
Show newest version
/*******************************************************************************
 * Copyright (c) 2015 Sierra Wireless and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution.
 * 
 * The Eclipse Public License is available at
 *    http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 *    http://www.eclipse.org/org/documents/edl-v10.html.
 * 
 * Contributors:
 *     Sierra Wireless - initial API and implementation
 *******************************************************************************/
package org.eclipse.leshan.client.servers;

import java.net.InetSocketAddress;
import java.net.URI;
import java.net.URISyntaxException;

import org.eclipse.leshan.LwM2m;
import org.eclipse.leshan.SecurityMode;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ServerInfo {

    private static final Logger LOG = LoggerFactory.getLogger(ServerInfo.class);

    public long serverId;
    public URI serverUri;
    public SecurityMode secureMode;

    public InetSocketAddress getAddress() {
        return getAddress(serverUri);
    }

    public URI getFullUri() {
        return getFullUri(serverUri);
    }

    public boolean isSecure() {
        return secureMode != SecurityMode.NO_SEC;
    }

    @Override
    public String toString() {
        return String.format("Bootstrap Server [uri=%s]", serverUri);
    }

    public static URI getFullUri(URI serverUri) {
        // define port
        int port = serverUri.getPort();
        if (port == -1) {
            if ("coap".equals(serverUri.getScheme())) {
                port = LwM2m.DEFAULT_COAP_PORT;
            } else if ("coaps".equals(serverUri.getScheme())) {
                port = LwM2m.DEFAULT_COAP_SECURE_PORT;
            }
        }
        // define scheme
        String scheme = serverUri.getScheme();
        if (scheme == null) {
            if (port == LwM2m.DEFAULT_COAP_PORT) {
                scheme = "coap";
            } else if (port == LwM2m.DEFAULT_COAP_SECURE_PORT) {
                scheme = "coaps";
            }
        }
        // create the full URI
        try {
            return new URI(scheme, serverUri.getUserInfo(), serverUri.getHost(), port, serverUri.getPath(),
                    serverUri.getQuery(), serverUri.getFragment());
        } catch (URISyntaxException e) {
            LOG.warn("Unable to extract full URI", e);
            return serverUri;
        }
    }

    public static InetSocketAddress getAddress(URI serverUri) {
        URI fullUri = getFullUri(serverUri);
        return new InetSocketAddress(fullUri.getHost(), fullUri.getPort());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy