-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalias.py
92 lines (84 loc) · 3.05 KB
/
alias.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
84
85
86
87
88
89
90
91
92
import logging
class Alias:
"""
Class representing a EuroScope text alias
"""
def __init__(self, alias: str = "", english: str ="", polish: str = ""):
self.alias = alias.strip()
self.english = english.strip()
self.polish = polish.strip()
def print_alias(self) -> str:
"""
Print alias in EuroScope recognized format.
:return:
"""
if not self.polish:
return f".{self.alias} {self.english}"
return f".{self.alias} {self.english}\n..{self.alias} {self.polish}\n.{self.alias}pl {self.polish}"
def __str__(self):
return f".{self.alias} {self.english} / {self.polish}"
class AliasFile:
"""
Class representing a EuroScope text alias file.
"""
def read_file(self, file_path: str):
"""
Reads an alias text file into an AliasFile class.
:param file_path: path to the alias text file.
:return:
"""
logging.debug("Reading file " + file_path )
with open(file_path, "r") as file:
for line in file:
#print(line)
# Skip comment lines
if line.startswith(';'):
logging.debug("Skipping comment line: " + line)
continue
# Skip empty lines
if len(line.strip()) == 0:
logging.debug("Skipping empty line.")
continue
entry = Alias()
line_is_polish = False
# skip too short lines
if len(line.split(" ",1)) < 2:
logging.warning("Skipping too short line: " + line)
continue
[alias, contents] = line.split(" ", 1)
contents = contents.strip()
if alias.startswith(".."):
line_is_polish = True
alias = alias.replace(".", "")
if alias.endswith("pl"):
line_is_polish = True
alias = alias[:-2]
entry.alias = alias
if self.aliases.__contains__(alias):
entry = self.aliases[alias]
if line_is_polish:
entry.polish = contents
else:
entry.english = contents
self.aliases[alias] = entry
def __init__(self):
"""
Initializes empty AliasFile class.
"""
self.aliases = dict()
def print_aliases(self):
"""
Prints all aliases in an AliasFile in a EuroScope recognized format.
:return:
"""
for alias, entry in self.aliases.items():
print(entry.print_alias())
def save_to_file(self, file):
"""
Saves all aliases in an AliasFile in a EuroScope recognized format to a text file.
:param file: path to the destination alias file
:return:
"""
with open(file, "w") as file:
for alias, entry in self.aliases.items():
file.write(entry.print_alias() + "\n")