Adding a new class called BreakpointManager so we don't clutter up AppDelegate
[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 * Returns all the breakpoints for a given file
67 */
68 - (NSSet *)breakpointsForFile:(NSString *)file
69 {
70 return [breakpoints valueForKey:file];
71 }
72
73 /**
74 * Checks to see if a given file has a breakpoint on a given line
75 */
76 - (BOOL)hasBreakpointAt:(int)line inFile:(NSString *)file
77 {
78 NSSet *lines = [breakpoints valueForKey:file];
79 if (!lines)
80 {
81 return NO;
82 }
83 for (Breakpoint *b in lines)
84 {
85 if ([b line] == line)
86 {
87 return YES;
88 }
89 }
90 return NO;
91 }
92
93 @end