Package de.fhkn.in.uce.holepunching

Source Code of de.fhkn.in.uce.holepunching.HolePunchingMetaData

/*
* Copyright (c) 2012 Alexander Diener,
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.fhkn.in.uce.holepunching;

import java.util.Collections;
import java.util.Set;

import de.fhkn.in.uce.holepunching.message.HolePunchingAttribute;
import de.fhkn.in.uce.plugininterface.NATSituation;
import de.fhkn.in.uce.plugininterface.NATTraversalTechniqueMetaData;
import de.fhkn.in.uce.plugininterface.message.NATTraversalTechniqueAttribute;
import de.fhkn.in.uce.plugininterface.util.NATTraversalTechniqueUtil;

/**
* Implementation of {@link NATTraversalTechniqueMetaData} for
* {@link HolePunching}.
*
* @author Alexander Diener (aldiener@htwg-konstanz.de)
*
*/
public final class HolePunchingMetaData implements NATTraversalTechniqueMetaData {
    private static final String RESOURCE_TRAVERSALED_SITUATIONS = "de/fhkn/in/uce/holepunching/traversaledNATSituations"; //$NON-NLS-1$
    private final String name = "HolePunching"; //$NON-NLS-1$
    private final String version = "1.0"; //$NON-NLS-1$
    private final int maxConnectionSetupTime = Integer.MAX_VALUE;
    private final int timeoutInSeconds = 60;
    private final NATTraversalTechniqueUtil util = NATTraversalTechniqueUtil.getInstance();
    private final Set<NATSituation> traversaledNATSituations;

    /**
     * Creates a {@link HolePunchingMetaData} object.
     *
     * @throws Exception
     */
    public HolePunchingMetaData() throws Exception {
        this.traversaledNATSituations = Collections.unmodifiableSet(this.util
                .parseNATSituations(RESOURCE_TRAVERSALED_SITUATIONS));
    }

    /**
     * Copy constructor for {@link HolePunchingMetaData}.
     *
     * @param toCopy
     *            the {@link HolePunchingMetaData} to copy
     */
    public HolePunchingMetaData(HolePunchingMetaData toCopy) {
        this.traversaledNATSituations = toCopy.getTraversaledNATSituations();
    }

    @Override
    public int getMaxConnectionSetupTime() {
        return this.maxConnectionSetupTime;
    }

    @Override
    public String getTraversalTechniqueName() {
        return this.name;
    }

    @Override
    public Set<NATSituation> getTraversaledNATSituations() {
        return Collections.unmodifiableSet(this.traversaledNATSituations);
    }

    @Override
    public String getVersion() {
        return this.version;
    }

    @Override
    public boolean providesDirectConnection() {
        return true;
    }

    @Override
    public long getTimeout() {
        return this.timeoutInSeconds * 1000L;
    }

    @Override
    public NATTraversalTechniqueAttribute getAttribute() {
        return new HolePunchingAttribute();
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = (prime * result) + maxConnectionSetupTime;
        result = (prime * result) + ((name == null) ? 0 : name.hashCode());
        result = (prime * result) + timeoutInSeconds;
        result = (prime * result) + ((version == null) ? 0 : version.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        HolePunchingMetaData other = (HolePunchingMetaData) obj;
        if (maxConnectionSetupTime != other.maxConnectionSetupTime) {
            return false;
        }
        if (name == null) {
            if (other.name != null) {
                return false;
            }
        } else if (!name.equals(other.name)) {
            return false;
        }
        if (timeoutInSeconds != other.timeoutInSeconds) {
            return false;
        }
        if (version == null) {
            if (other.version != null) {
                return false;
            }
        } else if (!version.equals(other.version)) {
            return false;
        }
        return true;
    }
}
TOP

Related Classes of de.fhkn.in.uce.holepunching.HolePunchingMetaData

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.