-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathterminal.py
58 lines (49 loc) · 1.67 KB
/
terminal.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
import commands
from utils import InputParser
import logging
import os
log = logging.getLogger('terminal')
class Terminal:
def __init__(self):
self.history_stack = []
self.last_command = None
self.command = None
self.data = None
self.options = []
def set_last_command(self):
self.last_command = self.command
def push_to_history(self):
self.history_stack.append(self.command)
def get_last_command(self):
return self.last_command
def get_command(self):
show_path = os.getcwd()
if os.name == 'nt':
show_path = show_path.split('\\')
else:
show_path = show_path.split('/')
show_path = show_path[-2:]
show_path = "/".join(show_path)
command = raw_input('{}$ '.format(show_path))
if command == '':
return 'true'
return command
def play(self):
while True:
try:
self.command = self.get_command()
log.info(self.command)
self.command, self.data, self.options = InputParser.parse_input(self.command)
executer = getattr(commands, self.command)
except KeyboardInterrupt:
print("Ctrl+C")
executer = getattr(commands, 'exit')
except EOFError:
print("Ctrl+D")
executer = getattr(commands, 'exit')
except:
executer = getattr(commands, 'true')
print("The command is either invalid or not supported yet")
executer().execute(self)
self.set_last_command()
self.push_to_history()