mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL adds the ability to load Dart snapshot files created by sky_packager in Sky. Using a snapshot lets us transmit all the code for an app in a single blob and should improve startup time. Later CLs will make this codepath easier to use and evaluate performance. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1197133004.
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "sky/tools/packager/vm.h"
|
|
|
|
#include "base/logging.h"
|
|
#include "sky/tools/packager/loader.h"
|
|
#include "sky/tools/packager/logging.h"
|
|
|
|
namespace blink {
|
|
extern const uint8_t* kDartVmIsolateSnapshotBuffer;
|
|
extern const uint8_t* kDartIsolateSnapshotBuffer;
|
|
}
|
|
|
|
void InitDartVM() {
|
|
int argc = 0;
|
|
const char** argv = nullptr;
|
|
|
|
CHECK(Dart_SetVMFlags(argc, argv));
|
|
CHECK(Dart_Initialize(blink::kDartVmIsolateSnapshotBuffer, nullptr, nullptr,
|
|
nullptr, nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
nullptr));
|
|
}
|
|
|
|
Dart_Isolate CreateDartIsolate() {
|
|
CHECK(blink::kDartIsolateSnapshotBuffer);
|
|
char* error = nullptr;
|
|
Dart_Isolate isolate = Dart_CreateIsolate("dart:snapshot", "main",
|
|
blink::kDartIsolateSnapshotBuffer,
|
|
nullptr, nullptr, &error);
|
|
|
|
CHECK(isolate) << error;
|
|
CHECK(!LogIfError(Dart_SetLibraryTagHandler(HandleLibraryTag)));
|
|
|
|
Dart_ExitIsolate();
|
|
return isolate;
|
|
}
|