// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GIN_PER_ISOLATE_DATA_H_ #define GIN_PER_ISOLATE_DATA_H_ #include #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "gin/gin_export.h" #include "gin/public/v8_idle_task_runner.h" #include "gin/public/wrapper_info.h" #include "v8/include/v8.h" namespace base { class SingleThreadTaskRunner; } namespace gin { class IndexedPropertyInterceptor; class NamedPropertyInterceptor; class WrappableBase; // There is one instance of PerIsolateData per v8::Isolate managed by Gin. This // class stores all the Gin-related data that varies per isolate. class GIN_EXPORT PerIsolateData { public: PerIsolateData(v8::Isolate* isolate, v8::ArrayBuffer::Allocator* allocator); ~PerIsolateData(); static PerIsolateData* From(v8::Isolate* isolate); // Each isolate is associated with a collection of v8::ObjectTemplates and // v8::FunctionTemplates. Typically these template objects are created // lazily. void SetObjectTemplate(WrapperInfo* info, v8::Local object_template); void SetFunctionTemplate(WrapperInfo* info, v8::Local function_template); // These are low-level functions for retrieving object or function templates // stored in this object. Because these templates are often created lazily, // most clients should call higher-level functions that know how to populate // these templates if they haven't already been created. v8::Local GetObjectTemplate(WrapperInfo* info); v8::Local GetFunctionTemplate(WrapperInfo* info); // We maintain a map from Wrappable objects that derive from one of the // interceptor interfaces to the interceptor interface pointers. void SetIndexedPropertyInterceptor(WrappableBase* base, IndexedPropertyInterceptor* interceptor); void SetNamedPropertyInterceptor(WrappableBase* base, NamedPropertyInterceptor* interceptor); void ClearIndexedPropertyInterceptor(WrappableBase* base, IndexedPropertyInterceptor* interceptor); void ClearNamedPropertyInterceptor(WrappableBase* base, NamedPropertyInterceptor* interceptor); IndexedPropertyInterceptor* GetIndexedPropertyInterceptor( WrappableBase* base); NamedPropertyInterceptor* GetNamedPropertyInterceptor(WrappableBase* base); void EnableIdleTasks(scoped_ptr idle_task_runner); v8::Isolate* isolate() { return isolate_; } v8::ArrayBuffer::Allocator* allocator() { return allocator_; } base::SingleThreadTaskRunner* task_runner() { return task_runner_.get(); } V8IdleTaskRunner* idle_task_runner() { return idle_task_runner_.get(); } private: typedef std::map< WrapperInfo*, v8::Eternal > ObjectTemplateMap; typedef std::map< WrapperInfo*, v8::Eternal > FunctionTemplateMap; typedef std::map IndexedPropertyInterceptorMap; typedef std::map NamedPropertyInterceptorMap; // PerIsolateData doesn't actually own |isolate_|. Instead, the isolate is // owned by the IsolateHolder, which also owns the PerIsolateData. v8::Isolate* isolate_; v8::ArrayBuffer::Allocator* allocator_; ObjectTemplateMap object_templates_; FunctionTemplateMap function_templates_; IndexedPropertyInterceptorMap indexed_interceptors_; NamedPropertyInterceptorMap named_interceptors_; scoped_refptr task_runner_; scoped_ptr idle_task_runner_; DISALLOW_COPY_AND_ASSIGN(PerIsolateData); }; } // namespace gin #endif // GIN_PER_ISOLATE_DATA_H_