@@ -57,7 +57,7 @@ static int32_t getUniqueId()
57
57
58
58
static jsi::String convertNSStringToJSIString (jsi::Runtime &runtime, NSString *value)
59
59
{
60
- return jsi::String::createFromUtf8 (runtime, [value UTF8String ] ?: " " );
60
+ return jsi::String::createFromUtf8 (runtime, [value UTF8String ] ? [value UTF8String ] : " " );
61
61
}
62
62
63
63
static jsi::Object convertNSDictionaryToJSIObject (jsi::Runtime &runtime, NSDictionary *value)
@@ -203,7 +203,11 @@ id convertJSIValueToObjCObject(jsi::Runtime &runtime, const jsi::Value &value, s
203
203
/* *
204
204
* Creates JSError with current JS runtime and NSException stack trace.
205
205
*/
206
- static jsi::JSError convertNSExceptionToJSError (jsi::Runtime &runtime, NSException *exception )
206
+ static jsi::JSError convertNSExceptionToJSError (
207
+ jsi::Runtime &runtime,
208
+ NSException *exception ,
209
+ const std::string &moduleName,
210
+ const std::string &methodName)
207
211
{
208
212
std::string reason = [exception .reason UTF8String ];
209
213
@@ -214,7 +218,8 @@ id convertJSIValueToObjCObject(jsi::Runtime &runtime, const jsi::Value &value, s
214
218
cause.setProperty (
215
219
runtime, " stackReturnAddresses" , convertNSArrayToJSIArray (runtime, exception .callStackReturnAddresses ));
216
220
217
- jsi::Value error = createJSRuntimeError (runtime, " Exception in HostFunction: " + reason);
221
+ std::string message = moduleName + " ." + methodName + " raised an exception: " + reason;
222
+ jsi::Value error = createJSRuntimeError (runtime, message);
218
223
error.asObject (runtime).setProperty (runtime, " cause" , std::move (cause));
219
224
return {runtime, std::move (error)};
220
225
}
@@ -346,28 +351,34 @@ id convertJSIValueToObjCObject(jsi::Runtime &runtime, const jsi::Value &value, s
346
351
}
347
352
348
353
if (isSync) {
349
- TurboModulePerfLogger::syncMethodCallExecutionStart (moduleName, methodNameStr. c_str () );
354
+ TurboModulePerfLogger::syncMethodCallExecutionStart (moduleName, methodName );
350
355
} else {
351
- TurboModulePerfLogger::asyncMethodCallExecutionStart (moduleName, methodNameStr. c_str () , asyncCallCounter);
356
+ TurboModulePerfLogger::asyncMethodCallExecutionStart (moduleName, methodName , asyncCallCounter);
352
357
}
353
358
354
359
@try {
355
360
[inv invokeWithTarget: strongModule];
356
361
} @catch (NSException *exception ) {
357
- throw convertNSExceptionToJSError (runtime, exception );
362
+ if (isSync) {
363
+ // We can only convert NSException to JSError in sync method calls.
364
+ // See https://github.com/reactwg/react-native-new-architecture/discussions/276#discussioncomment-12567155
365
+ throw convertNSExceptionToJSError (runtime, exception , std::string{moduleName}, methodNameStr);
366
+ } else {
367
+ @throw exception ;
368
+ }
358
369
} @finally {
359
370
[retainedObjectsForInvocation removeAllObjects ];
360
371
}
361
372
362
373
if (!isSync) {
363
- TurboModulePerfLogger::asyncMethodCallExecutionEnd (moduleName, methodNameStr. c_str () , asyncCallCounter);
374
+ TurboModulePerfLogger::asyncMethodCallExecutionEnd (moduleName, methodName , asyncCallCounter);
364
375
return ;
365
376
}
366
377
367
378
void *rawResult;
368
379
[inv getReturnValue: &rawResult];
369
380
result = (__bridge id )rawResult;
370
- TurboModulePerfLogger::syncMethodCallExecutionEnd (moduleName, methodNameStr. c_str () );
381
+ TurboModulePerfLogger::syncMethodCallExecutionEnd (moduleName, methodName );
371
382
};
372
383
373
384
if (isSync) {
@@ -409,23 +420,23 @@ TraceSection s(
409
420
}
410
421
411
422
if (shouldVoidMethodsExecuteSync_) {
412
- TurboModulePerfLogger::syncMethodCallExecutionStart (moduleName, methodNameStr. c_str () );
423
+ TurboModulePerfLogger::syncMethodCallExecutionStart (moduleName, methodName );
413
424
} else {
414
- TurboModulePerfLogger::asyncMethodCallExecutionStart (moduleName, methodNameStr. c_str () , asyncCallCounter);
425
+ TurboModulePerfLogger::asyncMethodCallExecutionStart (moduleName, methodName , asyncCallCounter);
415
426
}
416
427
417
428
@try {
418
429
[inv invokeWithTarget: strongModule];
419
430
} @catch (NSException *exception ) {
420
- throw convertNSExceptionToJSError (runtime, exception );
431
+ throw convertNSExceptionToJSError (runtime, exception , std::string{moduleName}, methodNameStr );
421
432
} @finally {
422
433
[retainedObjectsForInvocation removeAllObjects ];
423
434
}
424
435
425
436
if (shouldVoidMethodsExecuteSync_) {
426
- TurboModulePerfLogger::syncMethodCallExecutionEnd (moduleName, methodNameStr. c_str () );
437
+ TurboModulePerfLogger::syncMethodCallExecutionEnd (moduleName, methodName );
427
438
} else {
428
- TurboModulePerfLogger::asyncMethodCallExecutionEnd (moduleName, methodNameStr. c_str () , asyncCallCounter);
439
+ TurboModulePerfLogger::asyncMethodCallExecutionEnd (moduleName, methodName , asyncCallCounter);
429
440
}
430
441
431
442
return ;
0 commit comments