-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItem.m
234 lines (189 loc) · 7.21 KB
/
Item.m
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
//
// Item.m
// AvocadoTest1
//
// Created by Jake on 12-01-11.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "Item.h"
#import "Option.h"
#import "Utilities.h"
#import "NSMutableNumber.h"
@implementation Item
NSString* ITEM_MODIFIED = @"CroutonLabs/ItemModified";
@synthesize options;
@synthesize basePrice;
@synthesize numberOfItems;
-(Item *)init
{
self = [super init];
options = [[NSMutableArray alloc] initWithCapacity:0];
basePrice = [[NSDecimalNumber alloc] initWithInt:0];
numberOfItems = [[NSMutableNumber alloc] initWithNumber:[NSNumber numberWithInt:1]];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(numberAltered) name:NUMBER_MODIFIED object:numberOfItems];
return self;
}
-(Item *)initFromData:(NSDictionary *)inputData
{
self = [super initFromData:inputData];
NSInteger cents = [[inputData objectForKey:@"price_cents"] intValue];
basePrice = [[[NSDecimalNumber alloc] initWithInteger:cents] decimalNumberByMultiplyingByPowerOf10:-2];
options = [[NSMutableArray alloc] initWithCapacity:0];
numberOfItems = [[NSMutableNumber alloc] initWithNumber:[NSNumber numberWithInt:1]];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(numberAltered) name:NUMBER_MODIFIED object:numberOfItems];
for (NSDictionary *option in [inputData objectForKey:@"all_options"]) {
Option *newOption = [[Option alloc] initFromData:option];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(optionAltered) name:OPTION_MODIFIED object:newOption];
[options addObject:newOption];
}
return self;
}
-(void) basePriceRecovery:(NSCoder *)decoder
{
switch (harddiskDataVersion) {
case VERSION_0_0_0:
//fall through to next
case VERSION_1_0_0:
//fall through to next
case VERSION_1_0_1:
basePrice = [decoder decodeObjectForKey:@"base_price"];
case VERSION_1_1_0:
break;
default:
break;
}
}
-(void) numberOfItemsRecovery:(NSCoder *)decoder
{
switch (harddiskDataVersion) {
case VERSION_0_0_0:
//fall through to next
case VERSION_1_0_0:
//fall through to next
case VERSION_1_0_1:
numberOfItems = [[NSMutableNumber alloc] initWithNumber:[NSNumber numberWithInt:1]];
case VERSION_1_1_0:
break;
default:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(numberAltered) name:NUMBER_MODIFIED object:numberOfItems];
break;
}
}
-(void) optionsRecovery
{
switch (harddiskDataVersion) {
case VERSION_0_0_0:
//fall through to next
case VERSION_1_0_0:
//fall through to next
case VERSION_1_0_1:
//fall through to next
case VERSION_1_1_0:
break;
default:
for (Option *eachOption in options) {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(optionAltered) name:OPTION_MODIFIED object:eachOption];
}
break;
}
}
-(Item *)copy;
{
Item * anItem = [[Item alloc] init];
anItem->name = name;
anItem->desc = desc;
anItem->primaryKey = primaryKey;
anItem->basePrice = basePrice;
anItem->numberOfItems = [[NSMutableNumber alloc] initWithNumber:[NSNumber numberWithInt:[numberOfItems intValue]]];
[[NSNotificationCenter defaultCenter] addObserver:anItem selector:@selector(numberAltered) name:NUMBER_MODIFIED object:anItem->numberOfItems];
anItem->options = [[NSMutableArray alloc] initWithCapacity:0];
for (Option *currentOption in options) {
Option *anOption = [currentOption copy];
[[NSNotificationCenter defaultCenter] addObserver:anItem selector:@selector(optionAltered) name:OPTION_MODIFIED object:anOption];
[anItem.options addObject:anOption];
}
return anItem;
}
-(void)addOption:(Option *)anOption
{
[options addObject:anOption];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(optionAltered) name:OPTION_MODIFIED object:anOption];
[[NSNotificationCenter defaultCenter] postNotificationName:ITEM_MODIFIED object:self];
}
-(void) optionAltered
{
[[NSNotificationCenter defaultCenter] postNotificationName:ITEM_MODIFIED object:self];
}
-(void)numberAltered
{
[[NSNotificationCenter defaultCenter] postNotificationName:ITEM_MODIFIED object:self];
}
-(NSDecimalNumber*)price
{
NSDecimalNumber* tabulation = basePrice;
for (Option *currentOption in options)
{
tabulation = [tabulation decimalNumberByAdding:[currentOption price]];
}
return [tabulation decimalNumberByMultiplyingBy:[NSDecimalNumber decimalNumberWithString:[NSString stringWithFormat:@"%i" ,[numberOfItems intValue]]]];
}
-(BOOL)isEffectivelyEqual:(id)anItem
{
if (![anItem isKindOfClass:[Item class]])
return NO;
if (! (primaryKey == [anItem primaryKey]))
return NO;
if ([options count] != [[(Item *)anItem options] count])
return NO;
for (int i = 0; i < [options count] ; i++) {
if (![[options objectAtIndex:i] isEffectivelyEqual:[[(Item *)anItem options] objectAtIndex:i]])
return NO;
}
return YES;
}
-(NSComparisonResult) nameSort:(Item *)anItem
{
return [name compare:anItem.name];
}
-(NSComparisonResult)priceSort:(Item *)anItem
{
return [[anItem price] compare:[self price]];
}
-(NSDictionary*)orderRepresentation{
NSMutableDictionary* representation = [NSMutableDictionary dictionaryWithCapacity:2];
[representation setObject:[NSNumber numberWithInt:primaryKey] forKey:@"item"];
NSMutableArray* orderoptions = [NSMutableArray array];
for(Option* option in options){
[orderoptions addObject:[option orderRepresentation]];
}
[representation setObject:orderoptions forKey:@"options"];
return representation;
}
-(NSString *)reducedName
{
NSRegularExpression* firstPart = [NSRegularExpression
regularExpressionWithPattern:@"\\A\\S+"
options:0
error:nil];
NSTextCheckingResult* match = [firstPart firstMatchInString:name options:0 range:NSMakeRange(0, [name length])];
return [name substringWithRange:[match range]];
}
- (NSString *) descriptionWithIndent:(NSInteger) indentLevel
{
NSString *padString = [@"" stringByPaddingToLength:(indentLevel*4) withString:@" " startingAtIndex:0];
NSMutableString *output = [[NSMutableString alloc] initWithCapacity:0];
[output appendFormat:@"%@Item:%\n",padString];
[output appendString:[super descriptionWithIndent:indentLevel]];
[output appendFormat:@"%@Base price: %@\n",padString,basePrice];
[output appendFormat:@"%@Price: %@\n",padString,[self price]];
[output appendFormat:@"%@Options:\n",padString];
for (Option *anOption in options) {
[output appendFormat:@"%@\n",[anOption descriptionWithIndent:(indentLevel + 1)]];
}
return output;
}
-(void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
@end