-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·1712 lines (1503 loc) · 58.9 KB
/
main.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# =============================================================================
#
# FILE: main.py
# AUTHOR: Tan Duc Mai
# EMAIL: henryfromvietnam@gmail.com
# CREATED: 2022-04-13
# DESCRIPTION: Creates a Computer shop which allows customers
# to select and purchase computer parts.
# I hereby declare that I completed this work without any improper help
# from a third party and without using any aids other than those cited.
#
# =============================================================================
# ------------------------------- Module Import -------------------------------
# Stdlib
import abc
import collections
import csv
import getpass
# Third party
import icontract
from rich import print
from rich.console import Console
# Local application/library specific imports
from exceptions import InvalidEmail
from authenticator import (Authenticator,
InvalidPassword,
UsernameAlreadyExists)
# ------------------------------- Named Constant ------------------------------
console = Console()
# ------------------------------- Computer Part -------------------------------
class ComputerPart(metaclass=abc.ABCMeta):
"""An abstract class. The superclass for other ComputerPart types."""
def __init__(self, name, price, stock=1):
"""Initialise name and price.
Called by subclasses using super().__init__()
"""
self.__name = name
self.__price = price
self.__stock = stock
@abc.abstractclassmethod
def parse(cls): # noqa: N805
"""An abstract class method.
Split the csv_string into separate values and parses them to the
correct datatypes.
Use these values to construct and return a new ComputerPart.
"""
pass
@abc.abstractclassmethod
def input(cls): # noqa: N805
"""An abstract class method.
Take input for each of the necessary variables.
Use these input values to construct and return a new ComputerPart.
"""
pass
@abc.abstractmethod
def __str__(self):
"""An abstract method.
Return the variables as a String.
"""
pass
@abc.abstractmethod
def to_csv_string(self):
"""An abstract method.
Return the name of the class followed by each of the instance
variables separated by commas.
"""
pass
@classmethod
@icontract.ensure(lambda result: isinstance(result, str) & (result != ''))
def input_name(cls):
"""A class method.
Set the name attribute to the argument
Only if the argument is a non-empty string.
"""
name = None
valid = False
while name is None or not valid:
name = input('Enter the name: ')
if not isinstance(name, str):
raise TypeError(
f'Argument was {repr(name)}, type {type(name)}. '
f'Must be a string.'
)
elif name == '':
raise ValueError('Name must not be empty.')
else:
valid = True
return name
@classmethod
@icontract.ensure(lambda result: isinstance(result, float) & (result > 0))
def input_price(cls):
"""A class method.
Set the price attribute to the argument
Only if the argument is a positive float.
"""
price = None
valid = False
while price is None or not valid:
price = float(input('Enter the price: '))
if not isinstance(price, float):
raise TypeError(
f'Argument was {repr(price)}, type {type(price)}. '
f'Must be a float.'
)
elif price <= 0:
raise ValueError('Price must not be negative.')
else:
valid = True
return price
@classmethod
@icontract.require(lambda csv_string: isinstance(csv_string, str))
@icontract.ensure(lambda result: isinstance(result, list))
def csv_string_to_list(cls, csv_string):
csv_list = []
value = ''
for index, letter in enumerate(csv_string):
if letter != ',':
value += letter
if index == (len(csv_string) - 1):
if value == 'OUT OF STOCK':
csv_list.append('0')
else:
csv_list.append(value[1:])
value = ''
else:
csv_list.append(value)
value = ''
return csv_list
@property
def name(self):
"""Return the name attribute.
Called by subclasses using self.name
"""
return self.__name
@property
def price(self):
"""Return the price attribute.
Called by subclasses using self.price
"""
return self.__price
@property
def stock(self):
"""Return the stock attribute.
Called by subclasses using self.stock
"""
return self.__stock
@icontract.ensure(lambda result: isinstance(result, bool))
def equals(self, other):
"""Return a boolean value.
1. True if the calling object and the other argument are both
Memory and the values of their variables are the same.
2. False otherwise.
"""
if isinstance(other, type(self)):
if (self.name == other.name and
self.price == other.price):
return True
return False
class CPU(ComputerPart):
"""A subclass of the ComputerPart class."""
def __init__(self, name, price, cores, frequency_ghz, stock=1):
"""Initialise cores and frequency_ghz."""
super().__init__(name, price, stock)
self.__cores = cores
self.__frequency_ghz = frequency_ghz
@icontract.ensure(lambda result: isinstance(result, str))
def __str__(self):
"""Return the variables as a string.
For example "Intel i7: 4 cores @ 3.2GHz for $990.00".
"""
return (
f'{self.name}: {self.cores} cores @ '
f'{self.frequency_ghz}GHz for ${self.price:.2f}'
)
@classmethod
@icontract.require(lambda csv_list: isinstance(csv_list, list))
@icontract.ensure(lambda result: isinstance(result, CPU))
def parse(cls, csv_list):
"""Return a CPU object. Perform the following procedure.
Check the last element of the argument csv_list.
Parse all elements to the correct datatypes.
Use these values to construct and return a new CPU.
"""
if csv_list[-1] == 'OUT OF STOCK':
csv_list[-1] = '0'
else:
csv_list[-1] = str(csv_list[-1])[1:]
csv_list[2] = float(csv_list[2])
csv_list[3] = int(csv_list[3])
csv_list[4] = float(csv_list[4])
csv_list[5] = int(csv_list[5])
return CPU(
csv_list[1],
csv_list[2],
csv_list[3],
csv_list[4],
csv_list[5],
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, CPU))
def input(cls):
"""
Take input for the name, price, frequency, and number of cores.
Use these input values to construct and return a new CPU.
"""
return cls(
ComputerPart.input_name(),
ComputerPart.input_price(),
cls.input_cores(),
cls.input_frequency_ghz(),
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, int) & (result > 0))
def input_cores(cls):
"""
Set the cores attribute to the argument
Only if the argument is a positive integer.
"""
cores = None
valid = False
while cores is None or not valid:
cores = int(input('Enter the number of cores: '))
if not isinstance(cores, int):
raise TypeError(
f'Argument was {repr(cores)}, type {type(cores)}. '
f'Must be an integer.'
)
elif cores <= 0:
raise ValueError('Number of Cores must not be negative.')
else:
valid = True
return cores
@classmethod
@icontract.ensure(lambda result: isinstance(result, float) & (result > 0))
def input_frequency_ghz(cls):
"""
Set the frequency_ghz attribute to the argument
Only if the argument is a positive float.
"""
frequency_ghz = None
valid = False
while frequency_ghz is None or not valid:
frequency_ghz = float(input('Enter the frequency in GHz: '))
if not isinstance(frequency_ghz, float):
raise TypeError(
f'Argument was {repr(frequency_ghz)}, type '
f'{type(frequency_ghz)}. Must be a float.'
)
elif frequency_ghz <= 0:
raise ValueError('Frequency must not be negative.')
else:
valid = True
return frequency_ghz
@property
def cores(self):
"""Return the cores attribute."""
return self.__cores
@property
def frequency_ghz(self):
"""Return the frequency_ghz attribute."""
return self.__frequency_ghz
@icontract.ensure(lambda result: isinstance(result, bool))
def equals(self, other):
"""Return a boolean value.
1. True if the calling object and the other argument are both
Memory and the values of their variables are the same.
2. False otherwise.
"""
if super().equals(other):
if (self.cores == other.cores and
self.frequency_ghz == other.frequency_ghz):
return True
return False
@icontract.ensure(lambda result: isinstance(result, str))
def to_csv_string(self):
"""Return the name of the class followed by each of its variables.
Format: "CPU,name,price,cores,frequency_ghz".
"""
return (
f'CPU,{self.name},{self.price},'
f'{self.cores},{self.frequency_ghz}'
)
class GraphicsCard(ComputerPart):
"""A subclass of the ComputerPart class."""
def __init__(self, name, price, frequency_mhz, memory_gb, stock=1):
"""
Initialise frequency_mhz and memory_gb by calling theirs
mutator methods.
"""
super().__init__(name, price, stock)
self.__frequency_mhz = frequency_mhz
self.__memory_gb = memory_gb
@icontract.ensure(lambda result: isinstance(result, str))
def __str__(self):
"""
Return the variables as a string.
For example "NVIDIA GeForce 1080: 8GB @ 1607MHz for $925.00".
"""
return (
f'{self.name}: {self.memory_gb}GB @ '
f'{self.frequency_mhz}MHz for ${self.price:.2f}'
)
@classmethod
@icontract.require(lambda csv_list: isinstance(csv_list, list))
@icontract.ensure(lambda result: isinstance(result, GraphicsCard))
def parse(cls, csv_list):
"""Return a CPU object. Perform the following procedure.
Check the last element of the argument csv_list.
Parse all elements to the correct datatypes.
Use these values to construct and return a new GraphicsCard.
"""
if csv_list[-1] == 'OUT OF STOCK':
csv_list[-1] = '0'
else:
csv_list[-1] = str(csv_list[-1])[1:]
csv_list[2] = float(csv_list[2])
csv_list[3] = int(csv_list[3])
csv_list[4] = int(csv_list[4])
csv_list[5] = int(csv_list[5])
return GraphicsCard(
csv_list[1],
csv_list[2],
csv_list[3],
csv_list[4],
csv_list[5],
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, GraphicsCard))
def input(cls):
"""
Take input for the name, price, memory, and frequency.
Use these input values to construct and return a new GraphicsCard.
"""
return cls(
ComputerPart.input_name(),
ComputerPart.input_price(),
cls.input_frequency_mhz(),
cls.input_memory_gb(),
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, int) & (result > 0))
def input_frequency_mhz(cls):
"""
Set the frequency_mhz attribute to the argument.
Only if the argument is a positive integer.
"""
frequency_mhz = None
valid = False
while frequency_mhz is None or not valid:
frequency_mhz = int(input('Enter the frequency in MHz: '))
if not isinstance(frequency_mhz, int):
raise TypeError(
f'Argument was {repr(frequency_mhz)}, type '
f'{type(frequency_mhz)}. Must be an integer.'
)
elif frequency_mhz <= 0:
raise ValueError('Frequency must not be negative.')
else:
valid = True
return frequency_mhz
@classmethod
@icontract.ensure(lambda result: isinstance(result, int) & (result > 0))
def input_memory_gb(cls):
"""
Set the memory_gb attribute to the argument.
Only if the argument is a positive integer.
"""
memory_gb = None
valid = False
while memory_gb is None or not valid:
memory_gb = int(input('Enter the memory in GB: '))
if not isinstance(memory_gb, int):
raise TypeError(
f'Argument was {repr(memory_gb)}, type {type(memory_gb)}. '
f'Must be an integer.'
)
elif memory_gb <= 0:
raise ValueError('Memory must not be negative.')
else:
valid = True
return memory_gb
@property
def frequency_mhz(self):
"""Return the frequency_mhz attribute."""
return self.__frequency_mhz
@property
def memory_gb(self):
"""Return the memory_gb attribute."""
return self.__memory_gb
@icontract.ensure(lambda result: isinstance(result, bool))
def equals(self, other):
"""Return a boolean value.
1. True if the calling object and the other argument are both
Memory and the values of their variables are the same.
2. False otherwise.
"""
if super().equals(other):
if (self.memory_gb == other.memory_gb and
self.frequency_mhz == other.frequency_mhz):
return True
return False
@icontract.ensure(lambda result: isinstance(result, str))
def to_csv_string(self):
"""Return the name of the class followed by each of its variables.
Format: "GraphicsCard,name,price,frequency_mhz,memory_gb".
"""
return (
f'GraphicsCard,{self.name},{self.price},'
f'{self.frequency_mhz},{self.memory_gb}'
)
class Memory(ComputerPart):
"""A subclass of the ComputerPart class."""
def __init__(self, name, price, capacity_gb, frequency_mhz, ddr, stock=1):
"""
Initialise capacity_gb and frequency_mhz by calling theirs
mutator methods.
"""
super().__init__(name, price, stock)
self.__capacity_gb = capacity_gb
self.__frequency_mhz = frequency_mhz
self.__ddr = ddr
@icontract.ensure(lambda result: isinstance(result, str))
def __str__(self):
"""
Return the variables as a string.
For example "Corsair Vengeance: 16GB, DDR4 @ 3000MHz for $239.00".
"""
return (
f'{self.name}: {self.capacity_gb}GB, '
f'DDR{self.ddr} @ {self.frequency_mhz}MHZ '
f'for ${self.price:.2f}'
)
@classmethod
@icontract.require(lambda csv_list: isinstance(csv_list, list))
@icontract.ensure(lambda result: isinstance(result, Memory))
def parse(cls, csv_list):
"""Return a CPU object. Perform the following procedure.
Check the last element of the argument csv_list.
Parse all elements to the correct datatypes.
Use these values to construct and return a new Memory.
"""
if csv_list[-1] == 'OUT OF STOCK':
csv_list[-1] = '0'
else:
csv_list[-1] = str(csv_list[-1])[1:]
csv_list[2] = float(csv_list[2])
csv_list[3] = int(csv_list[3])
csv_list[4] = int(csv_list[4])
csv_list[6] = int(csv_list[6])
return Memory(
csv_list[1],
csv_list[2],
csv_list[3],
csv_list[4],
csv_list[5],
csv_list[6],
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, Memory))
def input(cls):
"""
Take input for the name, price, memory, and frequency.
Use these input values to construct and return a new Memory.
"""
return cls(
ComputerPart.input_name(),
ComputerPart.input_price(),
cls.input_capacity_gb(),
cls.input_frequency_mhz(),
cls.input_ddr(),
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, int) & (result > 0))
def input_capacity_gb(cls):
"""
Set the capacity_gb attribute to the argument.
Only if the argument is a positive integer.
"""
capacity_gb = None
valid = False
while capacity_gb is None or not valid:
capacity_gb = int(input('Enter the capacity in GB: '))
if not isinstance(capacity_gb, int):
raise TypeError(
f'Argument was {repr(capacity_gb)}, type '
f'{type(capacity_gb)}. Must be an integer.'
)
elif capacity_gb <= 0:
raise ValueError('Capacity must not be negative.')
else:
valid = True
return capacity_gb
@classmethod
@icontract.ensure(lambda result: isinstance(result, int) & (result > 0))
def input_frequency_mhz(cls):
"""
Set the frequency_mhz attribute to the argument.
Only if the argument is a positive integer.
"""
frequency_mhz = None
valid = False
while frequency_mhz is None or not valid:
frequency_mhz = int(input('Enter the frequency in MHz: '))
if not isinstance(frequency_mhz, int):
raise TypeError(
f'Argument was {repr(frequency_mhz)}, '
f'type {type(frequency_mhz)}. Must be an integer.'
)
elif frequency_mhz <= 0:
raise ValueError('Frequency must not be negative.')
else:
valid = True
return frequency_mhz
@classmethod
@icontract.ensure(lambda result: isinstance(result, str) & (result != ''))
def input_ddr(cls):
"""
Set the ddr attribute to the argument
Only if the argument is a non-empty string.
"""
ddr = None
valid = False
while ddr is None or not valid:
ddr = input('Enter the DDR: ')
if not isinstance(ddr, str):
raise TypeError(
f'Argument was {repr(ddr)}, type {type(ddr)}. '
f'Must be a string.'
)
elif ddr == '':
raise ValueError('DDR must not be empty.')
else:
valid = True
return ddr
@property
def capacity_gb(self):
"""Return the capacity_gb attribute."""
return self.__capacity_gb
@property
def frequency_mhz(self):
"""Return the frequency_mhz attribute."""
return self.__frequency_mhz
@property
def ddr(self):
"""Return the ddr attribute."""
return self.__ddr
@icontract.ensure(lambda result: isinstance(result, bool))
def equals(self, other):
"""Return a boolean value.
1. True if the calling object and the other argument are both
Memory and the values of their variables are the same.
2. False otherwise.
"""
if super().equals(other):
if (self.frequency_mhz == other.frequency_mhz and
self.capacity_gb == other.capacity_gb and
self.ddr == other.ddr):
return True
return False
@icontract.ensure(lambda result: isinstance(result, str))
def to_csv_string(self):
"""Return the name of the class followed by each of its variables.
Format: "Memory,name,price,capacity_gb,frequency_mhz,ddr".
"""
return (
f'Memory,{self.name},{self.price},'
f'{self.capacity_gb},{self.frequency_mhz},'
f'{self.ddr}'
)
class Storage(ComputerPart):
"""A subclass of the ComputerPart class."""
def __init__(self, name, price, capacity_gb, storage_type, stock=1):
"""Initialise capacity_gb and frequency_mhz."""
super().__init__(name, price, stock)
self.__capacity_gb = capacity_gb
self.__storage_type = storage_type
@icontract.ensure(lambda result: isinstance(result, str))
def __str__(self):
"""Return the variables as a string.
For example "Seagate Barracuda: 1000GB HDD for $60.00".
"""
return (
f'{self.name}: {self.capacity_gb}GB '
f'{self.storage_type} for ${self.price:.2f}'
)
@classmethod
@icontract.require(lambda csv_list: isinstance(csv_list, list))
@icontract.ensure(lambda result: isinstance(result, Storage))
def parse(cls, csv_list):
"""Return a CPU object. Perform the following procedure.
Check the last element of the argument csv_list.
Parse all elements to the correct datatypes.
Use these values to construct and return a new Storage.
"""
if csv_list[-1] == 'OUT OF STOCK':
csv_list[-1] = '0'
else:
csv_list[-1] = str(csv_list[-1])[1:]
csv_list[2] = float(csv_list[2])
csv_list[3] = int(csv_list[3])
csv_list[5] = int(csv_list[5])
return Storage(
csv_list[1],
csv_list[2],
csv_list[3],
csv_list[4],
csv_list[5],
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, Storage))
def input(cls):
"""
Take input for the name, price, memory, and frequency.
Use these input values to construct and return a new Storage.
"""
return cls(
ComputerPart.input_name(),
ComputerPart.input_price(),
cls.input_capacity_gb(),
cls.input_storage_type(),
)
@classmethod
@icontract.ensure(lambda result: isinstance(result, int) & (result > 0))
def input_capacity_gb(cls):
"""
Set the capacity_gb attribute to the argument.
Only if the argument is a positive integer.
"""
capacity_gb = None
valid = False
while capacity_gb is None or not valid:
capacity_gb = int(input('Enter the capacity in GB: '))
if not isinstance(capacity_gb, int):
raise TypeError(
f'Argument was {repr(capacity_gb)}, '
f'type {type(capacity_gb)}. Must be an integer.'
)
elif capacity_gb <= 0:
raise ValueError('Capacity must not be negative.')
else:
valid = True
return capacity_gb
@classmethod
@icontract.ensure(lambda result: result in {'HDD', 'SSD', 'SSHD'})
def input_storage_type(cls):
"""
Set the storage_type attribute to the argument.
Only if the argument is a not one of HDD/SSD/SSHD.
"""
storage_type = None
valid = False
while storage_type is None or not valid:
storage_type = input('Enter the storage type (HDD/SSD/SSHD): ')
if not isinstance(storage_type, str):
raise TypeError(
f'Argument was {repr(storage_type)}, '
f'type {type(storage_type)}. Must be a string.'
)
elif storage_type not in {'HDD', 'SSD', 'SSHD'}:
raise ValueError('Storage type must be one of '
'HDD, SSD, or SSHD.')
else:
valid = True
return storage_type
@property
def capacity_gb(self):
"""Return the capacity_gb attribute."""
return self.__capacity_gb
@property
def storage_type(self):
"""Return the storage_type attribute."""
return self.__storage_type
@icontract.ensure(lambda result: isinstance(result, bool))
def equals(self, other):
"""Return a boolean value.
1. True if the calling object and the other argument are both
Memory and the values of their variables are the same.
2. False otherwise.
"""
if super().equals(other):
if (self.capacity_gb == other.capacity_gb and
self.storage_type == other.storage_type):
return True
return False
@icontract.ensure(lambda result: isinstance(result, str))
def to_csv_string(self):
"""Return the name of the class followed by each of its variables.
Format: "Storage,name,price,capacity_gb,storage_type".
"""
return (
f'Storage,{self.name},{self.price},'
f'{self.capacity_gb},{self.storage_type}'
)
# ------------------------------- Data Structure ------------------------------
class Partlist():
"""
A subclass of the Wishlist class.
Stores the computer parts (instances of the ComputerPart class)
available in stock.
"""
def __init__(self):
"""Initialise Partlist object."""
# A variable to store the items (ComputerParts) listed in the store.
self.__items = []
"""
A dictionary
1. Key is the computer part.
2. Value is the number of stock that key has in stock.
"""
self.__stock = {}
@icontract.ensure(lambda result: isinstance(result, str))
def __str__(self):
"""Return a string that represents the Partlist in the format:
"---- Partlist ----
NVIDIA Quadro RTX: 48GB @ 1005.0MHz for $6300.00 (x1)
AMD Ryzen 3: 4.0 cores @ 3.7GHz for $97.99 (OUT OF STOCK)
Corsair Vengeance LED: 16GB, DDR4 @ 3000MHz for $239.00 (x4)
Seagate FireCuda: 1000GB SSHD for $105.00 (x45)
--------------------"
"""
result = '---- Partlist ----\n'
for item in self.items:
result += item.__str__()
# Check how many stock left.
stock = self.stock[item.name]
if stock:
# Print that number if it is greater than 0.
result += ' (x' + str(stock) + ')'
else:
# Otherwise, write out of stock.
result += ' (OUT OF STOCK)'
result += '\n'
result += '--------------------'
return result
@icontract.ensure(lambda self, result: result == len(self.items))
def __len__(self):
"""
Get the length of the items attribute.
Called within Partlist class using len(self)
Called outside Partlist class using len(object)
- Where object is an instance of the Partlist class.
"""
return len(self.items)
@property
def items(self):
"""Return the items attribute."""
return self.__items
@items.deleter
def items(self):
"""Clean up the items list."""
self.__items.clear()
@property
def stock(self):
"""Return the stock attribute."""
return self.__stock
@stock.deleter
def stock(self):
"""Clean up the stock dictionary."""
self.__stock.clear()
@icontract.require(
lambda new_part, print_status:
isinstance(new_part, ComputerPart)
& isinstance(print_status, bool))
@icontract.ensure(lambda result: result is None)
def add_to_partlist(self, new_part, print_status=False):
"""
Add a new item to the store.
If it is duplicate, the available stock must be incremented by 1.
"""
name_of_new_part = new_part.name
try:
self.__stock[name_of_new_part]
except KeyError:
self.__items.append(new_part)
self.__stock[name_of_new_part] = new_part.stock
else:
# Duplicate item, so increment available stock by 1.
self.__stock[name_of_new_part] += 1
stock = self.__stock[name_of_new_part]
if print_status:
console.print(f'Added {new_part.__str__()} (x{stock})',
style='green')
print()
@icontract.require(
lambda part_name: isinstance(part_name, str) & (part_name != ''))
def get_part_using_name(self, part_name):
"""Return a ComputerPart object or an error string.
Find and access a part using its name.
Check to see if that part name is in store.
"""
found = False
i = 0
while i < len(self) - 1:
if self.__items[i].name == part_name:
result = self.__items[i]
found = True
i += 1
if found:
return result
return f'Could not find {part_name}!'
@icontract.require(lambda part_position: isinstance(part_position, int))
def get_part_using_position(self, part_position):
"""Return a ComputerPart object or an error string.
Find and access a part using its position.
Check to see if the argument is less than the length of the list.
"""
if part_position < len(self):
return self.__items[part_position]
return f'{part_position} out of range 1 - {len(self)}'
@icontract.require(
lambda part_name: isinstance(part_name, str) & (part_name != ''))
def remove_part_using_name(self, part_name):
"""Return nothing.
Find and remove a part using its name.
Check to see if that part name is in store.
Clear all stock of that part in store.
"""
done = False
for index, item in enumerate(self.items):
if item.name == part_name:
# Delete that item and its entry in the stock dictionary.
del self.items[index]
stock = self.stock.pop(part_name)
done = True
if not done:
console.print(f'Could not find {part_name}!', style='red')
else:
console.print(f'Removed {part_name} (x{stock})', style='green')
@icontract.require(lambda part_position: isinstance(part_position, int))
def remove_part_using_position(self, part_position):
"""Return nothing.
Find and access a part using its position.
Check to see if the argument is less than the length of the list.
Clear all stock of that part in store.
"""
if part_position < len(self):
removed_part = self.items.pop(part_position)
stock = self.stock.pop(removed_part.name)
console.print(f'Removed {removed_part.__str__()} (x{stock})',
style='green')
else:
print(f'{part_position} out of range 1 - {len(self)}')
@icontract.require(
lambda filename: isinstance(filename, str) & (filename != ''))
@icontract.ensure(lambda result: result is None)
def save_to_csv(self, filename='database'):
"""
Save all parts to a csv file with an argument file name.
Default to the file name database.csv
"""
with open(file=f'database/{filename}.csv', mode='w',
encoding='UTF8', newline='') as outfile:
for item in self.items:
outfile.write(item.to_csv_string())
# Check how many stock left.
stock = self.stock[item.name]
# Write that number to file if it is greater than 0.
# Otherwise, write out of stock.
if stock:
outfile.write(',x' + str(stock))
else:
outfile.write(',OUT OF STOCK')
outfile.write('\n')
class Wishlist(Partlist):
"""A subclass of the Partlist class."""
__authenticator = Authenticator()
def __init__(self):
"""Initialise Wishlist object."""