blob: a2e1755ddaea95d1acf92f232d5535b18804f78d [file] [log] [blame]
kolczyk735c49b62014-10-24 13:06:041// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
[email protected]37dacfa2013-11-26 03:31:044
[email protected]b520e132013-11-29 03:21:485#ifndef GIN_FUNCTION_TEMPLATE_H_
6#define GIN_FUNCTION_TEMPLATE_H_
7
[email protected]314cde12013-11-23 20:26:518#include "base/callback.h"
9#include "base/logging.h"
10#include "gin/arguments.h"
11#include "gin/converter.h"
[email protected]48c21632013-12-12 21:32:3412#include "gin/gin_export.h"
[email protected]314cde12013-11-23 20:26:5113#include "v8/include/v8.h"
14
15namespace gin {
16
17class PerIsolateData;
18
[email protected]bf3dd3c2013-12-06 06:55:2519enum CreateFunctionTemplateFlags {
20 HolderIsFirstArgument = 1 << 0,
21};
22
[email protected]37dacfa2013-11-26 03:31:0423namespace internal {
24
[email protected]314cde12013-11-23 20:26:5125template<typename T>
[email protected]bf3dd3c2013-12-06 06:55:2526struct CallbackParamTraits {
27 typedef T LocalType;
[email protected]314cde12013-11-23 20:26:5128};
29template<typename T>
[email protected]bf3dd3c2013-12-06 06:55:2530struct CallbackParamTraits<const T&> {
31 typedef T LocalType;
32};
33template<typename T>
34struct CallbackParamTraits<const T*> {
35 typedef T* LocalType;
[email protected]314cde12013-11-23 20:26:5136};
37
[email protected]37dacfa2013-11-26 03:31:0438
39// CallbackHolder and CallbackHolderBase are used to pass a base::Callback from
40// CreateFunctionTemplate through v8 (via v8::FunctionTemplate) to
[email protected]81f8b91b2013-11-26 21:02:5141// DispatchToCallback, where it is invoked.
[email protected]6fe56102013-12-08 07:10:5842
43// This simple base class is used so that we can share a single object template
44// among every CallbackHolder instance.
[email protected]bf0142902014-02-11 15:06:1245class GIN_EXPORT CallbackHolderBase {
[email protected]b4acaf82013-12-12 09:40:5046 public:
[email protected]bf0142902014-02-11 15:06:1247 v8::Handle<v8::External> GetHandle(v8::Isolate* isolate);
48
[email protected]314cde12013-11-23 20:26:5149 protected:
[email protected]bf0142902014-02-11 15:06:1250 explicit CallbackHolderBase(v8::Isolate* isolate);
51 virtual ~CallbackHolderBase();
52
53 private:
54 static void WeakCallback(
55 const v8::WeakCallbackData<v8::External, CallbackHolderBase>& data);
56
57 v8::Persistent<v8::External> v8_ref_;
58
59 DISALLOW_COPY_AND_ASSIGN(CallbackHolderBase);
[email protected]314cde12013-11-23 20:26:5160};
61
[email protected]314cde12013-11-23 20:26:5162template<typename Sig>
63class CallbackHolder : public CallbackHolderBase {
64 public:
[email protected]bf0142902014-02-11 15:06:1265 CallbackHolder(v8::Isolate* isolate,
66 const base::Callback<Sig>& callback,
67 int flags)
68 : CallbackHolderBase(isolate), callback(callback), flags(flags) {}
[email protected]314cde12013-11-23 20:26:5169 base::Callback<Sig> callback;
[email protected]bf3dd3c2013-12-06 06:55:2570 int flags;
[email protected]314cde12013-11-23 20:26:5171 private:
[email protected]695af7f52013-12-11 19:41:0172 virtual ~CallbackHolder() {}
[email protected]bf0142902014-02-11 15:06:1273
74 DISALLOW_COPY_AND_ASSIGN(CallbackHolder);
[email protected]314cde12013-11-23 20:26:5175};
76
[email protected]bf3dd3c2013-12-06 06:55:2577template<typename T>
78bool GetNextArgument(Arguments* args, int create_flags, bool is_first,
79 T* result) {
80 if (is_first && (create_flags & HolderIsFirstArgument) != 0) {
81 return args->GetHolder(result);
82 } else {
83 return args->GetNext(result);
84 }
85}
86
87// For advanced use cases, we allow callers to request the unparsed Arguments
88// object and poke around in it directly.
89inline bool GetNextArgument(Arguments* args, int create_flags, bool is_first,
90 Arguments* result) {
91 *result = *args;
92 return true;
93}
[email protected]5b971af2014-01-06 22:20:5494inline bool GetNextArgument(Arguments* args, int create_flags, bool is_first,
95 Arguments** result) {
96 *result = args;
97 return true;
98}
[email protected]bf3dd3c2013-12-06 06:55:2599
[email protected]2491f142013-12-21 17:54:37100// It's common for clients to just need the isolate, so we make that easy.
101inline bool GetNextArgument(Arguments* args, int create_flags,
102 bool is_first, v8::Isolate** result) {
103 *result = args->isolate();
104 return true;
105}
106
kolczyk735c49b62014-10-24 13:06:04107// Classes for generating and storing an argument pack of integer indices
108// (based on well-known "indices trick", see: http://goo.gl/bKKojn):
109template <size_t... indices>
110struct IndicesHolder {};
111
112template <size_t requested_index, size_t... indices>
113struct IndicesGenerator {
114 using type = typename IndicesGenerator<requested_index - 1,
115 requested_index - 1,
116 indices...>::type;
117};
118template <size_t... indices>
119struct IndicesGenerator<0, indices...> {
120 using type = IndicesHolder<indices...>;
121};
122
123// Class template for extracting and storing single argument for callback
124// at position |index|.
125template <size_t index, typename ArgType>
126struct ArgumentHolder {
127 using ArgLocalType = typename CallbackParamTraits<ArgType>::LocalType;
128
129 ArgLocalType value;
130 bool ok;
131
132 ArgumentHolder(Arguments* args, int create_flags)
133 : ok(GetNextArgument(args, create_flags, index == 0, &value)) {
eseidel2584930f2014-12-15 22:06:44134 if (!ok) {
135 // Ideally we would include the expected c++ type in the error
136 // message which we can access via typeid(ArgType).name()
137 // however we compile with no-rtti, which disables typeid.
kolczyk735c49b62014-10-24 13:06:04138 args->ThrowError();
eseidel2584930f2014-12-15 22:06:44139 }
kolczyk735c49b62014-10-24 13:06:04140 }
141};
142
143// Class template for converting arguments from JavaScript to C++ and running
144// the callback with them.
145template <typename IndicesType, typename... ArgTypes>
146class Invoker {};
147
148template <size_t... indices, typename... ArgTypes>
149class Invoker<IndicesHolder<indices...>, ArgTypes...>
150 : public ArgumentHolder<indices, ArgTypes>... {
151 public:
152 // Invoker<> inherits from ArgumentHolder<> for each argument.
153 // C++ has always been strict about the class initialization order,
154 // so it is guaranteed ArgumentHolders will be initialized (and thus, will
155 // extract arguments from Arguments) in the right order.
156 Invoker(Arguments* args, int create_flags)
cmasonea34136a2014-11-01 00:10:47157 : ArgumentHolder<indices, ArgTypes>(args, create_flags)..., args_(args) {
158 // GCC thinks that create_flags is going unused, even though the
159 // expansion above clearly makes use of it. Per jyasskin@, casting
160 // to void is the commonly accepted way to convince the compiler
161 // that you're actually using a parameter/varible.
162 (void)create_flags;
163 }
kolczyk735c49b62014-10-24 13:06:04164
165 bool IsOK() {
166 return And(ArgumentHolder<indices, ArgTypes>::ok...);
167 }
168
169 template <typename ReturnType>
170 void DispatchToCallback(base::Callback<ReturnType(ArgTypes...)> callback) {
171 args_->Return(callback.Run(ArgumentHolder<indices, ArgTypes>::value...));
172 }
173
174 // In C++, you can declare the function foo(void), but you can't pass a void
175 // expression to foo. As a result, we must specialize the case of Callbacks
176 // that have the void return type.
177 void DispatchToCallback(base::Callback<void(ArgTypes...)> callback) {
178 callback.Run(ArgumentHolder<indices, ArgTypes>::value...);
179 }
180
181 private:
182 static bool And() { return true; }
183 template <typename... T>
184 static bool And(bool arg1, T... args) {
185 return arg1 && And(args...);
186 }
187
188 Arguments* args_;
189};
[email protected]bf3dd3c2013-12-06 06:55:25190
[email protected]81f8b91b2013-11-26 21:02:51191// DispatchToCallback converts all the JavaScript arguments to C++ types and
192// invokes the base::Callback.
kolczyk735c49b62014-10-24 13:06:04193template <typename Sig>
194struct Dispatcher {};
[email protected]bf3dd3c2013-12-06 06:55:25195
kolczyk735c49b62014-10-24 13:06:04196template <typename ReturnType, typename... ArgTypes>
197struct Dispatcher<ReturnType(ArgTypes...)> {
[email protected]bf3dd3c2013-12-06 06:55:25198 static void DispatchToCallback(
199 const v8::FunctionCallbackInfo<v8::Value>& info) {
200 Arguments args(info);
[email protected]bf0142902014-02-11 15:06:12201 v8::Handle<v8::External> v8_holder;
202 CHECK(args.GetData(&v8_holder));
203 CallbackHolderBase* holder_base = reinterpret_cast<CallbackHolderBase*>(
204 v8_holder->Value());
[email protected]314cde12013-11-23 20:26:51205
kolczyk735c49b62014-10-24 13:06:04206 typedef CallbackHolder<ReturnType(ArgTypes...)> HolderT;
[email protected]bf3dd3c2013-12-06 06:55:25207 HolderT* holder = static_cast<HolderT*>(holder_base);
[email protected]37dacfa2013-11-26 03:31:04208
kolczyk735c49b62014-10-24 13:06:04209 using Indices = typename IndicesGenerator<sizeof...(ArgTypes)>::type;
210 Invoker<Indices, ArgTypes...> invoker(&args, holder->flags);
211 if (invoker.IsOK())
212 invoker.DispatchToCallback(holder->callback);
[email protected]d73341d12013-12-21 00:48:46213 }
214};
215
[email protected]81f8b91b2013-11-26 21:02:51216} // namespace internal
217
218
[email protected]bf3dd3c2013-12-06 06:55:25219// CreateFunctionTemplate creates a v8::FunctionTemplate that will create
220// JavaScript functions that execute a provided C++ function or base::Callback.
221// JavaScript arguments are automatically converted via gin::Converter, as is
222// the return value of the C++ function, if any.
mnaganov098ba6f2015-03-03 16:34:48223//
224// NOTE: V8 caches FunctionTemplates for a lifetime of a web page for its own
225// internal reasons, thus it is generally a good idea to cache the template
226// returned by this function. Otherwise, repeated method invocations from JS
227// will create substantial memory leaks. See http://crbug.com/463487.
[email protected]bf3dd3c2013-12-06 06:55:25228template<typename Sig>
[email protected]81f8b91b2013-11-26 21:02:51229v8::Local<v8::FunctionTemplate> CreateFunctionTemplate(
[email protected]bf3dd3c2013-12-06 06:55:25230 v8::Isolate* isolate, const base::Callback<Sig> callback,
231 int callback_flags = 0) {
232 typedef internal::CallbackHolder<Sig> HolderT;
[email protected]bf0142902014-02-11 15:06:12233 HolderT* holder = new HolderT(isolate, callback, callback_flags);
234
[email protected]81f8b91b2013-11-26 21:02:51235 return v8::FunctionTemplate::New(
[email protected]505ffde2013-12-19 15:47:13236 isolate,
[email protected]bf3dd3c2013-12-06 06:55:25237 &internal::Dispatcher<Sig>::DispatchToCallback,
[email protected]bf0142902014-02-11 15:06:12238 ConvertToV8<v8::Handle<v8::External> >(isolate,
239 holder->GetHandle(isolate)));
[email protected]7618ebbb2013-11-27 03:38:26240}
241
[email protected]777183d02014-03-10 12:55:19242// CreateFunctionHandler installs a CallAsFunction handler on the given
243// object template that forwards to a provided C++ function or base::Callback.
244template<typename Sig>
245void CreateFunctionHandler(v8::Isolate* isolate,
246 v8::Local<v8::ObjectTemplate> tmpl,
247 const base::Callback<Sig> callback,
248 int callback_flags = 0) {
249 typedef internal::CallbackHolder<Sig> HolderT;
250 HolderT* holder = new HolderT(isolate, callback, callback_flags);
251 tmpl->SetCallAsFunctionHandler(&internal::Dispatcher<Sig>::DispatchToCallback,
252 ConvertToV8<v8::Handle<v8::External> >(
253 isolate, holder->GetHandle(isolate)));
254}
255
[email protected]314cde12013-11-23 20:26:51256} // namespace gin
[email protected]b520e132013-11-29 03:21:48257
258#endif // GIN_FUNCTION_TEMPLATE_H_