91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Flutter初始化流程是怎樣的

發布時間:2022-01-11 16:51:00 來源:億速云 閱讀:147 作者:iii 欄目:開發技術

本篇內容介紹了“Flutter初始化流程是怎樣的”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

Flutter初始化時序

Flutter初始化主要分四部分,FlutterMain初始化、FlutterNativeView的初始化、FlutterView初始化和Flutter Bundle初始化。

  • PlatformViewAndroid::PlatformViewAndroid()
        : PlatformView(std::make_unique<NullRasterizer>()),
          android_surface_(InitializePlatformSurface()) {}
    void PlatformViewAndroid::Attach() {
      CreateEngine();
      // Eagerly setup the IO thread context. We have already setup the surface.
      SetupResourceContextOnIOThread();
      UpdateThreadPriorities();
  • 其中:
    1. PlatformViewAndroid的構造函數主要是調用了InitializePlatformSurface方法,這個方法主要是初始化了Surface,其中Surface有Vulkan、OpenGL和Software三種類型的區別。
    2. PlatformViewAndroid::Attach方法這里主要調用三個方法:CreateEngine、SetupResourceContextOnIOThread和UpdateThreadPriorities。
    2.1 CreateEngine比較好理解,創建Engine,這里會重新創建一個Engine對象。
    2.2 SetupResourceContextOnIOThread是在IO線程去準備資源的上下文邏輯。
    2.3 UpdateThreadPriorities是設置線程優先級,這設置GPU線程優先級為-2,UI線程優先級為-1。

    FlutterView初始化

    FlutterView的初始化就是純粹的Android層啦,所以相對比較簡單。分析FlutterView.java的構造函數就會發現,整個FlutterView的初始化在確保FlutterNativeView的創建成功和一些必要的view設置之外,主要做了兩件事:
    1. 注冊SurfaceHolder監聽,其中surfaceCreated回調會作為Flutter的第一幀回調使用。
    2. 初始化了Flutter系統需要用到的一系列橋接方法。例如:localization、navigation、keyevent、system、settings、platform、textinput。
    FlutterView初始化流程主要如下圖所示:

    Flutter初始化流程是怎樣的


    Flutter Bundle初始化


    Flutter Bundle的初始化是由調用FlutterActivityDelegate.runFlutterBundle開始的

    我們再從源碼角度較為深入了解下:

    FlutterActivity的onCreate方法在執行完FlutterActivityDelegate的onCreate方法之后會調用它的runFlutterBundle方法。runFlutterBundle代碼如下:

    public void runFlutterBundle(){
        // other codes ...
        String appBundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext());
        if (appBundlePath != null) {
            flutterView.runFromBundle(appBundlePath, null, "main", reuseIsolate);
        }
    }

    很明顯,這個runFlutterBundle并沒有做太多事情,而且直接調用了FlutterView.runFromBundle方法。而后兜兜轉轉最后會調用到PlatformViewAndroid::RunBundleAndSnapshot方法。

    void PlatformViewAndroid::RunBundleAndSnapshot(JNIEnv* env, std::string bundle_path,
                                                   std::string snapshot_override,
                                                   std::string entrypoint,
                                                   bool reuse_runtime_controller,
                                                   jobject assetManager) {
      // other codes ...
      blink::Threads::UI()->PostTask(
          [engine = engine_->GetWeakPtr(),
           asset_provider = std::move(asset_provider),
           bundle_path = std::move(bundle_path), entrypoint = std::move(entrypoint),
           reuse_runtime_controller = reuse_runtime_controller] {
            if (engine)
              engine->RunBundleWithAssets(
                  std::move(asset_provider), std::move(bundle_path),
                  std::move(entrypoint), reuse_runtime_controller);
          });
    }

    PlatformViewAndroid::RunBundleAndSnapshot在UI線程中調用Engine::RunBundleWithAssets,最終調用Engine::DoRunBundle。
    DoRunBundle方法最后只會調用RunFromPrecompiledSnapshot、RunFromKernel和RunFromScriptSnapshot三個方法中的一個。而這三個方法最終都會調用SendStartMessage方法。

    bool DartController::SendStartMessage(Dart_Handle root_library,
                                          const std::string& entrypoint) {
      // other codes ...
      // Get the closure of main().
      Dart_Handle main_closure = Dart_GetClosure(
          root_library, Dart_NewStringFromCString(entrypoint.c_str()));
      // other codes ...
      // Grab the 'dart:isolate' library.
      Dart_Handle isolate_lib = Dart_LookupLibrary(ToDart("dart:isolate"));
      DART_CHECK_VALID(isolate_lib);
      // Send the start message containing the entry point by calling
      // _startMainIsolate in dart:isolate.
      const intptr_t kNumIsolateArgs = 2;
      Dart_Handle isolate_args[kNumIsolateArgs];
      isolate_args[0] = main_closure;
      isolate_args[1] = Dart_Null();
      Dart_Handle result = Dart_Invoke(isolate_lib, ToDart("_startMainIsolate"),
                                       kNumIsolateArgs, isolate_args);
      return LogIfError(result);
    }

    而SendStartMessage方法主要做了三件事:
    1. 獲取Flutter入口方法(例如main方法)的closure。
    2. 獲取FlutterLibrary。
    3. 發送消息來調用Flutter的入口方法。

“Flutter初始化流程是怎樣的”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万州区| 连山| 天祝| 鄯善县| 河源市| 黑河市| 纳雍县| 同江市| 保靖县| 从江县| 桂东县| 阳新县| 黎川县| 三门峡市| 额尔古纳市| 凤翔县| 钟山县| 临西县| 门源| 仁布县| 平塘县| 环江| 沧源| 连州市| 平和县| 高碑店市| 和政县| 舒城县| 平度市| 准格尔旗| 茌平县| 仲巴县| 光泽县| 昭通市| 建始县| 雅江县| 洱源县| 普定县| 灵寿县| 芒康县| 容城县|