2018-06-27 21:06:08 +00:00
|
|
|
// Copyright (c) 2018 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_COMMON_PROMISE_UTIL_H_
|
|
|
|
#define ATOM_COMMON_PROMISE_UTIL_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2019-01-15 17:54:59 +00:00
|
|
|
#include "atom/common/api/locker.h"
|
2019-02-18 14:25:28 +00:00
|
|
|
#include "atom/common/native_mate_converters/callback.h"
|
2018-06-27 21:06:08 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
#include "native_mate/converter.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace util {
|
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
// A wrapper around the v8::Promise.
|
|
|
|
//
|
|
|
|
// This is a move-only type that should always be `std::move`d when passed to
|
|
|
|
// callbacks, and it should be destroyed on the same thread of creation.
|
|
|
|
class Promise {
|
2018-06-27 21:06:08 +00:00
|
|
|
public:
|
2019-02-21 12:32:44 +00:00
|
|
|
// Create a new promise.
|
2018-06-28 21:20:11 +00:00
|
|
|
explicit Promise(v8::Isolate* isolate);
|
2018-06-27 21:06:08 +00:00
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
// Wrap an existing v8 promise.
|
|
|
|
Promise(v8::Isolate* isolate, v8::Local<v8::Promise::Resolver> handle);
|
|
|
|
|
|
|
|
~Promise();
|
|
|
|
|
|
|
|
// Support moving.
|
|
|
|
Promise(Promise&&);
|
|
|
|
Promise& operator=(Promise&&);
|
|
|
|
|
2018-06-27 21:06:08 +00:00
|
|
|
v8::Isolate* isolate() const { return isolate_; }
|
2019-01-15 17:54:59 +00:00
|
|
|
v8::Local<v8::Context> GetContext() {
|
|
|
|
return v8::Local<v8::Context>::New(isolate_, context_);
|
|
|
|
}
|
2018-06-27 21:06:08 +00:00
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Local<v8::Promise> GetHandle() const;
|
2018-06-27 21:06:08 +00:00
|
|
|
|
|
|
|
v8::Maybe<bool> Resolve() {
|
2019-01-15 17:54:59 +00:00
|
|
|
v8::HandleScope handle_scope(isolate());
|
|
|
|
v8::MicrotasksScope script_scope(isolate(),
|
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
|
|
|
v8::Context::Scope context_scope(
|
|
|
|
v8::Local<v8::Context>::New(isolate(), GetContext()));
|
|
|
|
|
|
|
|
return GetInner()->Resolve(GetContext(), v8::Undefined(isolate()));
|
2018-06-27 21:06:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
v8::Maybe<bool> Reject() {
|
2019-01-15 17:54:59 +00:00
|
|
|
v8::HandleScope handle_scope(isolate());
|
|
|
|
v8::MicrotasksScope script_scope(isolate(),
|
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
|
|
|
v8::Context::Scope context_scope(
|
|
|
|
v8::Local<v8::Context>::New(isolate(), GetContext()));
|
|
|
|
|
|
|
|
return GetInner()->Reject(GetContext(), v8::Undefined(isolate()));
|
2018-06-27 21:06:08 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 21:46:59 +00:00
|
|
|
template <typename ReturnType, typename... ArgTypes>
|
|
|
|
v8::MaybeLocal<v8::Promise> Then(base::Callback<ReturnType(ArgTypes...)> cb) {
|
2019-02-18 14:25:28 +00:00
|
|
|
v8::HandleScope handle_scope(isolate());
|
|
|
|
v8::Context::Scope context_scope(
|
|
|
|
v8::Local<v8::Context>::New(isolate(), GetContext()));
|
|
|
|
|
|
|
|
v8::Local<v8::Value> value = mate::ConvertToV8(isolate(), cb);
|
|
|
|
v8::Local<v8::Function> handler = v8::Local<v8::Function>::Cast(value);
|
|
|
|
|
|
|
|
return GetHandle()->Then(GetContext(), handler);
|
|
|
|
}
|
|
|
|
|
2018-10-15 15:26:47 +00:00
|
|
|
// Promise resolution is a microtask
|
|
|
|
// We use the MicrotasksRunner to trigger the running of pending microtasks
|
2018-06-27 21:06:08 +00:00
|
|
|
template <typename T>
|
2018-09-27 14:59:23 +00:00
|
|
|
v8::Maybe<bool> Resolve(const T& value) {
|
2019-01-15 17:54:59 +00:00
|
|
|
v8::HandleScope handle_scope(isolate());
|
|
|
|
v8::MicrotasksScope script_scope(isolate(),
|
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
|
|
|
v8::Context::Scope context_scope(
|
|
|
|
v8::Local<v8::Context>::New(isolate(), GetContext()));
|
|
|
|
|
|
|
|
return GetInner()->Resolve(GetContext(),
|
2018-06-27 21:06:08 +00:00
|
|
|
mate::ConvertToV8(isolate(), value));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2018-09-27 14:59:23 +00:00
|
|
|
v8::Maybe<bool> Reject(const T& value) {
|
2019-01-15 17:54:59 +00:00
|
|
|
v8::HandleScope handle_scope(isolate());
|
|
|
|
v8::MicrotasksScope script_scope(isolate(),
|
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
|
|
|
v8::Context::Scope context_scope(
|
|
|
|
v8::Local<v8::Context>::New(isolate(), GetContext()));
|
|
|
|
|
|
|
|
return GetInner()->Reject(GetContext(),
|
2018-06-27 21:06:08 +00:00
|
|
|
mate::ConvertToV8(isolate(), value));
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Maybe<bool> RejectWithErrorMessage(const std::string& error);
|
|
|
|
|
|
|
|
private:
|
2019-02-21 12:32:44 +00:00
|
|
|
friend class CopyablePromise;
|
|
|
|
|
2018-06-27 21:06:08 +00:00
|
|
|
v8::Local<v8::Promise::Resolver> GetInner() const {
|
|
|
|
return resolver_.Get(isolate());
|
|
|
|
}
|
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Isolate* isolate_;
|
|
|
|
v8::Global<v8::Context> context_;
|
2018-06-27 21:06:08 +00:00
|
|
|
v8::Global<v8::Promise::Resolver> resolver_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Promise);
|
|
|
|
};
|
|
|
|
|
2019-02-21 12:32:44 +00:00
|
|
|
// A wrapper of Promise that can be copied.
|
|
|
|
//
|
|
|
|
// This class should only be used when we have to pass Promise to a Chromium API
|
|
|
|
// that does not take OnceCallback.
|
|
|
|
class CopyablePromise {
|
|
|
|
public:
|
|
|
|
explicit CopyablePromise(const Promise& promise);
|
|
|
|
CopyablePromise(const CopyablePromise&);
|
|
|
|
~CopyablePromise();
|
|
|
|
|
|
|
|
Promise GetPromise() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
using CopyablePersistent =
|
|
|
|
v8::CopyablePersistentTraits<v8::Promise::Resolver>::CopyablePersistent;
|
|
|
|
|
|
|
|
v8::Isolate* isolate_;
|
|
|
|
CopyablePersistent handle_;
|
|
|
|
};
|
|
|
|
|
2018-06-27 21:06:08 +00:00
|
|
|
} // namespace util
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
template <>
|
2019-02-21 12:32:44 +00:00
|
|
|
struct Converter<atom::util::Promise> {
|
2018-06-27 21:06:08 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2019-02-21 12:32:44 +00:00
|
|
|
const atom::util::Promise& val);
|
2018-06-27 21:06:08 +00:00
|
|
|
// TODO(MarshallOfSound): Implement FromV8 to allow promise chaining
|
|
|
|
// in native land
|
|
|
|
// static bool FromV8(v8::Isolate* isolate,
|
|
|
|
// v8::Local<v8::Value> val,
|
|
|
|
// Promise* out);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
|
|
|
#endif // ATOM_COMMON_PROMISE_UTIL_H_
|