-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_MiscMergeIfCommand.m
executable file
·78 lines (66 loc) · 2 KB
/
_MiscMergeIfCommand.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
//
// _MiscMergeIfCommand.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 "_MiscMergeIfCommand.h"
//#import <Foundation/NSUtilities.h>
#import <Foundation/NSValue.h>
#import <Foundation/NSScanner.h>
#import "MiscMergeCommandBlock.h"
#import "MiscMergeExpression.h"
@implementation _MiscMergeIfCommand
- (id)init
{
[super init];
trueBlock = [[MiscMergeCommandBlock alloc] initWithOwner:self];
return self;
}
- (void)dealloc
{
[trueBlock release];
[elseBlock release];
[expression release];
[super dealloc];
}
- (BOOL)parseFromScanner:(NSScanner *)aScanner template:(MiscMergeTemplate *)template
{
[self eatKeyWord:@"if" fromScanner:aScanner isOptional:NO];
expression = [[self getExpressionFromScanner:aScanner] retain];
[template pushCommandBlock:trueBlock];
return YES;
}
- (void)handleElseInTemplate:(MiscMergeTemplate *)template
{
if (elseBlock == nil)
elseBlock = [[MiscMergeCommandBlock alloc] initWithOwner:self];
[template popCommandBlock:trueBlock];
[template pushCommandBlock:elseBlock];
}
- (void)handleEndifInTemplate:(MiscMergeTemplate *)template
{
[template popCommandBlock];
}
- (MiscMergeCommandExitType)executeForMerge:(MiscMergeEngine *)aMerger
{
if ([self evaluateExpressionInMerger:aMerger])
return [aMerger executeCommandBlock:trueBlock];
else if (elseBlock)
return [aMerger executeCommandBlock:elseBlock];
return MiscMergeCommandExitNormal;
}
- (BOOL)evaluateExpressionInMerger:(MiscMergeEngine *)anEngine
{
return [expression evaluateAsBoolWithEngine:anEngine];
}
@end