-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.py
49 lines (36 loc) · 1.49 KB
/
lib.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
import os
import time
from typing import List, Any
def simple_hash(s: str, range_size: int) -> int:
"""Takes user ID and hashes it to find storage server to write data"""
# Compute the sum of ASCII values of the characters in the string
ascii_sum = sum(ord(c) for c in s)
# Take the modulo of the sum with the size of the range
return ascii_sum % range_size
def logger(filename: str, message: str) -> None:
"""Performs the logging to files"""
if os.path.exists(filename):
log_file = open(filename, "a")
log_file.write(message)
log_file.close()
else:
with open(filename, "w") as log_file:
log_file.write("Server Log")
log_file.write(message)
def berkeley(node_clocks: List[float]) -> Any:
"""Applies Berkeley Algorithm for Clock Synchronization"""
differences = []
master_clock = node_clocks[-1]
for clock in node_clocks:
differences.append(clock - master_clock)
total_time_difference = sum(differences)
average_time_difference = total_time_difference / len(node_clocks)
synchronized_time = master_clock + average_time_difference
return synchronized_time
def compute_formatted_time(offset: int) -> str:
"""Formats time to Year-Month-Day Hour:Min:Sec format"""
current_time = offset + time.time()
time_struct = time.localtime(current_time)
formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time_struct)
precise_time = f"{formatted_time}.0"
return precise_time