blob: 503392fe630475cb41ecfc11bf939cb25ec12253 [file] [log] [blame]
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07001// Copyright 2014 PDFium 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.
Lei Zhanga6d9f0e2015-06-13 00:48:38 -07004
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07005// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
dsinclair64376be2016-03-31 20:03:24 -07007#include "fpdfsdk/javascript/cjs_runtime.h"
Tom Sepez37458412015-10-06 11:33:46 -07008
tsepez41a53ad2016-03-28 16:59:30 -07009#include <algorithm>
10
dsinclair64376be2016-03-31 20:03:24 -070011#include "fpdfsdk/include/fsdk_mgr.h"
Dan Sinclairf766ad22016-03-14 13:51:24 -040012#include "fpdfsdk/javascript/Consts.h"
13#include "fpdfsdk/javascript/Document.h"
14#include "fpdfsdk/javascript/Field.h"
15#include "fpdfsdk/javascript/Icon.h"
Dan Sinclairf766ad22016-03-14 13:51:24 -040016#include "fpdfsdk/javascript/JS_Define.h"
17#include "fpdfsdk/javascript/JS_EventHandler.h"
18#include "fpdfsdk/javascript/JS_GlobalData.h"
19#include "fpdfsdk/javascript/JS_Object.h"
20#include "fpdfsdk/javascript/JS_Value.h"
21#include "fpdfsdk/javascript/PublicMethods.h"
22#include "fpdfsdk/javascript/app.h"
dsinclair89bdd082016-04-06 10:47:54 -070023#include "fpdfsdk/javascript/cjs_context.h"
Dan Sinclairf766ad22016-03-14 13:51:24 -040024#include "fpdfsdk/javascript/color.h"
25#include "fpdfsdk/javascript/console.h"
26#include "fpdfsdk/javascript/event.h"
27#include "fpdfsdk/javascript/global.h"
28#include "fpdfsdk/javascript/report.h"
29#include "fpdfsdk/javascript/util.h"
Lei Zhangcd2bb302015-12-22 13:49:44 -080030#include "third_party/base/stl_util.h"
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070031
Tom Sepez40e9ff32015-11-30 12:39:54 -080032#ifdef PDF_ENABLE_XFA
dsinclair89bdd082016-04-06 10:47:54 -070033#include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h"
Dan Sinclair1770c022016-03-14 14:14:16 -040034#include "xfa/fxjse/value.h"
Tom Sepez40e9ff32015-11-30 12:39:54 -080035#endif // PDF_ENABLE_XFA
36
Tom Sepez67fd5df2015-10-08 12:24:19 -070037// static
Tom Sepez452b4f32015-10-13 09:27:27 -070038void IJS_Runtime::Initialize(unsigned int slot, void* isolate) {
39 FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate));
40}
41
42// static
Tom Sepezba038bc2015-10-08 12:03:00 -070043IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) {
Tom Sepez37458412015-10-06 11:33:46 -070044 return new CJS_Runtime(pEnv);
45}
46
Tom Sepez67fd5df2015-10-08 12:24:19 -070047// static
48CJS_Runtime* CJS_Runtime::FromContext(const IJS_Context* cc) {
49 const CJS_Context* pContext = static_cast<const CJS_Context*>(cc);
50 return pContext->GetJSRuntime();
51}
52
Nico Weber9d8ec5a2015-08-04 13:00:21 -070053CJS_Runtime::CJS_Runtime(CPDFDoc_Environment* pApp)
54 : m_pApp(pApp),
thestig1cd352e2016-06-07 17:53:06 -070055 m_pDocument(nullptr),
Nico Weber9d8ec5a2015-08-04 13:00:21 -070056 m_bBlocking(FALSE),
thestig1cd352e2016-06-07 17:53:06 -070057 m_isolate(nullptr),
Jochen Eisinger29007842015-08-05 09:02:13 +020058 m_isolateManaged(false) {
Tom Sepez51da0932015-11-25 16:05:49 -080059#ifndef PDF_ENABLE_XFA
60 IPDF_JSPLATFORM* pPlatform = m_pApp->GetFormFillInfo()->m_pJsPlatform;
61 if (pPlatform->version <= 2) {
62 unsigned int embedderDataSlot = 0;
63 v8::Isolate* pExternalIsolate = nullptr;
64 if (pPlatform->version == 2) {
65 pExternalIsolate = reinterpret_cast<v8::Isolate*>(pPlatform->m_isolate);
66 embedderDataSlot = pPlatform->m_v8EmbedderSlot;
67#else
Nico Weber9d8ec5a2015-08-04 13:00:21 -070068 if (CPDFXFA_App::GetInstance()->GetJSERuntime()) {
69 // TODO(tsepez): CPDFXFA_App should also use the embedder provided isolate.
70 m_isolate = (v8::Isolate*)CPDFXFA_App::GetInstance()->GetJSERuntime();
Tom Sepeza72e8e22015-10-07 10:17:53 -070071 } else {
72 IPDF_JSPLATFORM* pPlatform = m_pApp->GetFormFillInfo()->m_pJsPlatform;
73 if (pPlatform->version <= 2) {
74 unsigned int embedderDataSlot = 0;
75 v8::Isolate* pExternalIsolate = nullptr;
76 if (pPlatform->version == 2) {
77 pExternalIsolate = reinterpret_cast<v8::Isolate*>(pPlatform->m_isolate);
78 embedderDataSlot = pPlatform->m_v8EmbedderSlot;
79 }
80 FXJS_Initialize(embedderDataSlot, pExternalIsolate);
Tom Sepez51da0932015-11-25 16:05:49 -080081#endif
Tom Sepeza72e8e22015-10-07 10:17:53 -070082 }
Tom Sepez51da0932015-11-25 16:05:49 -080083#ifndef PDF_ENABLE_XFA
84 FXJS_Initialize(embedderDataSlot, pExternalIsolate);
85#else
Tom Sepeza72e8e22015-10-07 10:17:53 -070086 m_isolateManaged = FXJS_GetIsolate(&m_isolate);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070087 }
Tom Sepezd2cc1b92015-04-30 15:19:03 -070088
Nico Weber9d8ec5a2015-08-04 13:00:21 -070089 v8::Isolate* isolate = m_isolate;
90 v8::Isolate::Scope isolate_scope(isolate);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070091 v8::HandleScope handle_scope(isolate);
Tom Sepezed7b2b52015-09-22 08:36:17 -070092 if (CPDFXFA_App::GetInstance()->IsJavaScriptInitialized()) {
Nico Weber9d8ec5a2015-08-04 13:00:21 -070093 CJS_Context* pContext = (CJS_Context*)NewContext();
Tom Sepez4237aed2015-11-10 15:19:17 -080094 FXJS_InitializeRuntime(GetIsolate(), this, &m_context, &m_StaticObjects);
Tom Sepez2f2ffec2015-07-23 14:42:09 -070095 ReleaseContext(pContext);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070096 return;
Tom Sepez51da0932015-11-25 16:05:49 -080097#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -070098 }
Tom Sepez51da0932015-11-25 16:05:49 -080099#ifndef PDF_ENABLE_XFA
100 m_isolateManaged = FXJS_GetIsolate(&m_isolate);
101#else
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700102
Tom Sepez51da0932015-11-25 16:05:49 -0800103#endif
Lei Zhang3fa115b2015-10-08 12:04:47 -0700104 if (m_isolateManaged || FXJS_GlobalIsolateRefCount() == 0)
105 DefineJSObjects();
106
Tom Sepez51da0932015-11-25 16:05:49 -0800107#ifdef PDF_ENABLE_XFA
Tom Sepezed7b2b52015-09-22 08:36:17 -0700108 CPDFXFA_App::GetInstance()->SetJavaScriptInitialized(TRUE);
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700109
Tom Sepez51da0932015-11-25 16:05:49 -0800110#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700111 CJS_Context* pContext = (CJS_Context*)NewContext();
Tom Sepez4237aed2015-11-10 15:19:17 -0800112 FXJS_InitializeRuntime(GetIsolate(), this, &m_context, &m_StaticObjects);
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700113 ReleaseContext(pContext);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700114}
115
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700116CJS_Runtime::~CJS_Runtime() {
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700117 for (auto* obs : m_observers)
118 obs->OnDestroyed();
119
tsepez41a53ad2016-03-28 16:59:30 -0700120 m_ContextArray.clear();
Tom Sepez297b5152016-03-04 13:43:46 -0800121 m_ConstArrays.clear();
Tom Sepez51da0932015-11-25 16:05:49 -0800122 FXJS_ReleaseRuntime(GetIsolate(), &m_context, &m_StaticObjects);
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700123 m_context.Reset();
Jochen Eisinger29007842015-08-05 09:02:13 +0200124 if (m_isolateManaged)
125 m_isolate->Dispose();
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700126}
127
Tom Sepez142165e2015-09-11 13:21:50 -0700128void CJS_Runtime::DefineJSObjects() {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700129 v8::Isolate::Scope isolate_scope(GetIsolate());
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700130 v8::HandleScope handle_scope(GetIsolate());
131 v8::Local<v8::Context> context = v8::Context::New(GetIsolate());
132 v8::Context::Scope context_scope(context);
Tom Sepez570875c2015-09-11 08:35:03 -0700133
134 // The call order determines the "ObjDefID" assigned to each class.
135 // ObjDefIDs 0 - 2
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700136 CJS_Border::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
137 CJS_Display::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
138 CJS_Font::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700139
Tom Sepez570875c2015-09-11 08:35:03 -0700140 // ObjDefIDs 3 - 5
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700141 CJS_Highlight::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
142 CJS_Position::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
143 CJS_ScaleHow::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700144
Tom Sepez570875c2015-09-11 08:35:03 -0700145 // ObjDefIDs 6 - 8
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700146 CJS_ScaleWhen::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
147 CJS_Style::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
148 CJS_Zoomtype::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700149
Tom Sepez570875c2015-09-11 08:35:03 -0700150 // ObjDefIDs 9 - 11
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700151 CJS_App::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
152 CJS_Color::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
153 CJS_Console::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700154
Tom Sepez570875c2015-09-11 08:35:03 -0700155 // ObjDefIDs 12 - 14
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700156 CJS_Document::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_GLOBAL);
157 CJS_Event::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
158 CJS_Field::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700159
Tom Sepez570875c2015-09-11 08:35:03 -0700160 // ObjDefIDs 15 - 17
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700161 CJS_Global::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
162 CJS_Icon::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
163 CJS_Util::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
Tom Sepez570875c2015-09-11 08:35:03 -0700164
Tom Sepez142165e2015-09-11 13:21:50 -0700165 // ObjDefIDs 18 - 20 (these can't fail, return void).
166 CJS_PublicMethods::DefineJSObjects(GetIsolate());
Tom Sepez67fd5df2015-10-08 12:24:19 -0700167 CJS_GlobalConsts::DefineJSObjects(this);
168 CJS_GlobalArrays::DefineJSObjects(this);
Tom Sepez570875c2015-09-11 08:35:03 -0700169
Tom Sepez142165e2015-09-11 13:21:50 -0700170 // ObjDefIDs 21 - 22.
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700171 CJS_TimerObj::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
172 CJS_PrintParamsObj::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700173}
174
Tom Sepezba038bc2015-10-08 12:03:00 -0700175IJS_Context* CJS_Runtime::NewContext() {
tsepez41a53ad2016-03-28 16:59:30 -0700176 m_ContextArray.push_back(std::unique_ptr<CJS_Context>(new CJS_Context(this)));
177 return m_ContextArray.back().get();
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700178}
179
Tom Sepezba038bc2015-10-08 12:03:00 -0700180void CJS_Runtime::ReleaseContext(IJS_Context* pContext) {
tsepez41a53ad2016-03-28 16:59:30 -0700181 for (auto it = m_ContextArray.begin(); it != m_ContextArray.end(); ++it) {
182 if (it->get() == static_cast<CJS_Context*>(pContext)) {
183 m_ContextArray.erase(it);
184 return;
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700185 }
186 }
187}
188
Tom Sepezba038bc2015-10-08 12:03:00 -0700189IJS_Context* CJS_Runtime::GetCurrentContext() {
tsepez41a53ad2016-03-28 16:59:30 -0700190 return m_ContextArray.empty() ? nullptr : m_ContextArray.back().get();
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700191}
192
193void CJS_Runtime::SetReaderDocument(CPDFSDK_Document* pReaderDoc) {
194 if (m_pDocument != pReaderDoc) {
195 v8::Isolate::Scope isolate_scope(m_isolate);
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700196 v8::HandleScope handle_scope(m_isolate);
197 v8::Local<v8::Context> context =
198 v8::Local<v8::Context>::New(m_isolate, m_context);
199 v8::Context::Scope context_scope(context);
200
201 m_pDocument = pReaderDoc;
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700202 if (pReaderDoc) {
Tom Sepez39bfe122015-09-17 15:25:23 -0700203 v8::Local<v8::Object> pThis = FXJS_GetThisObj(GetIsolate());
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700204 if (!pThis.IsEmpty()) {
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700205 if (FXJS_GetObjDefnID(pThis) == CJS_Document::g_nObjDefnID) {
Tom Sepez39bfe122015-09-17 15:25:23 -0700206 if (CJS_Document* pJSDocument =
Tom Sepezd5a0e952015-09-17 15:40:06 -0700207 (CJS_Document*)FXJS_GetPrivate(GetIsolate(), pThis)) {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700208 if (Document* pDocument = (Document*)pJSDocument->GetEmbedObject())
209 pDocument->AttachDoc(pReaderDoc);
210 }
Tom Sepez2f2ffec2015-07-23 14:42:09 -0700211 }
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700212 }
Tom Sepez2f2ffec2015-07-23 14:42:09 -0700213 }
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700214 }
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700215}
216
dsinclair884b4f92016-06-06 09:49:32 -0700217int CJS_Runtime::Execute(const CFX_WideString& script, CFX_WideString* info) {
Tom Sepez33420902015-10-13 15:00:10 -0700218 FXJSErr error = {};
dsinclair884b4f92016-06-06 09:49:32 -0700219 int nRet = FXJS_Execute(m_isolate, script, &error);
Tom Sepez33420902015-10-13 15:00:10 -0700220 if (nRet < 0) {
221 info->Format(L"[ Line: %05d { %s } ] : %s", error.linnum - 1, error.srcline,
222 error.message);
223 }
224 return nRet;
225}
226
Tom Sepez5d0e8432015-09-22 15:50:03 -0700227bool CJS_Runtime::AddEventToSet(const FieldEvent& event) {
228 return m_FieldEventSet.insert(event).second;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700229}
230
Tom Sepez5d0e8432015-09-22 15:50:03 -0700231void CJS_Runtime::RemoveEventFromSet(const FieldEvent& event) {
232 m_FieldEventSet.erase(event);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700233}
234
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700235v8::Local<v8::Context> CJS_Runtime::NewJSContext() {
236 return v8::Local<v8::Context>::New(m_isolate, m_context);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700237}
238
Tom Sepez297b5152016-03-04 13:43:46 -0800239void CJS_Runtime::SetConstArray(const CFX_WideString& name,
240 v8::Local<v8::Array> array) {
241 m_ConstArrays[name] = v8::Global<v8::Array>(m_isolate, array);
242}
243
244v8::Local<v8::Array> CJS_Runtime::GetConstArray(const CFX_WideString& name) {
245 return v8::Local<v8::Array>::New(m_isolate, m_ConstArrays[name]);
246}
247
Tom Sepez51da0932015-11-25 16:05:49 -0800248#ifdef PDF_ENABLE_XFA
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700249CFX_WideString ChangeObjName(const CFX_WideString& str) {
250 CFX_WideString sRet = str;
251 sRet.Replace(L"_", L".");
252 return sRet;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700253}
dsinclair12a6b0c2016-05-26 11:14:08 -0700254FX_BOOL CJS_Runtime::GetValueByName(const CFX_ByteStringC& utf8Name,
255 CFXJSE_Value* pValue) {
Tom Sepeza8a39e22015-10-12 15:47:07 -0700256#ifdef PDF_ENABLE_XFA
dsinclair179bebb2016-04-05 11:02:18 -0700257 const FX_CHAR* name = utf8Name.c_str();
Bo Xufdc00a72014-10-28 23:03:33 -0700258
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700259 v8::Isolate::Scope isolate_scope(GetIsolate());
260 v8::HandleScope handle_scope(GetIsolate());
Tom Sepez4f4603c2015-11-10 15:03:12 -0800261 v8::Local<v8::Context> old_context = GetIsolate()->GetCurrentContext();
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700262 v8::Local<v8::Context> context =
263 v8::Local<v8::Context>::New(GetIsolate(), m_context);
264 v8::Context::Scope context_scope(context);
Bo Xufdc00a72014-10-28 23:03:33 -0700265
Tom Sepez4f4603c2015-11-10 15:03:12 -0800266 // Caution: We're about to hand to XFA an object that in order to invoke
267 // methods will require that the current v8::Context always has a pointer
268 // to a CJS_Runtime in its embedder data slot. Unfortunately, XFA creates
269 // its own v8::Context which has not initialized the embedder data slot.
270 // Do so now.
271 // TODO(tsepez): redesign PDF-side objects to not rely on v8::Context's
272 // embedder data slots, and/or to always use the right context.
273 FXJS_SetRuntimeForV8Context(old_context, this);
274
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700275 v8::Local<v8::Value> propvalue =
276 context->Global()->Get(v8::String::NewFromUtf8(
277 GetIsolate(), name, v8::String::kNormalString, utf8Name.GetLength()));
Bo Xufdc00a72014-10-28 23:03:33 -0700278
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700279 if (propvalue.IsEmpty()) {
dsinclairf27aeec2016-06-07 19:36:18 -0700280 pValue->SetUndefined();
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700281 return FALSE;
282 }
dsinclair12a6b0c2016-05-26 11:14:08 -0700283 pValue->ForceSetValue(propvalue);
Tom Sepeza8a39e22015-10-12 15:47:07 -0700284#endif
Lei Zhanga6d9f0e2015-06-13 00:48:38 -0700285
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700286 return TRUE;
Bo Xufdc00a72014-10-28 23:03:33 -0700287}
dsinclair12a6b0c2016-05-26 11:14:08 -0700288FX_BOOL CJS_Runtime::SetValueByName(const CFX_ByteStringC& utf8Name,
289 CFXJSE_Value* pValue) {
Tom Sepeza8a39e22015-10-12 15:47:07 -0700290#ifdef PDF_ENABLE_XFA
dsinclair12a6b0c2016-05-26 11:14:08 -0700291 if (utf8Name.IsEmpty() || !pValue)
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700292 return FALSE;
dsinclair179bebb2016-04-05 11:02:18 -0700293 const FX_CHAR* name = utf8Name.c_str();
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700294 v8::Isolate* pIsolate = GetIsolate();
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700295 v8::Isolate::Scope isolate_scope(pIsolate);
296 v8::HandleScope handle_scope(pIsolate);
297 v8::Local<v8::Context> context =
298 v8::Local<v8::Context>::New(pIsolate, m_context);
299 v8::Context::Scope context_scope(context);
Bo Xufdc00a72014-10-28 23:03:33 -0700300
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700301 // v8::Local<v8::Context> tmpCotext =
302 // v8::Local<v8::Context>::New(GetIsolate(), m_context);
dsinclair12a6b0c2016-05-26 11:14:08 -0700303 v8::Local<v8::Value> propvalue =
304 v8::Local<v8::Value>::New(GetIsolate(), pValue->DirectGetValue());
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700305 context->Global()->Set(
306 v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString,
307 utf8Name.GetLength()),
308 propvalue);
Tom Sepeza8a39e22015-10-12 15:47:07 -0700309#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700310 return TRUE;
Bo Xufdc00a72014-10-28 23:03:33 -0700311}
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700312
Tom Sepez51da0932015-11-25 16:05:49 -0800313#endif
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700314void CJS_Runtime::AddObserver(Observer* observer) {
Lei Zhangcd2bb302015-12-22 13:49:44 -0800315 ASSERT(!pdfium::ContainsKey(m_observers, observer));
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700316 m_observers.insert(observer);
317}
318
319void CJS_Runtime::RemoveObserver(Observer* observer) {
Lei Zhangcd2bb302015-12-22 13:49:44 -0800320 ASSERT(pdfium::ContainsKey(m_observers, observer));
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700321 m_observers.erase(observer);
322}