-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSSYDebug.m
234 lines (201 loc) · 7.4 KB
/
SSYDebug.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#import "SSYDebug.h"
#import <execinfo.h>
#import <mach-o/dyld.h>
#import <objc/runtime.h>
id ssyDebugGlobalObject = nil ;
double ssyDebugGlobalDouble = 0.0 ;
NSInteger ssyDebugGlobalInteger = 0 ;
NSString* SSYDebugBacktrace(void) {
NSMutableString* nsString = [[NSMutableString alloc] initWithFormat:
@"Thread: isMainThread=%hhd name=%@\n",
[[NSThread currentThread] isMainThread],
[[NSThread currentThread] name]] ;
[nsString appendString:@" Slide(0x) Library\n"] ;
uint32_t i;
NSUInteger count = _dyld_image_count();
for (i = 0; i < count; i++) {
intptr_t slide = (intptr_t)_dyld_get_image_vmaddr_slide(i);
NSString* name = [NSString stringWithUTF8String:_dyld_get_image_name(i)] ;
NSString* exclude1 = @"/usr/lib/" ;
NSString* exclude2 = @"/System/Library/" ;
if ([name hasPrefix:exclude1]) {
continue ;
}
if ([name hasPrefix:exclude2]) {
continue ;
}
[nsString appendFormat:@"%12lx %@\n", slide, name] ;
}
[nsString appendString:@"Call Stack:\n"] ;
// An infinite loop will "blow its stack" at 512 calls, so
// we allow a little more than that.
void* callstack[514] ;
int frames = backtrace(callstack, 514) ;
char** strs = backtrace_symbols(callstack, frames) ;
NSInteger iFrame ;
for (iFrame = 1; iFrame < frames; ++iFrame) {
NSString* moreString = [NSString stringWithCString:strs[iFrame]
encoding:NSUTF8StringEncoding] ;
[nsString appendString:moreString] ;
[nsString appendString:@"\n"] ;
}
free(strs) ;
NSString* answer = [nsString copy] ;
#if !__has_feature(objc_arc)
[nsString release] ;
[answer autorelease] ;
#endif
return answer ;
}
void SSYDebugLogBacktrace (void) {
NSLog(@"\n%@", SSYDebugBacktrace()) ;
}
NSInteger SSYDebugStackDepth(void) {
// An infinite loop will "blow its stack" at 512 calls, so
// we allow a little more than that.
void* callstack[514] ;
NSInteger frames = backtrace(callstack, 514) ;
return frames ;
}
NSString* SSYDebugBacktraceDepth(NSInteger depth) {
if (depth < 1) {
return nil ;
}
// Omit this function, and the function that called it
depth += 2 ;
NSMutableString* nsString = [[NSMutableString alloc] init] ;
void* callstack[depth] ;
int frames = backtrace(callstack, (int)depth) ;
char** strs = backtrace_symbols(callstack, frames) ;
NSInteger iFrame ;
for (iFrame = 2; iFrame < frames; ++iFrame) {
NSString* moreString = [NSString stringWithCString:strs[iFrame]
encoding:NSUTF8StringEncoding] ;
[nsString appendString:moreString] ;
[nsString appendString:@"\n"] ;
}
free(strs) ;
NSString* answer = [nsString copy] ;
#if !__has_feature(objc_arc)
[nsString release] ;
[answer autorelease] ;
#endif
return answer ;
}
NSString* SSYDebugCaller(void) {
void* callstack[3] ;
int frames = backtrace(callstack, 3) ;
char** strs = backtrace_symbols(callstack, frames) ;
NSString* caller = [NSString stringWithCString:strs[2]
encoding:NSUTF8StringEncoding] ;
free(strs) ;
// caller is, e.g., "2 AppKit 0x9a13352e -[NSCustomObject nibInstantiate] + 385"
NSMutableString* mutant = [caller mutableCopy] ;
NSUInteger oldLength ;
do {
oldLength = [mutant length] ;
[mutant replaceOccurrencesOfString:@" "
withString:@" "
options:0
range:NSMakeRange(0, [mutant length])] ;
} while ([mutant length] < oldLength) ;
caller = [NSString stringWithString:mutant] ;
#if !__has_feature(objc_arc)
[mutant release] ;
#endif
NSArray* comps = [caller componentsSeparatedByString:@" "] ;
caller = [comps objectAtIndex:3] ;
if ([comps count] > 6) {
// caller is an Objective-C method name, which includes a space.
// Thus it consists of two components which we now re-concatenate
caller = [caller stringByAppendingString:@" "] ;
caller = [caller stringByAppendingString:[comps objectAtIndex:4]] ;
}
return caller ;
}
BOOL SSYDebugLogObjcClassesByBundleToFile (
NSString* path,
NSError** error_p) {
BOOL ok = YES ;
NSError* error = nil ;
NSMutableDictionary* results = [NSMutableDictionary new] ;
int numberOfClasses = objc_getClassList(NULL, 0);
Class* classes = (Class*)calloc(sizeof(Class), numberOfClasses);
numberOfClasses = objc_getClassList(classes, numberOfClasses);
for (int i = 0; i < numberOfClasses; ++i) {
Class class = classes[i] ;
NSString* className = NSStringFromClass(class) ;
if (![className isEqualToString:@"NSViewServiceApplication"]) {
if (![className isEqualToString:@"UINSServiceViewController"]) {
// This this caused a "no such selector" method in macOS 10.15.2 Beta 4, I think
NSBundle* bundle = [NSBundle bundleForClass:class] ;
NSString* bundleIdentifier = bundle.bundleIdentifier ;
if (bundleIdentifier) {
if (className) {
NSMutableArray* classNames = [results objectForKey:bundleIdentifier] ;
if (!classNames) {
classNames = [NSMutableArray new] ;
[results setObject:classNames
forKey:bundleIdentifier] ;
#if !__has_feature(objc_arc)
[classNames release] ;
#endif
}
[classNames addObject:className] ;
}
}
}
}
}
free(classes) ;
NSMutableArray* bundleIdentifiers = [[results allKeys] mutableCopy] ;
[bundleIdentifiers sortUsingSelector:@selector(caseInsensitiveCompare:)] ;
NSMutableString* narrative = [NSMutableString new] ;
for (NSString* bundleIdentifier in bundleIdentifiers) {
NSMutableArray* classNames = [results objectForKey:bundleIdentifier] ;
[classNames sortUsingSelector:@selector(caseInsensitiveCompare:)] ;
[narrative appendFormat:@"CLASSES IN %@\n", bundleIdentifier] ;
for (NSString* className in classNames) {
[narrative appendFormat:@" %@\n", className] ;
}
}
ok = [narrative writeToFile:path
atomically:YES
encoding:NSUTF8StringEncoding
error:&error] ;
#if !__has_feature(objc_arc)
[results release] ;
[narrative release] ;
#endif
if (error && error_p) {
*error_p = error ;
}
return ok ;
}
void SSYDebugLogResponderChain(void) {
NSWindow *mainWindow = [NSApplication sharedApplication].mainWindow;
NSMutableString* chain = [NSMutableString new];
[chain appendString:@"Responder Chain (stops at window controller):\n"];
NSResponder *responder = mainWindow.firstResponder;
do {
[chain appendFormat:@" %@\n", [responder debugDescription]];
} while ((responder = [responder nextResponder]));
NSLog(@"%@", chain);
#if !__has_feature(objc_arc)
[chain release];
#endif
}
void SSYDebugLogObjCMethods(Class clz) {
unsigned int methodCount = 0;
Method *methods = class_copyMethodList(clz, &methodCount);
printf("Found %d methods on '%s'\n\n", methodCount, class_getName(clz));
for (unsigned int i = 0; i < methodCount; i++) {
Method method = methods[i];
printf("%s\n", sel_getName(method_getName(method)));
/**
* Or do whatever you need here...
*/
}
printf("\n\n");
free(methods);
}