Add a prop for DebuggerConnection and change the breakpoints ivar to a prop
[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 @implementation BreakpointManager
20
21 @synthesize breakpoints, connection;
22
23 /**
24 * Initializer
25 */
26 - (id)init
27 {
28 if (self = [super init])
29 {
30 if (!breakpoints)
31 {
32 breakpoints = [[NSMutableArray alloc] init];
33 }
34 }
35 return self;
36 }
37
38 /**
39 * Returns the shared manager (singleton)
40 */
41 + (BreakpointManager *)sharedManager
42 {
43 static BreakpointManager *manager;
44 if (!manager)
45 {
46 manager = [[BreakpointManager alloc] init];
47 }
48 return manager;
49 }
50
51 /**
52 * Registers a breakpoint at a given line
53 */
54 - (void)addBreakpoint:(Breakpoint *)bp;
55 {
56 if (![breakpoints containsObject:bp])
57 {
58 [breakpoints addObject:bp];
59 }
60 }
61
62 /**
63 * Removes a breakpoint at a given line/file combination, or nil if nothing was removed
64 */
65 - (Breakpoint *)removeBreakpointAt:(int)line inFile:(NSString *)file
66 {
67 for (Breakpoint *b in breakpoints)
68 {
69 if ([b line] == line && [[b file] isEqualToString:file])
70 {
71 [breakpoints removeObject:b];
72 return b;
73 }
74 }
75 return nil;
76 }
77
78 /**
79 * Returns all the breakpoints for a given file
80 */
81 - (NSArray *)breakpointsForFile:(NSString *)file
82 {
83 NSMutableArray *matches = [NSMutableArray array];
84 for (Breakpoint *b in breakpoints)
85 {
86 if ([[b file] isEqualToString:file])
87 {
88 [matches addObject:b];
89 }
90 }
91
92 return matches;
93 }
94
95 /**
96 * Checks to see if a given file has a breakpoint on a given line
97 */
98 - (BOOL)hasBreakpointAt:(int)line inFile:(NSString *)file
99 {
100 return [breakpoints containsObject:[[Breakpoint alloc] initWithLine:line inFile:file]];
101 }
102
103 @end