#ifndef GIN_RUNNER_H_
#define GIN_RUNNER_H_
#include <string>
#include "base/memory/weak_ptr.h"
#include "gin/gin_export.h"
#include "gin/public/context_holder.h"
#include "v8/include/v8-forward.h"
#include "v8/include/v8-isolate.h"
namespace gin {
class GIN_EXPORT Runner {
public:
Runner();
Runner(const Runner&) = delete;
Runner& operator=(const Runner&) = delete;
virtual ~Runner();
virtual v8::MaybeLocal<v8::Value> Run(const std::string& source,
const std::string& resource_name) = 0;
virtual ContextHolder* GetContextHolder() = 0;
v8::Local<v8::Object> global() {
return GetContextHolder()->context()->Global();
}
base::WeakPtr<Runner> GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}
class GIN_EXPORT Scope {
public:
explicit Scope(Runner* runner);
Scope(const Scope&) = delete;
Scope& operator=(const Scope&) = delete;
~Scope();
private:
v8::Isolate::Scope isolate_scope_;
v8::HandleScope handle_scope_;
v8::Context::Scope scope_;
};
private:
friend class Scope;
base::WeakPtrFactory<Runner> weak_factory_{this};
};
}
#endif