欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

简析React Native startReactApplication 方法

程序员文章站 2022-07-11 15:00:10
在 react native 启动流程简析 这篇文章里,我们梳理了 rn 的启动流程,最后的 startreactapplication 由于相对复杂且涉及到最终执行前端 js 的流程,我们单独将其提...

react native 启动流程简析 这篇文章里,我们梳理了 rn 的启动流程,最后的 startreactapplication 由于相对复杂且涉及到最终执行前端 js 的流程,我们单独将其提取出来,独立成文加以分析。

首先来看 startreactapplication 的调用之处:

mreactrootview.startreactapplication(
    getreactnativehost().getreactinstancemanager(), appkey, mlaunchoptions);

可以看到是在 rootview 上调用 startreactapplication,入参为 instancemanager、appkey、mlaunchoptions

顺着 startreactapplication 扒出其调用链:

mreactinstancemanager.createreactcontextinbackground() -> recreatereactcontextinbackgroundinner() -> recreatereactcontextinbackgroundfrombundleloader() -> recreatereactcontextinbackground() -> runcreatereactcontextonnewthread()

recreatereactcontextinbackgroundreactinstancemanager 中的方法,做了两件事:

1.创建 reactcontextinitparams 实例 initparams,如下,其入参 jsexecutorfactory 为创建 reactinstancemanager 时传入。

final reactcontextinitparams initparams =
    new reactcontextinitparams(jsexecutorfactory, jsbundleloader);

2.调用 runcreatereactcontextonnewthread

runcreatereactcontextonnewthreadreactinstancemanager 中的方法,主要做了两件事:

  1. 创建一个新的线程,并在新线程中通过 createreactcontext 创建 reactcontext 上下文;
  2. 通过 setupreactcontext 来设置上下文环境,并最终调用到 appregistry.js 启动app。

createreactcontext

先看其调用的地方:

final reactapplicationcontext reactapplicationcontext =
    createreactcontext(
        initparams.getjsexecutorfactory().create(),
        initparams.getjsbundleloader());

其两个入参分别为 jsexecutorfactory 创建的 javascriptexecutor 实例,和 jsbundleloader 实例。

javascriptexecutor

startreactapplication 第一个入参为 getreactnativehost().getreactinstancemanager() 获取 reactinstancemanager 实例。reactinstancemanager 实例在 rn 应用中只有一个,先前在创建 mainactivity 时已创建。

回顾 react native 启动流程简析,在创建过程中实际上是调用下面的方法:

reactinstancemanager reactinstancemanager = builder.build()

builderreactinstancemanagerbuilder,我们来到该类的 build 方法,发现其最终是执行 return new reactinstancemanager(...),在构造参数中第 4 个参数即为:getdefaultjsexecutorfactory,来到其定义处:

 private javascriptexecutorfactory getdefaultjsexecutorfactory(
      string appname, string devicename, context applicationcontext) {
    try {
      // if jsc is included, use it as normal
      initializesoloaderifnecessary(applicationcontext);
      soloader.loadlibrary("jscexecutor");
      return new jscexecutorfactory(appname, devicename);
    } catch (unsatisfiedlinkerror jsce) { /* ... */ }
}

也就是说在创建 reactinstancemanagerbuilder 时我们就创建了 jscexecutorfactory,并在随后调用其 create 方法创建 jscexecutorjscexecutorfactory 实现了 javascriptexecutorfactory 接口,其 create 方法如下,返回了 jscexecutor 实例:

 @override
  public javascriptexecutor create() throws exception {
    writablenativemap jscconfig = new writablenativemap();
    jscconfig.putstring("owneridentity", "reactnative");
    jscconfig.putstring("appidentity", mappname);
    jscconfig.putstring("deviceidentity", mdevicename);
    return new jscexecutor(jscconfig);
  }

再往下看 jscexecutor 的定义,其继承自 javascriptexecutor 类:

@donotstrip
/* package */ class jscexecutor extends javascriptexecutor {
  static {
    soloader.loadlibrary("jscexecutor");
  }
  /* package */ jscexecutor(readablenativemap jscconfig) {
    super(inithybrid(jscconfig));
  }
  @override
  public string getname() {
    return "jscexecutor";
  }
  private static native hybriddata inithybrid(readablenativemap jscconfig);
}

于是就很清楚了,createreactcontext 第一个参数为 jscexecutor 实例,是通过 soloader 加载的 c++ 模块。

jsbundleloader

同样的,在 return new reactinstancemanager(...),其构造参数中第 5 个参数为:jsbundleloader.createassetloader(mapplication, mjsbundleasseturl, false)

来到其定义之处,发现其返回了 jsbundleloader 实例,并重写了其 loadscript 方法。

public static jsbundleloader createassetloader(
    final context context, final string asseturl, final boolean loadsynchronously) {
  return new jsbundleloader() {
    @override
    public string loadscript(jsbundleloaderdelegate delegate) {
      delegate.loadscriptfromassets(context.getassets(), asseturl, loadsynchronously);
      return asseturl;
    }
  };
}

在创建完 jscexecutor 实例和 jsbundleloader 实例后,正式进入到 createreactcontext 方法。

createreactcontext

private reactapplicationcontext createreactcontext(
  final reactapplicationcontext reactcontext = new reactapplicationcontext(mapplicationcontext);

  catalystinstanceimpl.builder catalystinstancebuilder = /* ... */

  try {
    catalystinstance = catalystinstancebuilder.build();
  } finally { /* ... */ }

  reactcontext.initializewithinstance(catalystinstance);

  turbomodulemanager turbomodulemanager =
    new turbomodulemanager( /* ... */ )

  catalystinstance.setturbomodulemanager(turbomodulemanager);

  if (mjsimodulepackage != null) {
    catalystinstance.addjsimodules( /* ... */ );
  }

  catalystinstance.runjsbundle();
  return reactcontext;

在这里面,首先创建了 reactcontext,并通过 catalystinstancebuilder 创建了 catalystinstance。接着通过 initializewithinstance 方法将 reactcontextcatalystinstance 关联起来,并进行了一系列的为 catalystinstance 初始化的工作。最后进入到方法 catalystinstance.runjsbundle() 中。

initializewithinstance

通过调用 getuiqueuethreadgetnativemodulesqueuethreadgetjsqueuethread创建了3个线程队列,分别是 ui线程、nativemodules 线程,和 js 线程。

runjsbundle

public void runjsbundle() {
  mjsbundleloader.loadscript(catalystinstanceimpl.this);
  synchronized (mjscallspendinginitlock) {
    macceptcalls = true;
    for (pendingjscall function : mjscallspendinginit) {
      function.call(this);
    }
    mjscallspendinginit.clear();
    mjsbundlehasloaded = true;
  }
  systrace.registerlistener(mtracelistener);
}

通过先前返回的 mjsbundleloader 执行其 loadscript 方法:

public string loadscript(jsbundleloaderdelegate delegate) {
  delegate.loadscriptfromassets(context.getassets(), asseturl, loadsynchronously);
  return asseturl;
}

loadscriptfromassets 方法在 catalystinstanceimpl 中:

public void loadscriptfromassets(
    assetmanager assetmanager, string asseturl, boolean loadsynchronously) {
  msourceurl = asseturl;
  jniloadscriptfromassets(assetmanager, asseturl, loadsynchronously);
}

这里的 asseturl 是在 createassetloader 创建 mjsbundleloader 时传入,其赋值时机是在 reactinstancemanagerbuilder 实例中,由 reactnativehost 实例的 createreactinstancemanager 方法。若 开发者在 mainapplication.java 中通过重写 getjsbundlefile 方法自定义了 asseturl 则使用该 url,否则使用系统默认,如:file://sdcard/myapp_cache/index.android.bundle

jniloadscriptfromassets 方法为 c++ 侧定义的方法,用于读取 js 文件。为什么 java 代码中可以直接调用 c++ 方法,这里还要打个问号,后续在分析 java 与 c++ 通信及 java 与 js 通信时阐释。

通过 createreactcontext 创建了 reactcontext,创建了 catalystinstance 实例,并将上述两者关联,接着通过 catalystinstance 读入 js 文件。接下来就进入到 setupreactcontext 的环节。

setupreactcontext

private void setupreactcontext(final reactapplicationcontext reactcontext) {
    synchronized (mattachedreactroots) {
      catalystinstance.initialize();
      for (reactroot reactroot : mattachedreactroots) {
        if (reactroot.getstate().compareandset(reactroot.state_stopped, reactroot.state_started)) {
          attachrootviewtoinstance(reactroot);
        }
      }
    }
    uithreadutil.runonuithread(
      public void run() {
        listener.onreactcontextinitialized(reactcontext);
      }
    )
    reactcontext.runonjsqueuethread(
      public void run() {
        process.setthreadpriority(process.thread_priority_default);
      }
    )
    reactcontext.runonnativemodulesqueuethread(
      public void run() {
        process.setthreadpriority(process.thread_priority_default);
      }
    )
}

这里面做的事情如下:

  • catalystinstance.initialize(): 所有原生模块的初始化
  • attachrootviewtoinstance(reactroot): 绘制所有的 rootview 并添加到相应实例并设置相应的监听事件
  • 创建 ui 模块、js 模块和原生模块线程,并设置 js 模块和原生模块所在线程的优先级

总结本文

从 createreactcontext 和 setupreactcontext 两个方法的源码出发,分析了 rn startreactapplication 方法的执行过程,其中:

createreactcontext 的主要作用是:创建 reactcontext、创建 catalystinstance 实例,并将上述两者关联,接着通过 catalystinstance 读入 js 文件。

setupreactcontext的主要作用是:初始化所有原生模块,绘制所有 rootview,创建 ui 模块、js 模块和原生模块线程,并设置优先级。

到此这篇关于react native startreactapplication 方法简析的文章就介绍到这了,更多相关react native startreactapplication内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!