forked from morten1982/crossviper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.py
101 lines (75 loc) · 2.86 KB
/
configuration.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
93
94
95
96
97
98
99
100
101
# configuration.py
import configparser
import os
import sys
class Configuration():
def __init__(self):
self.config = configparser.ConfigParser()
file = self.getDir()
#print(file)
self.config.read(file)
#print('Test ...')
#print(self.config.sections()) # liest alle Sections ..... [Run] [Terminal] [Interpreter]
#print(self.config['Run']['mate']) # liest ['Run']['mate'] .... mate-terminal -x sh ...
#print('---\n')
def getDir(self):
#print('__file__' + __file__)
if getattr(sys, 'frozen', False):
dir = os.path.realpath(sys._MEIPASS)
else:
dir = os.path.realpath(__file__) # Pfad ermitteln
basename = os.path.dirname(dir)
if '\\' in basename:
basename = basename.replace('\\', '/')
dir = basename + '/crossviper.ini'
#print('dir: ' + dir)
return dir
def getRun(self, system):
return self.config['Run'][system]
def getTerminal(self, system):
return self.config['Terminal'][system]
def getInterpreter(self, system):
return self.config['Interpreter'][system]
def getSystem(self):
return self.config['System']['system']
def getPassword(self):
return self.config['Password']['password']
def setSystem(self, system):
self.config['System']['system'] = system
if getattr(sys, 'frozen', False):
thisFile = os.path.realpath(sys._MEIPASS)
else:
thisFile = os.path.realpath(__file__) # Pfad ermitteln
base = os.path.dirname(thisFile)
# print('base' + base)
if '\\' in base:
base = base.replace('\\', '/')
iniPath = base + "/crossviper/crossviper.ini"
with open(iniPath, 'w') as f:
self.config.write(f)
def setPassword(self, password):
self.config['Password']['password'] = password
if getattr(sys, 'frozen', False):
thisFile = os.path.realpath(sys._MEIPASS)
else:
thisFile = os.path.realpath(__file__) # Pfad ermitteln
base = os.path.dirname(thisFile)
if '\\' in base:
base = base.replace('\\', '/')
iniPath = base + "/crossviper.ini"
with open(iniPath, 'w') as f:
self.config.write(f)
if __name__ == '__main__':
c = Configuration()
system = c.getSystem()
runCommand = c.getRun(system)
terminalCommand = c.getTerminal(system)
interpreterCommand = c.getInterpreter(system)
# c.setSystem('mate') # funktioniert
print(system + ':\n' + runCommand + '\n' + terminalCommand + '\n' + interpreterCommand)
'''
runMate = c.getRun('mate')
print(runMate)
system = c.getSystem('mate')
print(system)
'''