1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
|
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "fpdfsdk/fpdfxfa/cpdfxfa_context.h"
#include "core/fpdfapi/parser/cpdf_document.h"
#include "fpdfsdk/cpdfsdk_formfillenvironment.h"
#include "fpdfsdk/cpdfsdk_interform.h"
#include "fpdfsdk/cpdfsdk_pageview.h"
#include "fpdfsdk/fpdfxfa/cpdfxfa_page.h"
#include "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h"
#include "fpdfsdk/fsdk_define.h"
#include "fpdfsdk/javascript/cjs_runtime.h"
#include "fpdfsdk/javascript/ijs_runtime.h"
#include "public/fpdf_formfill.h"
#include "third_party/base/ptr_util.h"
#include "xfa/fxfa/cxfa_eventparam.h"
#include "xfa/fxfa/xfa_ffapp.h"
#include "xfa/fxfa/xfa_ffdoc.h"
#include "xfa/fxfa/xfa_ffdocview.h"
#include "xfa/fxfa/xfa_ffpageview.h"
#include "xfa/fxfa/xfa_ffwidgethandler.h"
#include "xfa/fxfa/xfa_fontmgr.h"
#ifndef _WIN32
extern void SetLastError(int err);
extern int GetLastError();
#endif
CPDFXFA_Context::CPDFXFA_Context(std::unique_ptr<CPDF_Document> pPDFDoc)
: m_iDocType(DOCTYPE_PDF),
m_pPDFDoc(std::move(pPDFDoc)),
m_pFormFillEnv(nullptr),
m_pXFADocView(nullptr),
m_nLoadStatus(FXFA_LOADSTATUS_PRELOAD),
m_nPageCount(0),
m_DocEnv(this) {
m_pXFAApp = pdfium::MakeUnique<CXFA_FFApp>(this);
m_pXFAApp->SetDefaultFontMgr(pdfium::MakeUnique<CXFA_DefFontMgr>());
}
CPDFXFA_Context::~CPDFXFA_Context() {
m_nLoadStatus = FXFA_LOADSTATUS_CLOSING;
// Must happen before we remove the form fill environment.
CloseXFADoc();
if (m_pFormFillEnv) {
m_pFormFillEnv->ClearAllFocusedAnnots();
// Once we're deleted the FormFillEnvironment will point at a bad underlying
// doc so we need to reset it ...
m_pFormFillEnv->ResetXFADocument();
m_pFormFillEnv = nullptr;
}
m_nLoadStatus = FXFA_LOADSTATUS_CLOSED;
}
void CPDFXFA_Context::CloseXFADoc() {
if (!m_pXFADoc)
return;
m_pXFADoc->CloseDoc();
m_pXFADoc.reset();
m_pXFADocView = nullptr;
}
void CPDFXFA_Context::SetFormFillEnv(
CPDFSDK_FormFillEnvironment* pFormFillEnv) {
// The layout data can have pointers back into the script context. That
// context will be different if the form fill environment closes, so, force
// the layout data to clear.
if (m_pXFADoc && m_pXFADoc->GetXFADoc())
m_pXFADoc->GetXFADoc()->ClearLayoutData();
m_pFormFillEnv = pFormFillEnv;
}
bool CPDFXFA_Context::LoadXFADoc() {
m_nLoadStatus = FXFA_LOADSTATUS_LOADING;
if (!m_pPDFDoc)
return false;
m_XFAPageList.RemoveAll();
CXFA_FFApp* pApp = GetXFAApp();
if (!pApp)
return false;
m_pXFADoc.reset(pApp->CreateDoc(&m_DocEnv, m_pPDFDoc.get()));
if (!m_pXFADoc) {
SetLastError(FPDF_ERR_XFALOAD);
return false;
}
CXFA_FFDocHandler* pDocHandler = pApp->GetDocHandler();
if (!pDocHandler) {
SetLastError(FPDF_ERR_XFALOAD);
return false;
}
m_pXFADoc->StartLoad();
int iStatus = m_pXFADoc->DoLoad(nullptr);
if (iStatus != XFA_PARSESTATUS_Done) {
CloseXFADoc();
SetLastError(FPDF_ERR_XFALOAD);
return false;
}
m_pXFADoc->StopLoad();
m_pXFADoc->GetXFADoc()->InitScriptContext(GetJSERuntime());
if (m_pXFADoc->GetDocType() == XFA_DOCTYPE_Dynamic)
m_iDocType = DOCTYPE_DYNAMIC_XFA;
else
m_iDocType = DOCTYPE_STATIC_XFA;
m_pXFADocView = m_pXFADoc->CreateDocView(XFA_DOCVIEW_View);
if (m_pXFADocView->StartLayout() < 0) {
CloseXFADoc();
SetLastError(FPDF_ERR_XFALAYOUT);
return false;
}
m_pXFADocView->DoLayout(nullptr);
m_pXFADocView->StopLayout();
m_nLoadStatus = FXFA_LOADSTATUS_LOADED;
return true;
}
int CPDFXFA_Context::GetPageCount() const {
if (!m_pPDFDoc && !m_pXFADoc)
return 0;
switch (m_iDocType) {
case DOCTYPE_PDF:
case DOCTYPE_STATIC_XFA:
if (m_pPDFDoc)
return m_pPDFDoc->GetPageCount();
case DOCTYPE_DYNAMIC_XFA:
if (m_pXFADoc)
return m_pXFADocView->CountPageViews();
default:
return 0;
}
}
CPDFXFA_Page* CPDFXFA_Context::GetXFAPage(int page_index) {
if (page_index < 0)
return nullptr;
CPDFXFA_Page* pPage = nullptr;
int nCount = m_XFAPageList.GetSize();
if (nCount > 0 && page_index < nCount) {
pPage = m_XFAPageList.GetAt(page_index);
if (pPage)
pPage->Retain();
} else {
m_nPageCount = GetPageCount();
m_XFAPageList.SetSize(m_nPageCount);
}
if (pPage)
return pPage;
pPage = new CPDFXFA_Page(this, page_index);
if (!pPage->LoadPage()) {
pPage->Release();
return nullptr;
}
m_XFAPageList.SetAt(page_index, pPage);
return pPage;
}
CPDFXFA_Page* CPDFXFA_Context::GetXFAPage(CXFA_FFPageView* pPage) const {
if (!pPage)
return nullptr;
if (!m_pXFADoc)
return nullptr;
if (m_iDocType != DOCTYPE_DYNAMIC_XFA)
return nullptr;
int nSize = m_XFAPageList.GetSize();
for (int i = 0; i < nSize; i++) {
CPDFXFA_Page* pTempPage = m_XFAPageList.GetAt(i);
if (!pTempPage)
continue;
if (pTempPage->GetXFAPageView() && pTempPage->GetXFAPageView() == pPage)
return pTempPage;
}
return nullptr;
}
void CPDFXFA_Context::DeletePage(int page_index) {
// Delete from the document first because, if GetPage was never called for
// this |page_index| then |m_XFAPageList| may have size < |page_index| even
// if it's a valid page in the document.
if (m_pPDFDoc)
m_pPDFDoc->DeletePage(page_index);
if (page_index < 0 || page_index >= m_XFAPageList.GetSize())
return;
if (CPDFXFA_Page* pPage = m_XFAPageList.GetAt(page_index))
pPage->Release();
}
void CPDFXFA_Context::RemovePage(CPDFXFA_Page* page) {
m_XFAPageList.SetAt(page->GetPageIndex(), nullptr);
}
void CPDFXFA_Context::ClearChangeMark() {
if (m_pFormFillEnv)
m_pFormFillEnv->ClearChangeMark();
}
v8::Isolate* CPDFXFA_Context::GetJSERuntime() const {
if (!m_pFormFillEnv)
return nullptr;
// XFA requires V8, if we have V8 then we have a CJS_Runtime and not the stub.
CJS_Runtime* runtime =
static_cast<CJS_Runtime*>(m_pFormFillEnv->GetJSRuntime());
return runtime->GetIsolate();
}
void CPDFXFA_Context::GetAppName(CFX_WideString& wsName) {
if (m_pFormFillEnv)
wsName = m_pFormFillEnv->FFI_GetAppName();
}
void CPDFXFA_Context::GetLanguage(CFX_WideString& wsLanguage) {
if (m_pFormFillEnv)
wsLanguage = m_pFormFillEnv->GetLanguage();
}
void CPDFXFA_Context::GetPlatform(CFX_WideString& wsPlatform) {
if (m_pFormFillEnv)
wsPlatform = m_pFormFillEnv->GetPlatform();
}
void CPDFXFA_Context::Beep(uint32_t dwType) {
if (m_pFormFillEnv)
m_pFormFillEnv->JS_appBeep(dwType);
}
int32_t CPDFXFA_Context::MsgBox(const CFX_WideString& wsMessage,
const CFX_WideString& wsTitle,
uint32_t dwIconType,
uint32_t dwButtonType) {
if (!m_pFormFillEnv)
return -1;
uint32_t iconType = 0;
int iButtonType = 0;
switch (dwIconType) {
case XFA_MBICON_Error:
iconType |= 0;
break;
case XFA_MBICON_Warning:
iconType |= 1;
break;
case XFA_MBICON_Question:
iconType |= 2;
break;
case XFA_MBICON_Status:
iconType |= 3;
break;
}
switch (dwButtonType) {
case XFA_MB_OK:
iButtonType |= 0;
break;
case XFA_MB_OKCancel:
iButtonType |= 1;
break;
case XFA_MB_YesNo:
iButtonType |= 2;
break;
case XFA_MB_YesNoCancel:
iButtonType |= 3;
break;
}
int32_t iRet = m_pFormFillEnv->JS_appAlert(wsMessage.c_str(), wsTitle.c_str(),
iButtonType, iconType);
switch (iRet) {
case 1:
return XFA_IDOK;
case 2:
return XFA_IDCancel;
case 3:
return XFA_IDNo;
case 4:
return XFA_IDYes;
}
return XFA_IDYes;
}
CFX_WideString CPDFXFA_Context::Response(const CFX_WideString& wsQuestion,
const CFX_WideString& wsTitle,
const CFX_WideString& wsDefaultAnswer,
bool bMark) {
CFX_WideString wsAnswer;
if (!m_pFormFillEnv)
return wsAnswer;
int nLength = 2048;
char* pBuff = new char[nLength];
nLength = m_pFormFillEnv->JS_appResponse(wsQuestion.c_str(), wsTitle.c_str(),
wsDefaultAnswer.c_str(), nullptr,
bMark, pBuff, nLength);
if (nLength > 0) {
nLength = nLength > 2046 ? 2046 : nLength;
pBuff[nLength] = 0;
pBuff[nLength + 1] = 0;
wsAnswer = CFX_WideString::FromUTF16LE(
reinterpret_cast<const unsigned short*>(pBuff),
nLength / sizeof(unsigned short));
}
delete[] pBuff;
return wsAnswer;
}
IFX_SeekableReadStream* CPDFXFA_Context::DownloadURL(
const CFX_WideString& wsURL) {
return m_pFormFillEnv ? m_pFormFillEnv->DownloadFromURL(wsURL.c_str())
: nullptr;
}
bool CPDFXFA_Context::PostRequestURL(const CFX_WideString& wsURL,
const CFX_WideString& wsData,
const CFX_WideString& wsContentType,
const CFX_WideString& wsEncode,
const CFX_WideString& wsHeader,
CFX_WideString& wsResponse) {
if (!m_pFormFillEnv)
return false;
wsResponse = m_pFormFillEnv->PostRequestURL(
wsURL.c_str(), wsData.c_str(), wsContentType.c_str(), wsEncode.c_str(),
wsHeader.c_str());
return true;
}
bool CPDFXFA_Context::PutRequestURL(const CFX_WideString& wsURL,
const CFX_WideString& wsData,
const CFX_WideString& wsEncode) {
return m_pFormFillEnv &&
m_pFormFillEnv->PutRequestURL(wsURL.c_str(), wsData.c_str(),
wsEncode.c_str());
}
void CPDFXFA_Context::LoadString(int32_t iStringID, CFX_WideString& wsString) {
switch (iStringID) {
case XFA_IDS_ValidateFailed:
wsString = L"%s validation failed";
return;
case XFA_IDS_CalcOverride:
wsString = L"Calculate Override";
return;
case XFA_IDS_ModifyField:
wsString = L"Are you sure you want to modify this field?";
return;
case XFA_IDS_NotModifyField:
wsString = L"You are not allowed to modify this field.";
return;
case XFA_IDS_AppName:
wsString = L"pdfium";
return;
case XFA_IDS_Unable_TO_SET:
wsString = L"Unable to set ";
return;
case XFA_IDS_INVAlID_PROP_SET:
wsString = L"Invalid property set operation.";
return;
case XFA_IDS_NOT_DEFAUL_VALUE:
wsString = L" doesn't have a default property.";
return;
case XFA_IDS_UNABLE_SET_LANGUAGE:
wsString = L"Unable to set language value.";
return;
case XFA_IDS_UNABLE_SET_NUMPAGES:
wsString = L"Unable to set numPages value.";
return;
case XFA_IDS_UNABLE_SET_PLATFORM:
wsString = L"Unable to set platform value.";
return;
case XFA_IDS_UNABLE_SET_VARIATION:
wsString = L"Unable to set variation value.";
return;
case XFA_IDS_UNABLE_SET_VERSION:
wsString = L"Unable to set version value.";
return;
case XFA_IDS_UNABLE_SET_READY:
wsString = L"Unable to set ready value.";
return;
case XFA_IDS_COMPILER_ERROR:
wsString = L"Compiler error.";
return;
case XFA_IDS_DIVIDE_ZERO:
wsString = L"Divide by zero.";
return;
case XFA_IDS_ACCESS_PROPERTY_IN_NOT_OBJECT:
wsString =
L"An attempt was made to reference property '%s' of a non-object in "
L"SOM expression %s.";
return;
case XFA_IDS_INDEX_OUT_OF_BOUNDS:
wsString = L"Index value is out of bounds.";
return;
case XFA_IDS_INCORRECT_NUMBER_OF_METHOD:
wsString = L"Incorrect number of parameters calling method '%s'.";
return;
case XFA_IDS_ARGUMENT_MISMATCH:
wsString = L"Argument mismatch in property or function argument.";
return;
case XFA_IDS_NOT_HAVE_PROPERTY:
wsString = L"'%s' doesn't have property '%s'.";
return;
case XFA_IDS_VIOLATE_BOUNDARY:
wsString =
L"The element [%s] has violated its allowable number of occurrences.";
return;
case XFA_IDS_SERVER_DENY:
wsString = L"Server does not permit.";
return;
case XFA_IDS_ValidateLimit:
wsString =
L"Message limit exceeded. Remaining %d validation errors not "
L"reported.";
return;
case XFA_IDS_ValidateNullWarning:
wsString =
L"%s cannot be blank. To ignore validations for %s, click Ignore.";
return;
case XFA_IDS_ValidateNullError:
wsString = L"%s cannot be blank.";
return;
case XFA_IDS_ValidateWarning:
wsString =
L"The value you entered for %s is invalid. To ignore validations for "
L"%s, click Ignore.";
return;
case XFA_IDS_ValidateError:
wsString = L"The value you entered for %s is invalid.";
return;
}
}
IFWL_AdapterTimerMgr* CPDFXFA_Context::GetTimerMgr() {
CXFA_FWLAdapterTimerMgr* pAdapter = nullptr;
if (m_pFormFillEnv)
pAdapter = new CXFA_FWLAdapterTimerMgr(m_pFormFillEnv);
return pAdapter;
}
|