-
Notifications
You must be signed in to change notification settings - Fork 4
/
_MiscMergeForeachCommand.m
executable file
·128 lines (110 loc) · 4.39 KB
/
_MiscMergeForeachCommand.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
//
// _MiscMergeForeachCommand.m
//
// Written by Don Yacktman and Carl Lindberg
//
// Copyright 2001-2004 by Don Yacktman and Carl Lindberg.
// All rights reserved.
//
// This notice may not be removed from this source code.
//
// This header is included in the MiscKit by permission from the author
// and its use is governed by the MiscKit license, found in the file
// "License.rtf" in the MiscKit distribution. Please refer to that file
// for a list of all applicable permissions and restrictions.
//
#import "_MiscMergeForeachCommand.h"
//#import <Foundation/NSUtilities.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSArray.h>
#import <Foundation/NSValue.h>
#import "MiscMergeCommandBlock.h"
#import "MiscMergeEngine.h"
#import "MiscMergeExpression.h"
@implementation _MiscMergeForeachCommand
- init
{
[super init];
commandBlock = [[MiscMergeCommandBlock alloc] initWithOwner:self];
return self;
}
- (void)dealloc
{
[itemName release];
[arrayField release];
[arrayExpression release];
[loopName release];
[commandBlock release];
[super dealloc];
}
- (BOOL)parseFromScanner:(NSScanner *)aScanner template:(MiscMergeTemplate *)template
{
[self eatKeyWord:@"foreach" fromScanner:aScanner isOptional:NO];
itemName = [[self getArgumentStringFromScanner:aScanner toEnd:NO] retain];
//arrayField = [[self getArgumentStringFromScanner:aScanner toEnd:NO quotes:&arrayQuote] retain];
arrayExpression = [[self getExpressionFromScanner:aScanner] retain];
loopName = [[self getArgumentStringFromScanner:aScanner toEnd:NO] retain];
[template pushCommandBlock:commandBlock];
return YES;
}
- (NSString *)loopName
{
return loopName;
}
- (void)handleEndForeachInTemplate:(MiscMergeTemplate *)template
{
[template popCommandBlock:commandBlock];
}
- (MiscMergeCommandExitType)executeForMerge:(MiscMergeEngine *)aMerger
{
//id itemArray = [aMerger valueForField:arrayField quoted:arrayQuote];
id itemArray;
if ( [arrayExpression isKindOfClass:[MiscMergeListExpression class]] )
itemArray = [(MiscMergeListExpression *)arrayExpression evaluateAsListWithEngine:aMerger];
else
itemArray = [arrayExpression evaluateWithEngine:aMerger];
// If the itemArray is a dictionary we are going to process it just bit differently
// setting variable name <itemName>Key that has the key of the item we are printing out
if ([itemArray isKindOfClass:[NSDictionary class]])
{
NSString *indexName = [NSString stringWithFormat:@"%@Index", itemName];
NSString *keyName = [NSString stringWithFormat:@"%@Key", itemName];
int loopIndex = 0;
NSMutableDictionary *loopContext = [NSMutableDictionary dictionary];
NSEnumerator *itemEnum = [itemArray keyEnumerator];
id currObject;
MiscMergeCommandExitType exitCode = MiscMergeCommandExitNormal;
[aMerger addContextObject:loopContext];
while ((exitCode != MiscMergeCommandExitBreak) && (currObject = [itemEnum nextObject]))
{
// maybe index should be a string
[loopContext setObject:[itemArray objectForKey:currObject] forKey:itemName];
[loopContext setObject:currObject forKey:keyName];
[loopContext setObject:[NSNumber numberWithInt:loopIndex] forKey:indexName];
exitCode = [aMerger executeCommandBlock:commandBlock];
loopIndex++;
}
[aMerger removeContextObject:loopContext];
}
else if ([itemArray respondsToSelector:@selector(objectEnumerator)])
{
NSString *indexName = [NSString stringWithFormat:@"%@Index", itemName];
int loopIndex = 0;
NSMutableDictionary *loopContext = [NSMutableDictionary dictionary];
NSEnumerator *itemEnum = [itemArray objectEnumerator];
id currObject;
MiscMergeCommandExitType exitCode = MiscMergeCommandExitNormal;
[aMerger addContextObject:loopContext];
while ((exitCode != MiscMergeCommandExitBreak) && (currObject = [itemEnum nextObject]))
{
// maybe index should be a string
[loopContext setObject:currObject forKey:itemName];
[loopContext setObject:[NSNumber numberWithInt:loopIndex] forKey:indexName];
exitCode = [aMerger executeCommandBlock:commandBlock];
loopIndex++;
}
[aMerger removeContextObject:loopContext];
}
return MiscMergeCommandExitNormal;
}
@end