forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDSymbolReferences.m
More file actions
97 lines (74 loc) · 2.12 KB
/
CDSymbolReferences.m
File metadata and controls
97 lines (74 loc) · 2.12 KB
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
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2006 Steve Nygard
#import "CDSymbolReferences.h"
#import <Foundation/Foundation.h>
@implementation CDSymbolReferences
- (id)init;
{
if ([super init] == nil)
return nil;
classes = [[NSMutableSet alloc] init];
protocols = [[NSMutableSet alloc] init];
return self;
}
- (void)dealloc;
{
[classes release];
[protocols release];
[super dealloc];
}
- (NSArray *)classes;
{
return [[classes allObjects] sortedArrayUsingSelector:@selector(compare:)];
}
- (void)addClassName:(NSString *)aClassName;
{
[classes addObject:aClassName];
}
- (void)removeClassName:(NSString *)aClassName;
{
if (aClassName != nil)
[classes removeObject:aClassName];
}
- (NSArray *)protocols;
{
return [[protocols allObjects] sortedArrayUsingSelector:@selector(compare:)];
}
- (void)addProtocolName:(NSString *)aProtocolName;
{
[protocols addObject:aProtocolName];
}
- (void)addProtocolNamesFromArray:(NSArray *)protocolNames;
{
[protocols addObjectsFromArray:protocolNames];
}
- (NSString *)description;
{
return [NSString stringWithFormat:@"<%@:%p> classes: %@, protocols: %@", NSStringFromClass([self class]), self, [self classes], [self protocols]];
}
- (void)_appendToString:(NSMutableString *)resultString;
{
NSArray *names;
int count, index;
names = [self protocols];
count = [names count];
for (index = 0; index < count; index++) {
[resultString appendFormat:@"#import \"%@Protocol.h\"\n", [names objectAtIndex:index]];
}
if (count > 0)
[resultString appendString:@"\n"];
names = [self classes];
if ([names count] > 0) {
[resultString appendFormat:@"@class %@;\n\n", [names componentsJoinedByString:@", "]];
}
}
- (NSString *)referenceString;
{
NSMutableString *referenceString;
referenceString = [[[NSMutableString alloc] init] autorelease];
[self _appendToString:referenceString];
if ([referenceString length] == 0)
return nil;
return referenceString;
}
@end