-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandFactory.py
43 lines (38 loc) · 1.58 KB
/
CommandFactory.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
from Commands import *
import shlex
class CommandFactory:
@staticmethod
def indicateCommand(line):
commandParameters = shlex.split(line)
argumentsList = []
try:
if commandParameters[0] == "Grep" or commandParameters[0] == "Mv_last":
argumentsList.append(commandParameters[0])
if (not commandParameters[1] is None) and (not commandParameters[2] is None) and (len(commandParameters) == 3):
argumentsList.append(commandParameters[1])
argumentsList.append(commandParameters[2])
else:
argumentsList = None
elif commandParameters[0] == "Categorize":
argumentsList.append(commandParameters[0])
if (not commandParameters[1] is None) and (len(commandParameters) == 2):
argumentsList.append(commandParameters[1])
else:
argumentsList = None
else:
argumentsList = None
return argumentsList
except IndexError:
return None
@staticmethod
def create_command(line):
arguments = CommandFactory.indicateCommand(line)
if not arguments is None:
if arguments[0] == 'Grep':
return GrepCommand(arguments[1], arguments[2])
elif arguments[0] == 'Mv_last':
return Mv_lastCommand(arguments[1], arguments[2])
elif arguments[0] == 'Categorize':
return CategorizeCommand(arguments[1])
else:
return None