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.
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
7 #ifndef _PUBLICMETHODS_H_
8 #define _PUBLICMETHODS_H_
10 class CJS_PublicMethods : public CJS_Object
13 CJS_PublicMethods(JSFXObject pObject) : CJS_Object(pObject) {};
14 virtual ~CJS_PublicMethods(void){};
17 static FX_BOOL AFNumber_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
18 static FX_BOOL AFNumber_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
19 static FX_BOOL AFPercent_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
20 static FX_BOOL AFPercent_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
21 static FX_BOOL AFDate_FormatEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
22 static FX_BOOL AFDate_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
23 static FX_BOOL AFDate_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
24 static FX_BOOL AFDate_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
25 static FX_BOOL AFTime_FormatEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError); //
26 static FX_BOOL AFTime_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
27 static FX_BOOL AFTime_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
28 static FX_BOOL AFTime_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
29 static FX_BOOL AFSpecial_Format(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
30 static FX_BOOL AFSpecial_Keystroke(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
31 static FX_BOOL AFSpecial_KeystrokeEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);//
32 static FX_BOOL AFSimple(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
33 static FX_BOOL AFMakeNumber(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
34 static FX_BOOL AFSimple_Calculate(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
35 static FX_BOOL AFRange_Validate(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
36 static FX_BOOL AFMergeChange(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
37 static FX_BOOL AFParseDateEx(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
38 static FX_BOOL AFExtractNums(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
41 JS_STATIC_GLOBAL_FUN(AFNumber_Format);
42 JS_STATIC_GLOBAL_FUN(AFNumber_Keystroke);
43 JS_STATIC_GLOBAL_FUN(AFPercent_Format);
44 JS_STATIC_GLOBAL_FUN(AFPercent_Keystroke);
45 JS_STATIC_GLOBAL_FUN(AFDate_FormatEx);
46 JS_STATIC_GLOBAL_FUN(AFDate_KeystrokeEx);
47 JS_STATIC_GLOBAL_FUN(AFDate_Format);
48 JS_STATIC_GLOBAL_FUN(AFDate_Keystroke);
49 JS_STATIC_GLOBAL_FUN(AFTime_FormatEx);
50 JS_STATIC_GLOBAL_FUN(AFTime_KeystrokeEx);
51 JS_STATIC_GLOBAL_FUN(AFTime_Format);
52 JS_STATIC_GLOBAL_FUN(AFTime_Keystroke);
53 JS_STATIC_GLOBAL_FUN(AFSpecial_Format);
54 JS_STATIC_GLOBAL_FUN(AFSpecial_Keystroke);
55 JS_STATIC_GLOBAL_FUN(AFSpecial_KeystrokeEx);
56 JS_STATIC_GLOBAL_FUN(AFSimple);
57 JS_STATIC_GLOBAL_FUN(AFMakeNumber);
58 JS_STATIC_GLOBAL_FUN(AFSimple_Calculate);
59 JS_STATIC_GLOBAL_FUN(AFRange_Validate);
60 JS_STATIC_GLOBAL_FUN(AFMergeChange);
61 JS_STATIC_GLOBAL_FUN(AFParseDateEx);
62 JS_STATIC_GLOBAL_FUN(AFExtractNums);
64 JS_STATIC_DECLARE_GLOBAL_FUN();
67 static int ParseStringInteger(const CFX_WideString & string,int nStart,int & nSkip, int nMaxStep);
68 static CFX_WideString ParseStringString(const CFX_WideString& string, int nStart, int& nSkip);
69 static double MakeRegularDate(const CFX_WideString & value,const CFX_WideString & format, FX_BOOL& bWrongFormat);
70 static CFX_WideString MakeFormatDate(double dDate,const CFX_WideString & format);
71 static FX_BOOL ConvertStringToNumber(FX_LPCWSTR swSource, double & dRet, FX_BOOL & bDot);
72 static double ParseStringToNumber(FX_LPCWSTR swSource);
73 static double ParseNormalDate(const CFX_WideString & value, FX_BOOL& bWrongFormat);
74 static double MakeInterDate(CFX_WideString strValue);
75 static double ParseNumber(FX_LPCWSTR swSource, FX_BOOL& bAllDigits, FX_BOOL& bDot, FX_BOOL& bSign, FX_BOOL& bKXJS);
78 static CFX_WideString StrLTrim(FX_LPCWSTR pStr);
79 static CFX_WideString StrRTrim(FX_LPCWSTR pStr);
80 static CFX_WideString StrTrim(FX_LPCWSTR pStr);
82 static CFX_ByteString StrLTrim(FX_LPCSTR pStr);
83 static CFX_ByteString StrRTrim(FX_LPCSTR pStr);
84 static CFX_ByteString StrTrim(FX_LPCSTR pStr);
86 static FX_BOOL IsNumber(FX_LPCSTR string);
87 static FX_BOOL IsNumber(FX_LPCWSTR string);
89 static FX_BOOL IsDigit(char ch);
90 static FX_BOOL IsDigit(wchar_t ch);
91 static FX_BOOL IsAlphabetic(wchar_t ch);
92 static FX_BOOL IsAlphaNumeric(wchar_t ch);
94 static FX_BOOL maskSatisfied(wchar_t c_Change,wchar_t c_Mask);
95 static FX_BOOL isReservedMaskChar(wchar_t ch);
97 static double AF_Simple(FX_LPCWSTR sFuction, double dValue1, double dValue2);
98 static CJS_Array AF_MakeArrayFromList(v8::Isolate* isolate, CJS_Value val);
101 #endif //_PUBLICMETHODS_H_