Add support for removing a breakpoint
[macgdbp.git] / Source / BreakpointManager.m
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2008, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import "BreakpointManager.h"
18
19
20 @implementation BreakpointManager
21
22 /**
23 * Initializer
24 */
25 - (id)init
26 {
27 if (self = [super init])
28 {
29 breakpoints = [NSMutableDictionary dictionary];
30 }
31 return self;
32 }
33
34 /**
35 * Returns the shared manager (singleton)
36 */
37 + (BreakpointManager *)sharedManager
38 {
39 static BreakpointManager *manager;
40 if (!manager)
41 {
42 manager = [[BreakpointManager alloc] init];
43 }
44 return manager;
45 }
46
47 /**
48 * Registers a breakpoint at a given line
49 */
50 - (void)addBreakpoint:(Breakpoint *)bp;
51 {
52 NSMutableSet *lines = [breakpoints valueForKey:[bp file]];
53 if (lines == nil)
54 {
55 lines = [NSMutableSet setWithObject:bp];
56 [breakpoints setValue:lines forKey:[bp file]];
57 }
58 else
59 {
60 [lines addObject:bp];
61 }
62 NSLog(@"breakpoints = %@", breakpoints);
63 }
64
65 /**
66 * Removes a breakpoint at a given line/file combination
67 */
68 - (void)removeBreakpointAt:(int)line inFile:(NSString *)file
69 {
70 NSMutableSet *lines = [breakpoints valueForKey:file];
71 for (Breakpoint *b in lines)
72 {
73 if ([b line] == line)
74 {
75 [lines removeObject:b];
76 return;
77 }
78 }
79 }
80
81 /**
82 * Returns all the breakpoints for a given file
83 */
84 - (NSSet *)breakpointsForFile:(NSString *)file
85 {
86 return [breakpoints valueForKey:file];
87 }
88
89 /**
90 * Checks to see if a given file has a breakpoint on a given line
91 */
92 - (BOOL)hasBreakpointAt:(int)line inFile:(NSString *)file
93 {
94 NSSet *lines = [breakpoints valueForKey:file];
95 if (!lines)
96 {
97 return NO;
98 }
99 for (Breakpoint *b in lines)
100 {
101 if ([b line] == line)
102 {
103 return YES;
104 }
105 }
106 return NO;
107 }
108
109 @end