2017-03-22 01:25:00 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-03-22 01:25:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "RCTJSCHelpers.h"
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
#import <React/RCTBridge+Private.h>
|
2017-05-26 10:43:20 +00:00
|
|
|
#import <React/RCTCxxUtils.h>
|
2017-03-22 01:25:00 +00:00
|
|
|
#import <React/RCTLog.h>
|
|
|
|
#import <cxxreact/Platform.h>
|
|
|
|
#import <jschelpers/Value.h>
|
|
|
|
|
|
|
|
using namespace facebook::react;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
JSValueRef nativeLoggingHook(
|
|
|
|
JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount,
|
|
|
|
const JSValueRef arguments[], JSValueRef *exception) {
|
|
|
|
RCTLogLevel level = RCTLogLevelInfo;
|
|
|
|
if (argumentCount > 1) {
|
|
|
|
level = MAX(level, (RCTLogLevel)Value(ctx, arguments[1]).asNumber());
|
|
|
|
}
|
|
|
|
if (argumentCount > 0) {
|
2017-05-26 10:43:20 +00:00
|
|
|
JSContext *contextObj = contextForGlobalContextRef(JSC_JSContextGetGlobalContext(ctx));
|
|
|
|
JSValue *msg = [JSC_JSValue(ctx) valueWithJSValueRef:arguments[0] inContext:contextObj];
|
|
|
|
_RCTLogJavaScriptInternal(level, [msg toString]);
|
2017-03-22 01:25:00 +00:00
|
|
|
}
|
|
|
|
return Value::makeUndefined(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSValueRef nativePerformanceNow(
|
|
|
|
JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount,
|
|
|
|
const JSValueRef arguments[], JSValueRef *exception) {
|
|
|
|
return Value::makeNumber(ctx, CACurrentMediaTime() * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void RCTPrepareJSCExecutor() {
|
2017-05-26 10:43:20 +00:00
|
|
|
ReactMarker::logTaggedMarker = [](const ReactMarker::ReactMarkerId, const char *tag) {};
|
2017-06-07 17:17:58 +00:00
|
|
|
JSCNativeHooks::loggingHook = nativeLoggingHook;
|
|
|
|
JSCNativeHooks::nowHook = nativePerformanceNow;
|
|
|
|
JSCNativeHooks::installPerfHooks = RCTFBQuickPerformanceLoggerConfigureHooks;
|
2017-03-22 01:25:00 +00:00
|
|
|
}
|