summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/base/models/Location.java
blob: e0ce9e8be08a1d270ebd5d78172a0d38e673ffc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/**
 * Copyright (c) 2021 LEAP Encryption Access Project and contributers
 *
 * 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 se.leap.bitmaskclient.base.models;

import androidx.annotation.NonNull;

import java.util.HashMap;
import java.util.HashSet;

import de.blinkt.openvpn.core.connection.Connection;

public class Location implements Cloneable {
    @NonNull private String name = "";
    @NonNull private HashMap<Connection.TransportType, Double> averageLoad = new HashMap<>();
    @NonNull private HashMap<Connection.TransportType, Integer> numberOfGateways = new HashMap<>();
    public boolean selected;

    public Location() {}

    public Location(@NonNull String name,
                    @NonNull HashMap<Connection.TransportType, Double> averageLoad,
                    @NonNull HashMap<Connection.TransportType, Integer> numberOfGateways,
                    boolean selected) {
        this.name = name;
        this.averageLoad = averageLoad;
        this.numberOfGateways = numberOfGateways;
        this.selected = selected;
    }

    public boolean hasLocationInfo() {
        return !numberOfGateways.isEmpty() && !averageLoad.isEmpty() && !name.isEmpty();
    }

    public boolean supportsTransport(Connection.TransportType transportType) {
        return numberOfGateways.containsKey(transportType);
    }

    public void setAverageLoad(Connection.TransportType transportType, double load) {
        averageLoad.put(transportType, load);
    }

    public double getAverageLoad(Connection.TransportType transportType) {
        if (averageLoad.containsKey(transportType)) {
            return averageLoad.get(transportType);
        }
        return 0;
    }

    public void setNumberOfGateways(Connection.TransportType transportType, int numbers) {
        numberOfGateways.put(transportType, numbers);
    }

    public int getNumberOfGateways(Connection.TransportType transportType) {
        if (numberOfGateways.containsKey(transportType)) {
            return numberOfGateways.get(transportType);
        }
        return 0;
    }

    @NonNull
    public String getName() {
        return name;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof Location)) return false;

        Location location = (Location) o;

        if (!name.equals(location.name)) return false;
        if (!averageLoad.equals(location.averageLoad)) return false;
        return numberOfGateways.equals(location.numberOfGateways);
    }

    @Override
    public int hashCode() {
        int result = name.hashCode();
        result = 31 * result + averageLoad.hashCode();
        result = 31 * result + numberOfGateways.hashCode();
        return result;
    }

    @Override
    public Location clone() throws CloneNotSupportedException {
        Location copy = (Location) super.clone();
        copy.name = this.name;
        copy.numberOfGateways = (HashMap<Connection.TransportType, Integer>) this.numberOfGateways.clone();
        copy.averageLoad = (HashMap<Connection.TransportType, Double>) this.averageLoad.clone();
        return copy;
    }
}