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

bt.peer.lan.LocalServiceDiscoveryInfo Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016—2021 Andrei Tomashpolskiy and individual contributors.
 *
 * Licensed 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 bt.peer.lan;

import bt.net.InternetProtocolUtils;
import bt.net.SocketChannelConnectionAcceptor;

import java.net.InetSocketAddress;
import java.net.NetworkInterface;
import java.net.ProtocolFamily;
import java.net.StandardProtocolFamily;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import java.util.stream.Collectors;

import static bt.net.InternetProtocolUtils.isIP4;
import static bt.net.InternetProtocolUtils.isIP6;
import static java.util.Collections.unmodifiableCollection;
import static java.util.Collections.unmodifiableSet;

public class LocalServiceDiscoveryInfo implements ILocalServiceDiscoveryInfo {

    private final Set localPorts;
    private final Collection compatibleGroups;
    private final Collection networkInterfaces;

    public LocalServiceDiscoveryInfo(
            Set socketAcceptors,
            Collection announceGroups) {

        this.localPorts = unmodifiableSet(collectLocalPorts(socketAcceptors));

        Collection networkInterfaces = new HashSet<>();
        boolean acceptIP4 = false;
        boolean acceptIP6 = false;
        for (SocketChannelConnectionAcceptor acceptor : socketAcceptors) {
            networkInterfaces.add(acceptor.getNetworkInterface());
            InetSocketAddress address = acceptor.getLocalAddress();
            ProtocolFamily protocolFamily = InternetProtocolUtils.getProtocolFamily(address.getAddress());
            if (protocolFamily == StandardProtocolFamily.INET) {
                acceptIP4 = true;
            } else {
                acceptIP6 = true;
            }
            if (acceptIP4 && acceptIP6) {
                break; // no need to look further
            }
        }

        this.compatibleGroups = unmodifiableCollection(collectCompatibleGroups(announceGroups, acceptIP4, acceptIP6));
        this.networkInterfaces = unmodifiableCollection(networkInterfaces);
    }

    private Set collectLocalPorts(Set socketAcceptors) {
        return socketAcceptors.stream().map(a -> a.getLocalAddress().getPort()).collect(Collectors.toSet());
    }

    private Collection collectCompatibleGroups(
            Collection groups,
            boolean acceptIP4,
            boolean acceptIP6) {

        return groups.stream()
                .filter(group -> (isIP4(group.getAddress()) && acceptIP4) || (isIP6(group.getAddress()) && acceptIP6))
                .collect(Collectors.toList());
    }

    @Override
    public Set getLocalPorts() {
        return localPorts;
    }

    @Override
    public Collection getCompatibleGroups() {
        return compatibleGroups;
    }

    @Override
    public Collection getNetworkInterfaces() {
        return networkInterfaces;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy