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