-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.py
executable file
·209 lines (175 loc) · 6.76 KB
/
console.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/python3
import cmd
from models.base_model import BaseModel
from models import storage
import re
import json
class AirBnb(cmd.Cmd):
prompt = "(airbnb) "
def default(self, line):
# print("DEF:::", line)
self._precmd(line)
def _precmd(self, line):
# print("PRECMD:::", line)
match = re.search(r"^(\w*)\.(\w+)(?:\(([^)]*)\))$", line)
if not match:
return line
classname = match.group(1)
method = match.group(2)
args = match.group(3)
match_uid_and_args = re.search('^"([^"]*)"(?:, (.*))?$', args)
if match_uid_and_args:
uid = match_uid_and_args.group(1)
attr_or_dict = match_uid_and_args.group(2)
else:
uid = args
attr_or_dict = False
attr_and_value = ""
if method == "update" and attr_or_dict:
match_dict = re.search('^({.*})$', attr_or_dict)
if match_dict:
self.update_dict(classname, uid, match_dict.group(1))
return ""
match_attr_and_value = re.search(
'^(?:"([^"]*)")?(?:, (.*))?$', attr_or_dict)
if match_attr_and_value:
attr_and_value = (match_attr_and_value.group(
1) or "") + " " + (match_attr_and_value.group(2) or "")
command = method + " " + classname + " " + uid + " " + attr_and_value
self.onecmd(command)
return command
def update_dict(self, classname, uid, s_dict):
s = s_dict.replace("'", '"')
d = json.loads(s)
if not classname:
print("** class name missing **")
elif classname not in storage.classes():
print("** class doesn't exist **")
elif uid is None:
print("** instance id missing **")
else:
key = "{}.{}".format(classname, uid)
if key not in storage.all():
print("** no instance found **")
else:
attributes = storage.attributes()[classname]
for attribute, value in d.items():
if attribute in attributes:
value = attributes[attribute](value)
setattr(storage.all()[key], attribute, value)
storage.all()[key].save()
def do_EOF(self, line):
print()
return True
def do_quit(self, line):
return True
def emptyline(self):
pass
def do_create(self, line):
if line == "" or line is None:
print("** class name missing **")
elif line not in storage.classes():
print("** class doesn't exist **")
else:
b = storage.classes()[line]()
b.save()
print(b.id)
def do_show(self, line):
if line == "" or line is None:
print("** class name missing **")
else:
words = line.split(' ')
if words[0] not in storage.classes():
print("** class doesn't exist **")
elif len(words) < 2:
print("** instance id missing **")
else:
key = "{}.{}".format(words[0], words[1])
if key not in storage.all():
print("** no instance found **")
else:
print(storage.all()[key])
def do_destroy(self, line):
if line == "" or line is None:
print("** class name missing **")
else:
words = line.split(' ')
if words[0] not in storage.classes():
print("** class doesn't exist **")
elif len(words) < 2:
print("** instance id missing **")
else:
key = "{}.{}".format(words[0], words[1])
if key not in storage.all():
print("** no instance found **")
else:
del storage.all()[key]
storage.save()
def do_all(self, line):
if line != "":
words = line.split(' ')
if words[0] not in storage.classes():
print("** class doesn't exist **")
else:
nl = [str(obj) for key, obj in storage.all().items()
if type(obj).__name__ == words[0]]
print(nl)
else:
new_list = [str(obj) for key, obj in storage.all().items()]
print(new_list)
def do_count(self, line):
words = line.split(' ')
if not words[0]:
print("** class name missing **")
elif words[0] not in storage.classes():
print("** class doesn't exist **")
else:
matches = [
k for k in storage.all() if k.startswith(
words[0] + '.')]
print(len(matches))
def do_update(self, line):
if line == "" or line is None:
print("** class name missing **")
return
rex = r'^(\S+)(?:\s(\S+)(?:\s(\S+)(?:\s((?:"[^"]*")|(?:(\S)+)))?)?)?'
match = re.search(rex, line)
classname = match.group(1)
uid = match.group(2)
attribute = match.group(3)
value = match.group(4)
if not match:
print("** class name missing **")
elif classname not in storage.classes():
print("** class doesn't exist **")
elif uid is None:
print("** instance id missing **")
else:
key = "{}.{}".format(classname, uid)
if key not in storage.all():
print("** no instance found **")
elif not attribute:
print("** attribute name missing **")
elif not value:
print("** value missing **")
else:
cast = None
if not re.search('^".*"$', value):
if '.' in value:
cast = float
else:
cast = int
else:
value = value.replace('"', '')
attributes = storage.attributes()[classname]
if attribute in attributes:
value = attributes[attribute](value)
elif cast:
try:
value = cast(value)
except ValueError:
pass # fine, stay a string then
setattr(storage.all()[key], attribute, value)
storage.all()[key].save()
if __name__ == '__main__':
AirBnb().cmdloop()