forked from phildow/Journler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJournlerCondition.m
516 lines (390 loc) · 19 KB
/
JournlerCondition.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
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
//
// JournlerCondition.m
// Journler
//
// Created by Philip Dow on 2/14/07.
// Copyright 2007 Sprouted, Philip Dow. All rights reserved.
//
/*
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the
distribution.
* Neither the name of the author nor the names of its contributors may be used to endorse or
promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Basically, you can use the code in your free, commercial, private and public projects
// as long as you include the above notice and attribute the code to Philip Dow / Sprouted
// If you use this code in an app send me a note. I'd love to know how the code is used.
// Please also note that this copyright does not supersede any other copyrights applicable to
// open source code used herein. While explicit credit has been given in the Journler about box,
// it may be lacking in some instances in the source code. I will remedy this in future commits,
// and if you notice any please point them out.
#import "JournlerCondition.h"
#import "JournlerEntry.h"
static NSString *kAndSeparatorString = @" && ";
@implementation JournlerCondition
+ (NSDictionary*) operationForCondition:(NSString*)condition entry:(JournlerEntry*)anEntry
{
#warning need some serious improvements to the error checking
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
if ( condition == nil )
return nil;
// and in with the new
if ( [condition rangeOfString:@"allResourceTypes"].location == 0 || [condition rangeOfString:@"not allResourceTypes"].location == 0 )
{
// not supported
return nil;
}
else if ( [condition rangeOfString:@"title"].location == 0 || [condition rangeOfString:@"not title"].location == 0)
{
NSScanner *scanner;
NSString *value = nil;
[dictionary setObject:@"title" forKey:kOperationDictionaryKeyKey];
if ( [condition rangeOfString:@"not"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationRemoveString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"contains"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationAppendString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"beginswith"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationPrependString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"endswith"].location != NSNotFound )
return nil; // not supported
else if ( [condition rangeOfString:@"matches"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetString] forKey:kOperationDictionaryKeyOperation];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] ) {
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&value];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
}
else if ( [condition rangeOfString:@"category"].location == 0 || [condition rangeOfString:@"not category"].location == 0)
{
NSScanner *scanner;
NSString *value = nil;
[dictionary setObject:@"category" forKey:kOperationDictionaryKeyKey];
if ( [condition rangeOfString:@"not"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationRemoveString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"contains"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationAppendString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"beginswith"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationPrependString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"endswith"].location != NSNotFound )
return nil; // not supported
else if ( [condition rangeOfString:@"matches"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetString] forKey:kOperationDictionaryKeyOperation];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] ) {
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&value];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
}
else if ( [condition rangeOfString:@"keywords"].location == 0 || [condition rangeOfString:@"not keywords"].location == 0 )
{
NSScanner *scanner;
NSString *value = nil;
[dictionary setObject:@"keywords" forKey:kOperationDictionaryKeyKey];
if ( [condition rangeOfString:@"not"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationRemoveString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"contains"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationAppendString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"beginswith"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationPrependString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"endswith"].location != NSNotFound )
return nil; // not supported
else if ( [condition rangeOfString:@"matches"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetString] forKey:kOperationDictionaryKeyOperation];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] )
{
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&value];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
}
else if ( [condition rangeOfString:@"in tags" options:NSBackwardsSearch].location == ( [condition length] - 7 ) || [condition rangeOfString:@"tags.@count"].location == 0 )
{
// no support for autotagging an empty/not empty condition just yet
if ( [condition isEqualToString:@"tags.@count == 0"] )
{
[dictionary setObject:@"tags" forKey:kOperationDictionaryKeyKey];
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationNilOut] forKey:kOperationDictionaryKeyOperation];
[dictionary setObject:[NSNull null] forKey:kOperationDictionaryKeyValue];
}
else if ( [condition isEqualToString:@"tags.@count != 0"] )
{
return nil;
}
else
{
[dictionary setObject:@"tags" forKey:kOperationDictionaryKeyKey];
NSInteger tokenOperation = -1;
NSArray *thePieces = [condition componentsSeparatedByString:kAndSeparatorString];
NSMutableArray *theTokens = [NSMutableArray array];
NSScanner *scanner;
for ( NSString *aPiece in thePieces )
{
NSString *aToken = nil;
scanner = [NSScanner scannerWithString:aPiece];
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&aToken];
if ( aToken != nil )
[theTokens addObject:aToken];
// determine the operation
if ( tokenOperation == -1 )
{
if ( [aPiece rangeOfString:@"not" options:NSCaseInsensitiveSearch].location == 0 )
tokenOperation = kKeyOperationRemoveObjects;
else
tokenOperation = kKeyOperationAddObjects;
}
}
if ( tokenOperation == -1 )
tokenOperation = kKeyOperationAddObjects;
[dictionary setObject:[NSNumber numberWithInteger:tokenOperation] forKey:kOperationDictionaryKeyOperation];
if ( [theTokens count] != 0 )
[dictionary setObject:theTokens forKey:kOperationDictionaryKeyValue];
}
}
else if ( [condition rangeOfString:@"content"].location == 0 || [condition rangeOfString:@"not content"].location == 0 )
{
// entire entry and content not supported right now - stick with metadata
return nil;
/*
NSScanner *scanner;
NSString *value = nil;
[dictionary setObject:@"attributedContent" forKey:kOperationDictionaryKeyKey];
if ( [condition rangeOfString:@"not"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationRemoveAttributedString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"contains"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationAppendAttributedString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"beginswith"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationPrependAttributedString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"endswith"].location != NSNotFound )
return nil; // not supported
else if ( [condition rangeOfString:@"matches"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetAttributedString] forKey:kOperationDictionaryKeyOperation];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] ) {
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&value];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
*/
}
else if ( [condition rangeOfString:@"entireEntry"].location == 0 || [condition rangeOfString:@"not entireEntry"].location == 0)
{
// entire entry and content not supported right now - stick with metadata
return nil;
/*
NSScanner *scanner;
NSString *value = nil;
[dictionary setObject:@"attributedContent" forKey:kOperationDictionaryKeyKey];
if ( [condition rangeOfString:@"not"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationRemoveAttributedString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"contains"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationAppendAttributedString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"beginswith"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationPrependAttributedString] forKey:kOperationDictionaryKeyOperation];
else if ( [condition rangeOfString:@"endswith"].location != NSNotFound )
return nil; // not supported
else if ( [condition rangeOfString:@"matches"].location != NSNotFound )
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetAttributedString] forKey:kOperationDictionaryKeyOperation];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] ) {
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&value];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
*/
}
else if ( [condition rangeOfString:@"flagged"].location == 0 )
{
NSNumber *value = nil;
[dictionary setObject:@"marked" forKey:kOperationDictionaryKeyKey];
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetNumber] forKey:kOperationDictionaryKeyOperation];
if ( [condition rangeOfString:@"YES"].location != NSNotFound )
value = [NSNumber numberWithInteger:1];
else
value = [NSNumber numberWithInteger:0];
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
}
else if ( [condition rangeOfString:@"markedInt"].location == 0 )
{
NSNumber *value = nil;
[dictionary setObject:@"marked" forKey:kOperationDictionaryKeyKey];
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetNumber] forKey:kOperationDictionaryKeyOperation];
if ( [condition rangeOfString:@"OR" options:NSCaseInsensitiveSearch].location != NSNotFound )
{
// if the value is already one or the other, go with that
if ( anEntry != nil && ( [[anEntry valueForKey:@"marked"] integerValue] == 1 || [[anEntry valueForKey:@"marked"] integerValue] == 2 ) )
value = nil;
else
value = [NSNumber numberWithInteger:1]; // go with flagged
}
else if ( [condition rangeOfString:@"== 0"].location != NSNotFound )
value = [NSNumber numberWithInteger:0];
else if ( [condition rangeOfString:@"== 1"].location != NSNotFound )
value = [NSNumber numberWithInteger:1];
else if ( [condition rangeOfString:@"!= 1"].location != NSNotFound )
{
// if the value is already not flagged, go with that
if ( anEntry != nil && ( [[anEntry valueForKey:@"marked"] integerValue] != 1 ) )
value = nil;
else
value = [NSNumber numberWithInteger:0];
}
else if ( [condition rangeOfString:@"== 2"].location != NSNotFound )
value = [NSNumber numberWithInteger:2];
else if ( [condition rangeOfString:@"!= 2"].location != NSNotFound )
{
// if the value is already not checked
if ( anEntry != nil && ( [[anEntry valueForKey:@"marked"] integerValue] != 2 ) )
value = nil;
else
value = [NSNumber numberWithInteger:0];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
}
else if ( [condition rangeOfString:@"labelInt"].location == 0 )
{
/*
NSScanner *scanner;
NSInteger labelVal = 0;
replacingView = labelConditionView;
if ( [condition rangeOfString:@"=="].location != NSNotFound )
[labelOperationPop selectItemWithTag:PDConditionContains];
else if ( [condition rangeOfString:@"!="].location != NSNotFound )
[labelOperationPop selectItemWithTag:PDConditionNotContains];
else
[labelOperationPop selectItemWithTag:PDConditionContains];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] ) {
[scanner scanUpToString:@"=" intoString:nil];
[scanner scanString:@"=" intoString:nil];
[scanner scanInt:&labelVal];
}
[labelPicker setLabelSelection:labelVal];
[keyPop selectItemWithTag:PDConditionLabel];
*/
// not supported yet
NSInteger integerValue = 0;
NSNumber *value = nil;
NSScanner *scanner;
[dictionary setObject:@"label" forKey:kOperationDictionaryKeyKey];
[dictionary setObject:[NSNumber numberWithInteger:kKeyOperationSetNumber] forKey:kOperationDictionaryKeyOperation];
scanner = [NSScanner scannerWithString:condition];
while ( ![scanner isAtEnd] ) {
[scanner scanUpToString:@"=" intoString:nil];
[scanner scanString:@"=" intoString:nil];
[scanner scanInt:&integerValue];
}
value = [NSNumber numberWithInteger:integerValue];
if ( [condition rangeOfString:@"=="].location != NSNotFound )
; // no need to do anything else, just set the label
else if ( [condition rangeOfString:@"!="].location != NSNotFound )
{
// set the label to 0 or 1 if explicity requested against the label the entry already has
if ( anEntry != nil && ( ![[anEntry valueForKey:@"label"] isEqualToNumber:value] ) )
value = [NSNumber numberWithInteger:!integerValue];
}
if ( value ) [dictionary setObject:value forKey:kOperationDictionaryKeyValue];
}
else if ( [condition rangeOfString:@"dateInt"].location == 0 )
{
// dates are not supported
return nil;
}
else if ( [condition rangeOfString:@"dateModifiedInt"].location == 0 )
{
// dates are not supported
return nil;
}
else if ( [condition rangeOfString:@"dateDueInt"].location == 0 )
{
// dates are not supported
return nil;
}
else if ( [condition rangeOfString:@"blogged"].location == 0 )
{
// dates are not supported
return nil;
}
return dictionary;
}
+ (BOOL) condition:(NSString*)aCondition affectsKey:(NSString*)aKey
{
// should cover both actual and not conditions
return ( [aCondition rangeOfString:aKey options:NSCaseInsensitiveSearch].location == 0 || [aCondition rangeOfString:aKey options:NSCaseInsensitiveSearch].location == 4 );
}
+ (NSString*) normalizedTagCondition:(NSString*)tagCondition
{
// extracts the tags against we're checking, makes them lowercase, ensures we checking against the lowercase tags value
// ie
// 'Money' in tags -> 'money' in tags.lowercaseString
// 'Money' in tags && 'AB' in tags -> 'money' in tags.lowercaseString && 'ab' in tags.lowercaseString
NSString *normalizedCondition = nil;
if ( [tagCondition rangeOfString:@"in tags" options:NSBackwardsSearch].location != ( [tagCondition length] - 7 ) )
{
return normalizedCondition = tagCondition;
}
else
{
// split the string up as tags supports multiple items
// '%@' in[cd] tags
// not '%@' in[cd] tags
BOOL notOperation = NO;
NSMutableArray *theTokens = [NSMutableArray array];
NSMutableArray *tagConditions = [NSMutableArray array];
NSArray *thePieces = [tagCondition componentsSeparatedByString:kAndSeparatorString];
NSScanner *scanner;
for (NSString *aPiece in thePieces )
{
NSString *aToken = nil;
scanner = [NSScanner scannerWithString:aPiece];
[scanner scanUpToString:@"'" intoString:nil];
[scanner scanString:@"'" intoString:nil];
[scanner scanUpToString:@"'" intoString:&aToken];
if ( aToken != nil )
[theTokens addObject:aToken];
// determine the operation
if ( [aPiece rangeOfString:@"not" options:NSCaseInsensitiveSearch].location == 0 )
notOperation = YES;
else
notOperation = NO;
}
// with the tokens extracted and the not operation determine, build the normalized string
for ( NSString *aTag in theTokens )
{
NSString *aTagCondition = nil;
aTag = [aTag lowercaseString];
if ( notOperation == YES )
aTagCondition = [NSString stringWithFormat:@"not '%@' in tags.lowercaseString", aTag];
else
aTagCondition = [NSString stringWithFormat:@"'%@' in tags.lowercaseString", aTag];
if ( aTagCondition != nil )
[tagConditions addObject:aTagCondition];
}
normalizedCondition = [tagConditions componentsJoinedByString:kAndSeparatorString];
}
return normalizedCondition;
}
@end