John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // 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 Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 7 | #include "fpdfsdk/javascript/cjs_runtime.h" |
Tom Sepez | 3745841 | 2015-10-06 11:33:46 -0700 | [diff] [blame] | 8 | |
tsepez | 41a53ad | 2016-03-28 16:59:30 -0700 | [diff] [blame] | 9 | #include <algorithm> |
| 10 | |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 11 | #include "fpdfsdk/include/fsdk_mgr.h" |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 12 | #include "fpdfsdk/javascript/Consts.h" |
| 13 | #include "fpdfsdk/javascript/Document.h" |
| 14 | #include "fpdfsdk/javascript/Field.h" |
| 15 | #include "fpdfsdk/javascript/Icon.h" |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 16 | #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" |
dsinclair | 89bdd08 | 2016-04-06 10:47:54 -0700 | [diff] [blame] | 23 | #include "fpdfsdk/javascript/cjs_context.h" |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 24 | #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 Zhang | cd2bb30 | 2015-12-22 13:49:44 -0800 | [diff] [blame] | 30 | #include "third_party/base/stl_util.h" |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 31 | |
Tom Sepez | 40e9ff3 | 2015-11-30 12:39:54 -0800 | [diff] [blame] | 32 | #ifdef PDF_ENABLE_XFA |
dsinclair | 89bdd08 | 2016-04-06 10:47:54 -0700 | [diff] [blame] | 33 | #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 34 | #include "xfa/fxjse/value.h" |
Tom Sepez | 40e9ff3 | 2015-11-30 12:39:54 -0800 | [diff] [blame] | 35 | #endif // PDF_ENABLE_XFA |
| 36 | |
Tom Sepez | 67fd5df | 2015-10-08 12:24:19 -0700 | [diff] [blame] | 37 | // static |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 38 | void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { |
| 39 | FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate)); |
| 40 | } |
| 41 | |
| 42 | // static |
Tom Sepez | ba038bc | 2015-10-08 12:03:00 -0700 | [diff] [blame] | 43 | IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { |
Tom Sepez | 3745841 | 2015-10-06 11:33:46 -0700 | [diff] [blame] | 44 | return new CJS_Runtime(pEnv); |
| 45 | } |
| 46 | |
Tom Sepez | 67fd5df | 2015-10-08 12:24:19 -0700 | [diff] [blame] | 47 | // static |
| 48 | CJS_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 Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 53 | CJS_Runtime::CJS_Runtime(CPDFDoc_Environment* pApp) |
| 54 | : m_pApp(pApp), |
| 55 | m_pDocument(NULL), |
| 56 | m_bBlocking(FALSE), |
Jochen Eisinger | 2900784 | 2015-08-05 09:02:13 +0200 | [diff] [blame] | 57 | m_isolate(NULL), |
| 58 | m_isolateManaged(false) { |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 59 | #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 Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 68 | 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 Sepez | a72e8e2 | 2015-10-07 10:17:53 -0700 | [diff] [blame] | 71 | } 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 Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 81 | #endif |
Tom Sepez | a72e8e2 | 2015-10-07 10:17:53 -0700 | [diff] [blame] | 82 | } |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 83 | #ifndef PDF_ENABLE_XFA |
| 84 | FXJS_Initialize(embedderDataSlot, pExternalIsolate); |
| 85 | #else |
Tom Sepez | a72e8e2 | 2015-10-07 10:17:53 -0700 | [diff] [blame] | 86 | m_isolateManaged = FXJS_GetIsolate(&m_isolate); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 87 | } |
Tom Sepez | d2cc1b9 | 2015-04-30 15:19:03 -0700 | [diff] [blame] | 88 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 89 | v8::Isolate* isolate = m_isolate; |
| 90 | v8::Isolate::Scope isolate_scope(isolate); |
| 91 | v8::Locker locker(isolate); |
| 92 | v8::HandleScope handle_scope(isolate); |
Tom Sepez | ed7b2b5 | 2015-09-22 08:36:17 -0700 | [diff] [blame] | 93 | if (CPDFXFA_App::GetInstance()->IsJavaScriptInitialized()) { |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 94 | CJS_Context* pContext = (CJS_Context*)NewContext(); |
Tom Sepez | 4237aed | 2015-11-10 15:19:17 -0800 | [diff] [blame] | 95 | FXJS_InitializeRuntime(GetIsolate(), this, &m_context, &m_StaticObjects); |
Tom Sepez | 2f2ffec | 2015-07-23 14:42:09 -0700 | [diff] [blame] | 96 | ReleaseContext(pContext); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 97 | return; |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 98 | #endif |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 99 | } |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 100 | #ifndef PDF_ENABLE_XFA |
| 101 | m_isolateManaged = FXJS_GetIsolate(&m_isolate); |
| 102 | #else |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 103 | |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 104 | #endif |
Lei Zhang | 3fa115b | 2015-10-08 12:04:47 -0700 | [diff] [blame] | 105 | if (m_isolateManaged || FXJS_GlobalIsolateRefCount() == 0) |
| 106 | DefineJSObjects(); |
| 107 | |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 108 | #ifdef PDF_ENABLE_XFA |
Tom Sepez | ed7b2b5 | 2015-09-22 08:36:17 -0700 | [diff] [blame] | 109 | CPDFXFA_App::GetInstance()->SetJavaScriptInitialized(TRUE); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 110 | |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 111 | #endif |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 112 | CJS_Context* pContext = (CJS_Context*)NewContext(); |
Tom Sepez | 4237aed | 2015-11-10 15:19:17 -0800 | [diff] [blame] | 113 | FXJS_InitializeRuntime(GetIsolate(), this, &m_context, &m_StaticObjects); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 114 | ReleaseContext(pContext); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 117 | CJS_Runtime::~CJS_Runtime() { |
Lei Zhang | 2d5a0e1 | 2015-10-05 17:00:03 -0700 | [diff] [blame] | 118 | for (auto* obs : m_observers) |
| 119 | obs->OnDestroyed(); |
| 120 | |
tsepez | 41a53ad | 2016-03-28 16:59:30 -0700 | [diff] [blame] | 121 | m_ContextArray.clear(); |
Tom Sepez | 297b515 | 2016-03-04 13:43:46 -0800 | [diff] [blame] | 122 | m_ConstArrays.clear(); |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 123 | FXJS_ReleaseRuntime(GetIsolate(), &m_context, &m_StaticObjects); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 124 | m_context.Reset(); |
Jochen Eisinger | 2900784 | 2015-08-05 09:02:13 +0200 | [diff] [blame] | 125 | if (m_isolateManaged) |
| 126 | m_isolate->Dispose(); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Tom Sepez | 142165e | 2015-09-11 13:21:50 -0700 | [diff] [blame] | 129 | void CJS_Runtime::DefineJSObjects() { |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 130 | v8::Isolate::Scope isolate_scope(GetIsolate()); |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 131 | #ifdef PDF_ENABLE_XFA |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 132 | v8::Locker locker(GetIsolate()); |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 133 | #endif |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 134 | v8::HandleScope handle_scope(GetIsolate()); |
| 135 | v8::Local<v8::Context> context = v8::Context::New(GetIsolate()); |
| 136 | v8::Context::Scope context_scope(context); |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 137 | |
| 138 | // The call order determines the "ObjDefID" assigned to each class. |
| 139 | // ObjDefIDs 0 - 2 |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 140 | CJS_Border::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 141 | CJS_Display::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 142 | CJS_Font::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 143 | |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 144 | // ObjDefIDs 3 - 5 |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 145 | CJS_Highlight::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 146 | CJS_Position::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 147 | CJS_ScaleHow::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 148 | |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 149 | // ObjDefIDs 6 - 8 |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 150 | CJS_ScaleWhen::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 151 | CJS_Style::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 152 | CJS_Zoomtype::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 153 | |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 154 | // ObjDefIDs 9 - 11 |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 155 | CJS_App::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 156 | CJS_Color::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 157 | CJS_Console::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 158 | |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 159 | // ObjDefIDs 12 - 14 |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 160 | CJS_Document::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_GLOBAL); |
| 161 | CJS_Event::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 162 | CJS_Field::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 163 | |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 164 | // ObjDefIDs 15 - 17 |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 165 | CJS_Global::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
| 166 | CJS_Icon::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC); |
| 167 | CJS_Util::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC); |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 168 | |
Tom Sepez | 142165e | 2015-09-11 13:21:50 -0700 | [diff] [blame] | 169 | // ObjDefIDs 18 - 20 (these can't fail, return void). |
| 170 | CJS_PublicMethods::DefineJSObjects(GetIsolate()); |
Tom Sepez | 67fd5df | 2015-10-08 12:24:19 -0700 | [diff] [blame] | 171 | CJS_GlobalConsts::DefineJSObjects(this); |
| 172 | CJS_GlobalArrays::DefineJSObjects(this); |
Tom Sepez | 570875c | 2015-09-11 08:35:03 -0700 | [diff] [blame] | 173 | |
Tom Sepez | 142165e | 2015-09-11 13:21:50 -0700 | [diff] [blame] | 174 | // ObjDefIDs 21 - 22. |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 175 | CJS_TimerObj::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC); |
| 176 | CJS_PrintParamsObj::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Tom Sepez | ba038bc | 2015-10-08 12:03:00 -0700 | [diff] [blame] | 179 | IJS_Context* CJS_Runtime::NewContext() { |
tsepez | 41a53ad | 2016-03-28 16:59:30 -0700 | [diff] [blame] | 180 | m_ContextArray.push_back(std::unique_ptr<CJS_Context>(new CJS_Context(this))); |
| 181 | return m_ContextArray.back().get(); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Tom Sepez | ba038bc | 2015-10-08 12:03:00 -0700 | [diff] [blame] | 184 | void CJS_Runtime::ReleaseContext(IJS_Context* pContext) { |
tsepez | 41a53ad | 2016-03-28 16:59:30 -0700 | [diff] [blame] | 185 | for (auto it = m_ContextArray.begin(); it != m_ContextArray.end(); ++it) { |
| 186 | if (it->get() == static_cast<CJS_Context*>(pContext)) { |
| 187 | m_ContextArray.erase(it); |
| 188 | return; |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | } |
| 192 | |
Tom Sepez | ba038bc | 2015-10-08 12:03:00 -0700 | [diff] [blame] | 193 | IJS_Context* CJS_Runtime::GetCurrentContext() { |
tsepez | 41a53ad | 2016-03-28 16:59:30 -0700 | [diff] [blame] | 194 | return m_ContextArray.empty() ? nullptr : m_ContextArray.back().get(); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void CJS_Runtime::SetReaderDocument(CPDFSDK_Document* pReaderDoc) { |
| 198 | if (m_pDocument != pReaderDoc) { |
| 199 | v8::Isolate::Scope isolate_scope(m_isolate); |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 200 | #ifdef PDF_ENABLE_XFA |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 201 | v8::Locker locker(m_isolate); |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 202 | #endif |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 203 | v8::HandleScope handle_scope(m_isolate); |
| 204 | v8::Local<v8::Context> context = |
| 205 | v8::Local<v8::Context>::New(m_isolate, m_context); |
| 206 | v8::Context::Scope context_scope(context); |
| 207 | |
| 208 | m_pDocument = pReaderDoc; |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 209 | if (pReaderDoc) { |
Tom Sepez | 39bfe12 | 2015-09-17 15:25:23 -0700 | [diff] [blame] | 210 | v8::Local<v8::Object> pThis = FXJS_GetThisObj(GetIsolate()); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 211 | if (!pThis.IsEmpty()) { |
Tom Sepez | cd56a7d | 2015-10-06 11:45:28 -0700 | [diff] [blame] | 212 | if (FXJS_GetObjDefnID(pThis) == CJS_Document::g_nObjDefnID) { |
Tom Sepez | 39bfe12 | 2015-09-17 15:25:23 -0700 | [diff] [blame] | 213 | if (CJS_Document* pJSDocument = |
Tom Sepez | d5a0e95 | 2015-09-17 15:40:06 -0700 | [diff] [blame] | 214 | (CJS_Document*)FXJS_GetPrivate(GetIsolate(), pThis)) { |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 215 | if (Document* pDocument = (Document*)pJSDocument->GetEmbedObject()) |
| 216 | pDocument->AttachDoc(pReaderDoc); |
| 217 | } |
Tom Sepez | 2f2ffec | 2015-07-23 14:42:09 -0700 | [diff] [blame] | 218 | } |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 219 | } |
Tom Sepez | 2f2ffec | 2015-07-23 14:42:09 -0700 | [diff] [blame] | 220 | } |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 221 | } |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Tom Sepez | 3342090 | 2015-10-13 15:00:10 -0700 | [diff] [blame] | 224 | int CJS_Runtime::Execute(IJS_Context* cc, |
| 225 | const wchar_t* script, |
| 226 | CFX_WideString* info) { |
| 227 | FXJSErr error = {}; |
| 228 | int nRet = FXJS_Execute(m_isolate, cc, script, &error); |
| 229 | if (nRet < 0) { |
| 230 | info->Format(L"[ Line: %05d { %s } ] : %s", error.linnum - 1, error.srcline, |
| 231 | error.message); |
| 232 | } |
| 233 | return nRet; |
| 234 | } |
| 235 | |
Tom Sepez | 5d0e843 | 2015-09-22 15:50:03 -0700 | [diff] [blame] | 236 | bool CJS_Runtime::AddEventToSet(const FieldEvent& event) { |
| 237 | return m_FieldEventSet.insert(event).second; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Tom Sepez | 5d0e843 | 2015-09-22 15:50:03 -0700 | [diff] [blame] | 240 | void CJS_Runtime::RemoveEventFromSet(const FieldEvent& event) { |
| 241 | m_FieldEventSet.erase(event); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 244 | v8::Local<v8::Context> CJS_Runtime::NewJSContext() { |
| 245 | return v8::Local<v8::Context>::New(m_isolate, m_context); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Tom Sepez | 297b515 | 2016-03-04 13:43:46 -0800 | [diff] [blame] | 248 | void CJS_Runtime::SetConstArray(const CFX_WideString& name, |
| 249 | v8::Local<v8::Array> array) { |
| 250 | m_ConstArrays[name] = v8::Global<v8::Array>(m_isolate, array); |
| 251 | } |
| 252 | |
| 253 | v8::Local<v8::Array> CJS_Runtime::GetConstArray(const CFX_WideString& name) { |
| 254 | return v8::Local<v8::Array>::New(m_isolate, m_ConstArrays[name]); |
| 255 | } |
| 256 | |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 257 | #ifdef PDF_ENABLE_XFA |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 258 | CFX_WideString ChangeObjName(const CFX_WideString& str) { |
| 259 | CFX_WideString sRet = str; |
| 260 | sRet.Replace(L"_", L"."); |
| 261 | return sRet; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 262 | } |
dsinclair | 12a6b0c | 2016-05-26 11:14:08 -0700 | [diff] [blame^] | 263 | FX_BOOL CJS_Runtime::GetValueByName(const CFX_ByteStringC& utf8Name, |
| 264 | CFXJSE_Value* pValue) { |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 265 | #ifdef PDF_ENABLE_XFA |
dsinclair | 179bebb | 2016-04-05 11:02:18 -0700 | [diff] [blame] | 266 | const FX_CHAR* name = utf8Name.c_str(); |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 267 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 268 | v8::Locker lock(GetIsolate()); |
| 269 | v8::Isolate::Scope isolate_scope(GetIsolate()); |
| 270 | v8::HandleScope handle_scope(GetIsolate()); |
Tom Sepez | 4f4603c | 2015-11-10 15:03:12 -0800 | [diff] [blame] | 271 | v8::Local<v8::Context> old_context = GetIsolate()->GetCurrentContext(); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 272 | v8::Local<v8::Context> context = |
| 273 | v8::Local<v8::Context>::New(GetIsolate(), m_context); |
| 274 | v8::Context::Scope context_scope(context); |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 275 | |
Tom Sepez | 4f4603c | 2015-11-10 15:03:12 -0800 | [diff] [blame] | 276 | // Caution: We're about to hand to XFA an object that in order to invoke |
| 277 | // methods will require that the current v8::Context always has a pointer |
| 278 | // to a CJS_Runtime in its embedder data slot. Unfortunately, XFA creates |
| 279 | // its own v8::Context which has not initialized the embedder data slot. |
| 280 | // Do so now. |
| 281 | // TODO(tsepez): redesign PDF-side objects to not rely on v8::Context's |
| 282 | // embedder data slots, and/or to always use the right context. |
| 283 | FXJS_SetRuntimeForV8Context(old_context, this); |
| 284 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 285 | v8::Local<v8::Value> propvalue = |
| 286 | context->Global()->Get(v8::String::NewFromUtf8( |
| 287 | GetIsolate(), name, v8::String::kNormalString, utf8Name.GetLength())); |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 288 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 289 | if (propvalue.IsEmpty()) { |
dsinclair | 12a6b0c | 2016-05-26 11:14:08 -0700 | [diff] [blame^] | 290 | FXJSE_Value_SetUndefined(pValue); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 291 | return FALSE; |
| 292 | } |
dsinclair | 12a6b0c | 2016-05-26 11:14:08 -0700 | [diff] [blame^] | 293 | pValue->ForceSetValue(propvalue); |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 294 | #endif |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 295 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 296 | return TRUE; |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 297 | } |
dsinclair | 12a6b0c | 2016-05-26 11:14:08 -0700 | [diff] [blame^] | 298 | FX_BOOL CJS_Runtime::SetValueByName(const CFX_ByteStringC& utf8Name, |
| 299 | CFXJSE_Value* pValue) { |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 300 | #ifdef PDF_ENABLE_XFA |
dsinclair | 12a6b0c | 2016-05-26 11:14:08 -0700 | [diff] [blame^] | 301 | if (utf8Name.IsEmpty() || !pValue) |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 302 | return FALSE; |
dsinclair | 179bebb | 2016-04-05 11:02:18 -0700 | [diff] [blame] | 303 | const FX_CHAR* name = utf8Name.c_str(); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 304 | v8::Isolate* pIsolate = GetIsolate(); |
| 305 | v8::Locker lock(pIsolate); |
| 306 | v8::Isolate::Scope isolate_scope(pIsolate); |
| 307 | v8::HandleScope handle_scope(pIsolate); |
| 308 | v8::Local<v8::Context> context = |
| 309 | v8::Local<v8::Context>::New(pIsolate, m_context); |
| 310 | v8::Context::Scope context_scope(context); |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 311 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 312 | // v8::Local<v8::Context> tmpCotext = |
| 313 | // v8::Local<v8::Context>::New(GetIsolate(), m_context); |
dsinclair | 12a6b0c | 2016-05-26 11:14:08 -0700 | [diff] [blame^] | 314 | v8::Local<v8::Value> propvalue = |
| 315 | v8::Local<v8::Value>::New(GetIsolate(), pValue->DirectGetValue()); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 316 | context->Global()->Set( |
| 317 | v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString, |
| 318 | utf8Name.GetLength()), |
| 319 | propvalue); |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 320 | #endif |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 321 | return TRUE; |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 322 | } |
Lei Zhang | 2d5a0e1 | 2015-10-05 17:00:03 -0700 | [diff] [blame] | 323 | |
Tom Sepez | 51da093 | 2015-11-25 16:05:49 -0800 | [diff] [blame] | 324 | #endif |
Lei Zhang | 2d5a0e1 | 2015-10-05 17:00:03 -0700 | [diff] [blame] | 325 | void CJS_Runtime::AddObserver(Observer* observer) { |
Lei Zhang | cd2bb30 | 2015-12-22 13:49:44 -0800 | [diff] [blame] | 326 | ASSERT(!pdfium::ContainsKey(m_observers, observer)); |
Lei Zhang | 2d5a0e1 | 2015-10-05 17:00:03 -0700 | [diff] [blame] | 327 | m_observers.insert(observer); |
| 328 | } |
| 329 | |
| 330 | void CJS_Runtime::RemoveObserver(Observer* observer) { |
Lei Zhang | cd2bb30 | 2015-12-22 13:49:44 -0800 | [diff] [blame] | 331 | ASSERT(pdfium::ContainsKey(m_observers, observer)); |
Lei Zhang | 2d5a0e1 | 2015-10-05 17:00:03 -0700 | [diff] [blame] | 332 | m_observers.erase(observer); |
| 333 | } |