훨씬 간단한 구문으로 Objective-C 예외를 선택적으로 무시할 수있는 lldb 스크립트를 작성했으며 OS X, iOS 시뮬레이터, 32 비트 및 64 비트 ARM을 모두 처리합니다.
설치
- 이 스크립트를
~/Library/lldb/ignore_specified_objc_exceptions.py
또는 유용한 곳에 두십시오 .
import lldb
import re
import shlex
def getRegister(target):
if target.triple.startswith('x86_64'):
return "rdi"
elif target.triple.startswith('i386'):
return "eax"
elif target.triple.startswith('arm64'):
return "x0"
else:
return "r0"
def callMethodOnException(frame, register, method):
return frame.EvaluateExpression("(NSString *)[(NSException *)${0} {1}]".format(register, method)).GetObjectDescription()
def filterException(debugger, user_input, result, unused):
target = debugger.GetSelectedTarget()
frame = target.GetProcess().GetSelectedThread().GetFrameAtIndex(0)
if frame.symbol.name != 'objc_exception_throw':
return None
filters = shlex.split(user_input)
register = getRegister(target)
for filter in filters:
method, regexp_str = filter.split(":", 1)
value = callMethodOnException(frame, register, method)
if value is None:
output = "Unable to grab exception from register {0} with method {1}; skipping...".format(register, method)
result.PutCString(output)
result.flush()
continue
regexp = re.compile(regexp_str)
if regexp.match(value):
output = "Skipping exception because exception's {0} ({1}) matches {2}".format(method, value, regexp_str)
result.PutCString(output)
result.flush()
debugger.SetAsync(True)
debugger.HandleCommand("continue")
return None
return None
def __lldb_init_module(debugger, unused):
debugger.HandleCommand('command script add --function ignore_specified_objc_exceptions.filterException ignore_specified_objc_exceptions')
다음에 다음을 추가하십시오 ~/.lldbinit
.
command script import ~/Library/lldb/ignore_specified_objc_exceptions.py
~/Library/lldb/ignore_specified_objc_exceptions.py
다른 곳에 저장 한 경우 올바른 경로로 바꿉니다 .
용법
- Xcode에서 모든 Objective-C 예외 를 포착하는 중단 점을 추가합니다.
- 중단 점을 편집하고 다음 명령을 사용하여 디버거 명령을 추가합니다.
ignore_specified_objc_exceptions name:NSAccessibilityException className:NSSomeException
- 이것은
NSException
-name
일치 NSAccessibilityException
또는 -className
일치 하는 예외를 무시합니다.NSSomeException
다음과 같이 보일 것입니다.
귀하의 경우에는 ignore_specified_objc_exceptions className:_NSCoreData
스크립트 및 자세한 내용 은 http://chen.do/blog/2013/09/30/selectively-ignoring-objective-c-exceptions-in-xcode/ 를 참조 하십시오.