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/src/fxfa/fm2js/xfa_fm2jsapi.h" | |
8 | |
9 #include "core/include/fxcrt/fx_basic.h" | |
10 #include "xfa/src/fxfa/fm2js/xfa_fm2jscontext.h" | |
11 #include "xfa/src/fxfa/fm2js/xfa_program.h" | |
12 #include "xfa/src/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.Empty(); | |
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 XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate() { | |
42 return (XFA_HFM2JSCONTEXT)CXFA_FM2JSContext::Create(); | |
43 } | |
44 void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext, | |
45 FXJSE_HRUNTIME hScriptRuntime, | |
46 FXJSE_HCONTEXT hScriptContext, | |
47 CXFA_Document* pDocument) { | |
48 CXFA_FM2JSContext* pContext = | |
49 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | |
50 pContext->Initialize(hScriptRuntime, hScriptContext, pDocument); | |
51 } | |
52 void XFA_FM2JS_GlobalPropertyGetter(XFA_HFM2JSCONTEXT hFM2JSContext, | |
53 FXJSE_HVALUE hValue) { | |
54 CXFA_FM2JSContext* pContext = | |
55 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | |
56 pContext->GlobalPropertyGetter(hValue); | |
57 } | |
58 void XFA_FM2JS_ContextRelease(XFA_HFM2JSCONTEXT hFM2JSContext) { | |
59 CXFA_FM2JSContext* pContext = | |
60 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | |
61 pContext->Release(); | |
62 } | |
63 #ifdef __cplusplus | |
64 } | |
65 #endif | |
OLD | NEW |