blob: 2b8a50b2e585855ec2887ae4da10fde2778d136a [file] [log] [blame]
// Copyright 2015 The Fuchsia 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 "tonic/dart_state.h"
#include "tonic/converter/dart_converter.h"
#include "tonic/dart_class_library.h"
#include "tonic/dart_message_handler.h"
#include "tonic/file_loader/file_loader.h"
namespace tonic {
DartState::Scope::Scope(DartState *dart_state)
: scope_(dart_state->isolate()) {}
DartState::Scope::~Scope() {}
DartState::DartState(int dirfd)
: isolate_(nullptr), class_library_(new DartClassLibrary),
message_handler_(new DartMessageHandler()),
file_loader_(new FileLoader(dirfd)) {}
DartState::~DartState() {}
void DartState::SetIsolate(Dart_Isolate isolate) {
isolate_ = isolate;
if (!isolate_)
return;
DidSetIsolate();
}
DartState *DartState::From(Dart_Isolate isolate) {
return static_cast<DartState *>(Dart_IsolateData(isolate));
}
DartState *DartState::Current() {
return static_cast<DartState *>(Dart_CurrentIsolateData());
}
std::weak_ptr<DartState> DartState::GetWeakPtr() { return shared_from_this(); }
void DartState::SetReturnCode(uint32_t return_code) {
if (set_return_code_callback_) {
set_return_code_callback_(return_code);
}
has_set_return_code_ = true;
}
void DartState::SetReturnCodeCallback(std::function<void(uint32_t)> callback) {
set_return_code_callback_ = callback;
}
void DartState::DidSetIsolate() {}
Dart_Handle DartState::HandleLibraryTag(Dart_LibraryTag tag,
Dart_Handle library, Dart_Handle url) {
return Current()->file_loader().HandleLibraryTag(tag, library, url);
}
} // namespace tonic