React Native JSI 和 JSC 是什么

JSI背景

由于Flutter.js的存在,和原生UI或者原生模块交互的性能问题成为了RN的弱点,为了弥补逐渐失去的地位,RN制作出了JSI来应对

JSI 是什么

RN 中, JSI 是 JavaScript Interface 的缩写,JSI 是一个轻量级的通用的API框架,可以应用于任意的JavaScript virtual machine,让各种平台可以方便的使用不同的JavaScript解析引擎(JavaScript virtual machine 包含 JavaScript Engine)。

JSI是用C++写的,用于取代原先的bridge,提高通信效率,已在RN 的 0.58 中实现。

目前在RN中,默认使用的JavaScript virtual machine 是JavaScriptCore (JSC---WbKit中用的就是这个)

有了JSI ,我们就能轻松的直接调用原生UI ViewsNative ModulesJava/ObjC 实现的方法(类似RPC),而不是像原来那样用一层bridge 来排队等待原生层返回的消息

  • Fabric: just the UI layer re-architecture, to take full advantage of concurrent React architecture.

  • TurboModules: re-architecture of NativeModules, also using JSI.

  • CodeGen: a tool to "glue" JS and native side: it will allow for supercharge static types (TS, Flow) for compatibilty with native binaries, among other things

The JSI system can also be used to call leverage device capabilities like bluetooth or other sensors by exposing functions that JS can call. This is similar to how browsers expose functions like navigator.geolocation.getCurrentPosition that, when invoked in JavaScript, trigger the respective C++ call in the browser.
In the current system, a table with information about module names and methods is created. When JS calls a specific native module, the indices of the module and methods are passed to Java/ObjC, which then invoke the specific methods. The arguments and return values are also converted between JavaScript and JNI/ObjC objects.
[...] Now that we have a JSI object for "SampleTurboModule", can invoke methods on this JSI object from JavaScript. During the calls, we also need to convert JSI Values to JNI for argument parameters, and the reverse when sending back results.
Like in the current architecture, most types including boolean, strings, Maps, Arrays, Callbacks and Promises are supported

参考链接:

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值