特定のものmethod
が呼び出されたコード行を判別する方法はありますか?
特定のものmethod
が呼び出されたコード行を判別する方法はありますか?
回答:
StackIこれが役立つことを願っています:
NSString *sourceString = [[NSThread callStackSymbols] objectAtIndex:1];
// Example: 1 UIKit 0x00540c89 -[UIApplication _callInitializationDelegatesForURL:payload:suspended:] + 1163
NSCharacterSet *separatorSet = [NSCharacterSet characterSetWithCharactersInString:@" -[]+?.,"];
NSMutableArray *array = [NSMutableArray arrayWithArray:[sourceString componentsSeparatedByCharactersInSet:separatorSet]];
[array removeObject:@""];
NSLog(@"Stack = %@", [array objectAtIndex:0]);
NSLog(@"Framework = %@", [array objectAtIndex:1]);
NSLog(@"Memory address = %@", [array objectAtIndex:2]);
NSLog(@"Class caller = %@", [array objectAtIndex:3]);
NSLog(@"Function caller = %@", [array objectAtIndex:4]);
完全に最適化されたコードでは、特定のメソッドの呼び出し元を決定する100%確実な方法はありません。コンパイラは末尾呼び出しの最適化を採用する場合がありますが、コンパイラは呼び出し先のスタックフレームを呼び出し先に効果的に再利用します。
この例を確認するには、gdbを使用して任意のメソッドにブレークポイントを設定し、バックトレースを確認してください。すべてのメソッド呼び出しの前にobjc_msgSend()が表示されないことに注意してください。これは、objc_msgSend()が各メソッドの実装に対して末尾呼び出しを行うためです。
最適化されていないアプリケーションをコンパイルすることもできますが、この1つの問題だけを回避するには、すべてのシステムライブラリの最適化されていないバージョンが必要になります。
そして、これはただ一つの問題です。実際には、「CrashTracerまたはgdbを再発明するにはどうすればよいですか?」キャリアが作られる非常に難しい問題。あなたが「デバッグツール」をあなたのキャリアにしたいのでない限り、私はこの道を進むことをお勧めしません。
あなたは本当にどんな質問に答えようとしていますか?
intropedroによって提供された答えを使用して、私はこれを思いつきました:
#define CALL_ORIGIN NSLog(@"Origin: [%@]", [[[[NSThread callStackSymbols] objectAtIndex:1] componentsSeparatedByCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"[]"]] objectAtIndex:1])
これは単純に元のクラスと関数を返します:
2014-02-04 16:49:25.384 testApp[29042:70b] Origin: [LCallView addDataToMapView]
ps-関数がperformSelectorを使用して呼び出された場合、結果は次のようになります。
Origin: [NSObject performSelector:withObject:]
これを行うメソッドを書いただけです:
- (NSString *)getCallerStackSymbol {
NSString *callerStackSymbol = @"Could not track caller stack symbol";
NSArray *stackSymbols = [NSThread callStackSymbols];
if(stackSymbols.count >= 2) {
callerStackSymbol = [stackSymbols objectAtIndex:2];
if(callerStackSymbol) {
NSMutableArray *callerStackSymbolDetailsArr = [[NSMutableArray alloc] initWithArray:[callerStackSymbol componentsSeparatedByString:@" "]];
NSUInteger callerStackSymbolIndex = callerStackSymbolDetailsArr.count - 3;
if (callerStackSymbolDetailsArr.count > callerStackSymbolIndex && [callerStackSymbolDetailsArr objectAtIndex:callerStackSymbolIndex]) {
callerStackSymbol = [callerStackSymbolDetailsArr objectAtIndex:callerStackSymbolIndex];
callerStackSymbol = [callerStackSymbol stringByReplacingOccurrencesOfString:@"]" withString:@""];
}
}
}
return callerStackSymbol;
}
参照用の@Intropedroの回答のSwift 2.0バージョン。
let sourceString: String = NSThread.callStackSymbols()[1]
let separatorSet :NSCharacterSet = NSCharacterSet(charactersInString: " -[]+?.,")
let array = NSMutableArray(array: sourceString.componentsSeparatedByCharactersInSet(separatorSet))
array.removeObject("")
print("Stack: \(array[0])")
print("Framework:\(array[1])")
print("Memory Address:\(array[2])")
print("Class Caller:\(array[3])")
print("Method Caller:\(array[4])")
清酒用の場合は、 NSLog(@"%s", __FUNCTION__);
クラスの各メソッド内の最初の行として。そうすれば、デバッガーを見れば、いつでもメソッド呼び出しの順序を知ることができます。
@Roy Kronenfeldの素晴らしい答えのわずかに最適化されたバージョン:
- (NSString *)findCallerMethod
{
NSString *callerStackSymbol = nil;
NSArray<NSString *> *callStackSymbols = [NSThread callStackSymbols];
if (callStackSymbols.count >= 2)
{
callerStackSymbol = [callStackSymbols objectAtIndex:2];
if (callerStackSymbol)
{
// Stack: 2 TerribleApp 0x000000010e450b1e -[TALocalDataManager startUp] + 46
NSInteger idxDash = [callerStackSymbol rangeOfString:@"-" options:kNilOptions].location;
NSInteger idxPlus = [callerStackSymbol rangeOfString:@"+" options:NSBackwardsSearch].location;
if (idxDash != NSNotFound && idxPlus != NSNotFound)
{
NSRange range = NSMakeRange(idxDash, (idxPlus - idxDash - 1)); // -1 to remove the trailing space.
callerStackSymbol = [callerStackSymbol substringWithRange:range];
return callerStackSymbol;
}
}
}
return (callerStackSymbol) ?: @"Caller not found! :(";
}
@ennuikiller
//Add this private instance method to the class you want to trace from
-(void)trace
{
//Go back 2 frames to account for calling this helper method
//If not using a helper method use 1
NSArray* stack = [NSThread callStackSymbols];
if (stack.count > 2)
NSLog(@"Caller: %@", [stack objectAtIndex:2]);
}
//Add this line to the method you want to trace from
[self trace];
出力ウィンドウに次のようなものが表示されます。
呼び出し元:2 MyApp 0x0004e8ae-[IINClassroomInit buildMenu] + 86
この文字列を解析して、スタックフレームに関するデータをさらに抽出することもできます。
2 = Thread id
My App = Your app name
0x0004e8ae = Memory address of caller
-[IINClassroomInit buildMenu] = Class and method name of caller
+86 = Number of bytes from the entry point of the caller that your method was called
コピーと貼り付けのための@Geoff HのSwift 4バージョンの回答;]
let sourceString: String = Thread.callStackSymbols[1]
let separatorSet :CharacterSet = CharacterSet(charactersIn: " -[]+?.,")
var array = Array(sourceString.components(separatedBy: separatorSet))
array = array.filter { $0 != "" }
print("Stack: \(array[0])")
print("Framework:\(array[1])")
print("Memory Address:\(array[2])")
print("Class Caller:\(array[3])")
print("Method Caller:\(array[4])")
参考のために@Geoff HのSwift 3バージョンの回答:
let sourceString: String = Thread.callStackSymbols[1]
let separatorSet: CharacterSet = CharacterSet(charactersIn: " -[]+?.,")
let array = NSMutableArray(array: sourceString.components(separatedBy: separatorSet))
array.remove("")
print("Stack: \(array[0])")
print("Framework:\(array[1])")
print("Memory Address:\(array[2])")
print("Class Caller:\(array[3])")
print("Method Caller:\(array[4])")