-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDBSObject.m
More file actions
397 lines (331 loc) · 9.6 KB
/
DBSObject.m
File metadata and controls
397 lines (331 loc) · 9.6 KB
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
/* -*- mode: objc -*-
Project: DataBasin
DBSobject.m
Copyright (C) 2010-2021 Free Software Foundation
Author: Riccardo Mottola
Created by Riccardo Mottola on 20/07/10.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 31 Milk Street #960789 Boston, MA 02196 USA.
*/
#import "DBSObject.h"
#import "DBSoap.h"
@implementation DBSObject
/** <p>Returns the corresponding 18-character case-insensitive
salesforce Id given the 15-character version <em>id15</em></p>
*/
+ (NSString *)idTo18: (NSString *) id15
{
NSMutableString *suffix;
int i;
int j;
if ([id15 length] != 15)
return nil;
suffix = [NSMutableString stringWithCapacity: 3];
for (i = 0; i < 3; i++)
{
int flags = 0;
for (j = 0; j < 5; j++)
{
unichar c;
c = [id15 characterAtIndex: i * 5 + j];
if (c >= 'A' && c <= 'Z')
flags += 1 << j;
}
if (flags <= 25)
[suffix appendString: [@"ABCDEFGHIJKLMNOPQRSTUVWXYZ" substringWithRange: NSMakeRange(flags, 1)]];
else
[suffix appendString: [@"012345" substringWithRange: NSMakeRange(flags-26, 1)]];
}
return [id15 stringByAppendingString: suffix];
}
- (id)init
{
if ((self = [super init]))
{
fieldNames = [[NSMutableArray arrayWithCapacity: 1] retain];
fieldProperties = [[NSMutableDictionary dictionaryWithCapacity: 1] retain];
recordValues = [[NSMutableDictionary dictionaryWithCapacity: 1] retain];
objectProperties = [[NSMutableDictionary dictionaryWithCapacity: 1] retain];
}
return self;
}
- (id)copyWithZone: (NSZone *)zone
{
DBSObject *sobj;
sobj = [[[self class] allocWithZone: zone] init];
if(sobj)
{
sobj->dbs = dbs;
sobj->fieldNames = [fieldNames mutableCopy];
sobj->fieldProperties = [fieldProperties mutableCopy];
sobj->recordValues = [recordValues mutableCopy];
sobj->objectProperties = [objectProperties mutableCopy];
sobj->recordTypes = [recordTypes copy];
}
return sobj;
}
- (void)dealloc
{
[fieldNames release];
[fieldProperties release];
[recordValues release];
[objectProperties release];
[recordTypes release];
[super dealloc];
}
- (NSString *)description
{
return [NSString stringWithFormat: @"<DBSObject %@, n:%@, l:%@, t:%@>", [self sfId], [self name], [self label], [self type]];
}
/** <p>returns the current salesforce id, in whichever format it is currently stored.</p>
*/
- (NSString *)sfId
{
return [recordValues objectForKey: @"Id"];
}
/** <p>Returns the current salesforce Id, always in the 15-character case-sensitive format,
converting it if necessary.</p>
*/
- (NSString *)sfId15
{
NSString *sfid;
sfid = [recordValues objectForKey: @"Id"];
if ([sfid length] == 18)
sfid = [sfid substringToIndex: 15];
if ([sfid length] != 15)
{
NSLog(@"Invalid ID: %@", sfid);
return nil;
}
return sfid;
}
/** <p>Returns the current salesforce Id, always in the 18-character case-insensitive format,
converting it if necessary.</p>
*/
- (NSString *)sfId18
{
NSString *sfid;
sfid = [recordValues objectForKey: @"Id"];
if ([sfid length] == 15)
sfid = [DBSObject idTo18: sfid];
if ([sfid length] != 18)
{
NSLog(@"Invalid ID: %@", sfid);
return nil;
}
return sfid;
}
- (void)setDBSoap: (DBSoap *)db
{
dbs = db;
}
- (DBSoap *)DBSoap
{
return dbs;
}
- (void)setObjectProperties: (NSDictionary *)properties
{
if (properties != objectProperties)
[objectProperties release];
objectProperties = [[NSMutableDictionary dictionaryWithDictionary: properties] retain];
}
- (NSDictionary *)objectProperties
{
return [NSDictionary dictionaryWithDictionary: objectProperties];
}
- (NSString *)name
{
return [objectProperties objectForKey: @"name"];
}
- (NSString *)type
{
return [objectProperties objectForKey: @"type"];
}
- (NSString *)label
{
return [objectProperties objectForKey: @"label"];
}
- (NSString *)keyPrefix
{
return [objectProperties objectForKey: @"keyPrefix"];
}
- (void)setProperties: (NSDictionary *)properties forField: (NSString *)field
{
// TODO should check if field is not already present
[fieldNames addObject: field];
[fieldProperties setObject: properties forKey: field];
}
- (void)removeField: (NSString *)field
{
[recordValues removeObjectForKey: field];
[fieldNames removeObject: field];
}
- (NSDictionary *)propertiesOfField: (NSString *)field
{
return [fieldProperties objectForKey: field];
}
/** <p>Returns a list of all known field names.</p>
*/
- (NSArray *)fieldNames
{
return fieldNames;
}
/** <p>Returns the value of field <em>field</em></p>
*/
- (id)valueForField: (NSString *)field
{
return [recordValues objectForKey: field];
}
/** <p>Sets the value of the given field of the record and adds it
to the list if field names if it was not already present.</p>
*/
- (void)setValue: (id)value forField: (NSString*)field
{
if (![fieldNames containsObject: field])
[fieldNames addObject: field];
[recordValues setObject: value forKey: field];
}
- (void)setRecordTypes: (NSArray *)rtInfo
{
ASSIGN(recordTypes, rtInfo);
}
- (NSArray *)recordTypes
{
return recordTypes;
}
- (void)loadFieldValues
{
NSUInteger i;
NSUInteger sizeCount;
NSMutableArray *fieldsArray;
if (dbs == nil)
return;
fieldsArray = [NSMutableArray arrayWithCapacity: 10];
sizeCount = 0;
for (i = 0; i < [fieldNames count]; i++)
{
NSString *currField;
currField = [fieldNames objectAtIndex:i];
if (sizeCount + [currField length] + 2 < [dbs maxSOQLLength])
{
[fieldsArray addObject: currField];
sizeCount += [currField length] + 2;
}
else
{
[self loadValuesForFields: fieldsArray];
fieldsArray = [NSMutableArray arrayWithCapacity: 10];
[fieldsArray addObject: currField];
sizeCount = [currField length] + 2;
}
}
NSLog(@"we have %u fields", (unsigned int)[fieldsArray count]);
[self loadValuesForFields: fieldsArray];
}
- (void)loadValuesForFields:(NSArray *)namesArray
{
NSMutableString *statement;
NSMutableArray *tempArray;
DBSObject *tempObj;
NSUInteger i;
if ([namesArray count] == 0)
return;
if ([self sfId] == nil)
return;
statement = [NSMutableString stringWithString:@"Select "];
i = 0;
while (i < [namesArray count])
{
[statement appendString: [namesArray objectAtIndex: i]];
if (i < ([namesArray count] - 1))
[statement appendString: @", "];
i++;
}
[statement appendString: @" from "];
[statement appendString: [self name]];
[statement appendString: @" where id = '"];
[statement appendString: [self sfId]];
[statement appendString: @"'"];
NSLog(@"query: %@", statement);
tempArray = [NSMutableArray arrayWithCapacity: [namesArray count]];
[dbs query :statement queryAll:YES toArray: tempArray progressMonitor:nil];
if ([tempArray count] == 0)
{
[[NSException exceptionWithName:@"DBException" reason:@"Object not found." userInfo:nil] raise];
return;
}
tempObj = [tempArray objectAtIndex: 0];
/* copy the field values from the query result to the object itself */
for (i = 0; i < [namesArray count]; i++)
{
NSString *fieldName;
fieldName = [namesArray objectAtIndex: i];
[self setValue: [tempObj valueForField: fieldName] forField: fieldName];
}
}
- (void)storeValuesForFields:(NSArray *)namesArray
{
NSUInteger i;
DBSObject *tObj;
NSMutableArray *tArr;
NSMutableArray *results;
NSString *errorString;
if (!namesArray || [namesArray count] == 0)
return;
tObj = [[DBSObject alloc] init];
tArr = [[NSMutableArray alloc] initWithCapacity:1];
[tArr addObject:tObj];
[tObj release];
[tObj setObjectProperties:[self objectProperties]];
[tObj setValue:[self sfId] forField:@"Id"];
for (i = 0; i < [namesArray count]; i++)
{
NSString *fieldName;
NSString *fieldValue;
fieldName = [namesArray objectAtIndex: i];
fieldValue = [self valueForField:fieldName];
// NSLog(@"%@ - %@", fieldName, fieldValue);
if (fieldValue)
[tObj setValue:fieldValue forField:fieldName];
else
NSLog(@"Error: trying to update field %@, but the field is null", fieldValue);
}
results = [dbs update :[tObj name] fromArray: tArr progressMonitor:nil];
errorString = nil;
if (results && [results count] > 0)
{
NSUInteger j;
for (j = 0; j < [results count]; j++)
{
NSDictionary *r;
r = [results objectAtIndex:j];
if ([[r objectForKey:@"success"] isEqualToString:@"false"])
{
if (errorString == nil)
errorString = [NSString stringWithString:[r objectForKey:@"message"]];
else
errorString = [[errorString stringByAppendingString:@", "] stringByAppendingString:[r objectForKey:@"message"]];
}
}
}
else
{
NSLog(@"Error: no valid results returned");
}
[tArr release];
if (errorString)
{
NSLog(@"Errors: %@", errorString);
[[NSException exceptionWithName:@"DBException" reason:errorString userInfo:nil] raise];
}
}
@end