OLD | NEW |
| (Empty) |
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. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" | |
8 | |
9 #include "core/fxcrt/include/fx_basic.h" | |
10 #include "xfa/fxfa/fm2js/xfa_fm2jscontext.h" | |
11 #include "xfa/fxfa/fm2js/xfa_program.h" | |
12 #include "xfa/fxfa/parser/xfa_document.h" | |
13 | |
14 #ifdef __cplusplus | |
15 extern "C" { | |
16 #endif | |
17 | |
18 int32_t XFA_FM2JS_Translate(const CFX_WideStringC& wsFormcalc, | |
19 CFX_WideTextBuf& wsJavascript, | |
20 CFX_WideString& wsError) { | |
21 if (wsFormcalc.IsEmpty()) { | |
22 wsJavascript.Clear(); | |
23 wsError.clear(); | |
24 return 0; | |
25 } | |
26 int32_t status = 0; | |
27 CXFA_FMProgram program; | |
28 status = program.Init(wsFormcalc); | |
29 if (status) { | |
30 wsError = program.GetError().message; | |
31 return status; | |
32 } | |
33 status = program.ParseProgram(); | |
34 if (status) { | |
35 wsError = program.GetError().message; | |
36 return status; | |
37 } | |
38 program.TranslateProgram(wsJavascript); | |
39 return 0; | |
40 } | |
41 | |
42 XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate(v8::Isolate* pScriptIsolate, | |
43 CFXJSE_Context* pScriptContext, | |
44 CXFA_Document* pDocument) { | |
45 return reinterpret_cast<XFA_HFM2JSCONTEXT>( | |
46 new CXFA_FM2JSContext(pScriptIsolate, pScriptContext, pDocument)); | |
47 } | |
48 | |
49 void XFA_FM2JS_GlobalPropertyGetter(XFA_HFM2JSCONTEXT hFM2JSContext, | |
50 CFXJSE_Value* pValue) { | |
51 CXFA_FM2JSContext* pContext = | |
52 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | |
53 pContext->GlobalPropertyGetter(pValue); | |
54 } | |
55 | |
56 void XFA_FM2JS_ContextRelease(XFA_HFM2JSCONTEXT hFM2JSContext) { | |
57 delete reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | |
58 } | |
59 #ifdef __cplusplus | |
60 } | |
61 #endif | |
OLD | NEW |