Skip to content

Commit

Permalink
Reapply "Roll Dart to f1ebe2b." (flutter#4809)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmacnak-google authored Mar 19, 2018
1 parent cc6b450 commit e3197ab
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 27 deletions.
4 changes: 2 additions & 2 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ vars = {
# Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
# You can use //tools/dart/create_updated_flutter_deps.py to produce
# updated revision list of existing dependencies.
'dart_revision': '7328726088065b53f40e02caae6fd73f94528e3e',
'dart_revision': 'f1ebe2bd5cfcb6b522e5b4fd406cdabb1a2d2091',

'dart_args_tag': '1.4.1',
'dart_async_tag': '2.0.6',
Expand Down Expand Up @@ -75,7 +75,7 @@ vars = {
'dart_plugin_tag': '0.2.0+2',
'dart_pool_tag': '1.3.4',
'dart_protobuf_tag': '0.7.1',
'dart_pub_rev': 'd2755745e88b63448d0adfbf2d04af9050f45ed3',
'dart_pub_rev': 'dbe8be2bb8bca9b26ba7bd583272c62f9a0153fd',
'dart_pub_semver_tag': '1.3.2',
'dart_quiver_tag': '5aaa3f58c48608af5b027444d561270b53f15dbf',
'dart_resource_rev': 'af5a5bf65511943398146cf146e466e5f0b95cb9',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ class WidgetCreatorTracker implements ProgramTransformer {
clazz.constructors.forEach(handleConstructor);
}

Program _computeFullProgram(Program deltaProgram) {
Component _computeFullProgram(Component deltaProgram) {
final Set<Library> libraries = new Set<Library>();
final List<Library> workList = <Library>[];
for (Library library in deltaProgram.libraries) {
Expand All @@ -434,15 +434,15 @@ class WidgetCreatorTracker implements ProgramTransformer {
}
}
}
return new Program()..libraries.addAll(libraries);
return new Component()..libraries.addAll(libraries);
}

/// Transform the given [program].
///
/// It is safe to call this method on a delta program generated as part of
/// performing a hot reload.
@override
void transform(Program program) {
void transform(Component program) {
final List<Library> libraries = program.libraries;

if (libraries.isEmpty) {
Expand Down
18 changes: 1 addition & 17 deletions runtime/dart_controller.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,29 +139,13 @@ bool DartController::SendStartMessage(Dart_Handle root_library,
return LogIfError(result);
}

static void CopyVectorBytes(const std::vector<uint8_t>& vector,
uint8_t*& bytes) {
bytes = (uint8_t*)malloc(vector.size());
memcpy(bytes, vector.data(), vector.size());
}

static void ReleaseFetchedBytes(uint8_t* buffer) {
free(buffer);
}

tonic::DartErrorHandleType DartController::RunFromKernel(
const std::vector<uint8_t>& kernel,
const std::string& entrypoint) {
tonic::DartState::Scope scope(dart_state());
tonic::DartErrorHandleType error = tonic::kNoError;
if (Dart_IsNull(Dart_RootLibrary())) {
// Copy kernel bytes and pass ownership of the copy to the Dart_LoadKernel,
// which is expected to release them.
uint8_t* kernel_bytes = nullptr;
CopyVectorBytes(kernel, kernel_bytes);

Dart_Handle result = Dart_LoadKernel(Dart_ReadKernelBinary(
kernel_bytes, kernel.size(), ReleaseFetchedBytes));
Dart_Handle result = Dart_LoadScriptFromKernel(kernel.data(), kernel.size());
LogIfError(result);
error = tonic::GetErrorHandleType(result);
}
Expand Down
6 changes: 2 additions & 4 deletions runtime/dart_init.cc
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,8 @@ Dart_Isolate IsolateCreateCallback(const char* script_uri,

if (!kernel_data.empty()) {
// We are running kernel code.
uint8_t* kernel_buf = static_cast<uint8_t*>(malloc(kernel_data.size()));
memcpy(kernel_buf, kernel_data.data(), kernel_data.size());
FXL_CHECK(!LogIfError(Dart_LoadKernel(Dart_ReadKernelBinary(
kernel_buf, kernel_data.size(), ReleaseFetchedBytes))));
FXL_CHECK(!LogIfError(Dart_LoadScriptFromKernel(kernel_data.data(),
kernel_data.size())));
} else if (!snapshot_data.empty()) {
// We are running from a script snapshot.
FXL_CHECK(!LogIfError(Dart_LoadScriptFromSnapshot(snapshot_data.data(),
Expand Down
2 changes: 1 addition & 1 deletion travis/licenses_golden/licenses_third_party
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Signature: 8002aa37a2e3a8073ba0bce943b9db6e
Signature: 80830a986974f5df1b4b7f0aa68fd1f8

UNUSED LICENSES:

Expand Down

0 comments on commit e3197ab

Please sign in to comment.