a37d042e68
TEST=manual Issue: https://github.com/dart-lang/sdk/issues/61635 Change-Id: I27f712d9687d45a09173b1018bc08812dd18658e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/460580 Reviewed-by: Slava Egorov <vegorov@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com> Commit-Queue: Alexander Markov <alexmarkov@google.com>
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "bin/isolate_data.h"
|
|
#include "bin/snapshot_utils.h"
|
|
#include "platform/growable_array.h"
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
IsolateGroupData::IsolateGroupData(const char* url,
|
|
const char* asset_resolution_base,
|
|
const char* packages_file,
|
|
AppSnapshot* app_snapshot,
|
|
bool isolate_run_app_snapshot)
|
|
: script_url((url != nullptr) ? Utils::StrDup(url) : nullptr),
|
|
asset_resolution_base((asset_resolution_base != nullptr)
|
|
? Utils::StrDup(asset_resolution_base)
|
|
: nullptr),
|
|
app_snapshot_(app_snapshot),
|
|
resolved_packages_config_(nullptr),
|
|
kernel_buffer_(nullptr),
|
|
kernel_buffer_size_(0),
|
|
isolate_run_app_snapshot_(isolate_run_app_snapshot) {
|
|
if (packages_file != nullptr) {
|
|
packages_file_ = Utils::StrDup(packages_file);
|
|
}
|
|
}
|
|
|
|
IsolateGroupData::~IsolateGroupData() {
|
|
for (intptr_t i = 0; i < loaded_snapshots_.length(); i++) {
|
|
delete loaded_snapshots_[i];
|
|
}
|
|
free(script_url);
|
|
free(asset_resolution_base);
|
|
script_url = nullptr;
|
|
free(packages_file_);
|
|
packages_file_ = nullptr;
|
|
free(resolved_packages_config_);
|
|
resolved_packages_config_ = nullptr;
|
|
kernel_buffer_ = nullptr;
|
|
kernel_buffer_size_ = 0;
|
|
}
|
|
|
|
IsolateData::IsolateData(IsolateGroupData* isolate_group_data)
|
|
: isolate_group_data_(isolate_group_data),
|
|
loader_(nullptr),
|
|
packages_file_(nullptr) {
|
|
if (isolate_group_data->packages_file_ != nullptr) {
|
|
packages_file_ = Utils::StrDup(isolate_group_data->packages_file_);
|
|
}
|
|
}
|
|
|
|
IsolateData::~IsolateData() {
|
|
free(packages_file_);
|
|
packages_file_ = nullptr;
|
|
}
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|