Escribí un script lldb que te permite ignorar selectivamente las excepciones de Objective-C con una sintaxis mucho más simple, y maneja OS X, iOS Simulator y ARM de 32 bits y 64 bits.
Instalación
- Coloque este script en
~/Library/lldb/ignore_specified_objc_exceptions.py
algún lugar útil.
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')
Agregue lo siguiente a ~/.lldbinit
:
command script import ~/Library/lldb/ignore_specified_objc_exceptions.py
reemplazándolo ~/Library/lldb/ignore_specified_objc_exceptions.py
con la ruta correcta si lo guardó en otro lugar.
Uso
- En Xcode, agregue un punto de interrupción para detectar todas las excepciones de Objective-C
- Edite el punto de interrupción y agregue un comando de depuración con el siguiente comando:
ignore_specified_objc_exceptions name:NSAccessibilityException className:NSSomeException
- Esto ignorará las excepciones donde
NSException
-name
coincide NSAccessibilityException
O -className
coincideNSSomeException
Debería verse algo como esto:
En su caso, usaría ignore_specified_objc_exceptions className:_NSCoreData
Consulte http://chen.do/blog/2013/09/30/selectively-ignoring-objective-c-exceptions-in-xcode/ para obtener el script y más detalles.