-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.py
83 lines (68 loc) · 2.55 KB
/
provider.py
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
import time
from protos.build import daemon_pb2
from protos.build import user_pb2
_EXPIRY_SECS: int = 60
class Provider:
def __init__(self, ip, uuid):
self.ip = ip
self.last_seen = time.time()
self.static_metrics = {}
self.dynamic_metrics = {}
self.uuid = uuid
def update_static_metrics(self, static_metrics):
self.static_metrics = static_metrics
self.last_seen = time.time()
def update_dynamic_metrics(self, dynamic_metrics):
self.dynamic_metrics = dynamic_metrics
self.last_seen = time.time()
def parse_location(self, location):
split = location.split(",")
self.lat = split[0]
self.lon = split[1]
def __str__(self):
return "Provider uuid: {}, ip: {}, lat: {}, lon: {}".format(
self.uuid, self.ip, self.lat, self.lon
)
def __repr__(self):
return "Provider uuid: {}, ip: {}, lat: {}, lon: {}".format(
self.uuid, self.ip, self.lat, self.lon
)
def to_proto(self) -> user_pb2.Provider:
"""Converts the provider to a protobuf object."""
return user_pb2.Provider(providerIP=self.ip, providerID=self.uuid)
def is_head_eligible(self) -> bool:
"""Returns if the provider is eligible to be a head node."""
return True
def is_expired(self) -> bool:
"""Returns if the provider is expired."""
return time.time() - self.last_seen > _EXPIRY_SECS
class ProviderCandidate:
def __init__(self, provider, distance, ramCountAvailable, cpuCountAvailable):
self.provider = provider
self.distance = distance
self.ramCountAvailable = ramCountAvailable
self.cpuCountAvailable = cpuCountAvailable
def __lt__(self, other):
if self.cpuCountAvailable < other.cpuCountAvailable:
return True
elif self.cpuCountAvailable == other.cpuCountAvailable:
if self.ramCountAvailable < other.ramCountAvailable:
return True
elif self.ramCountAvailable == other.ramCountAvailable:
if self.distance < other.distance:
return True
else:
return False
else:
return False
else:
return False
def __eq__(self, other):
if (
self.cpuCountAvailable == other.cpuCountAvailable
and self.ramCountAvailable == other.ramCountAvailable
and self.distance == other.distance
):
return True
else:
return False