summaryrefslogtreecommitdiff
path: root/fxjs/JS_Define.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-06-04 22:11:27 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-06-04 22:11:27 +0000
commit221f0b3e09b9d77b1873a52fff23c7c39df251bb (patch)
treea6c90f118083141c07eb0c5d802c6e8f8d5d4f31 /fxjs/JS_Define.h
parent82df54058ae56edef579d75421f216351bfd723e (diff)
downloadpdfium-221f0b3e09b9d77b1873a52fff23c7c39df251bb.tar.xz
Lowercase JS_Define.{h,cpp} and CJS_Define.h
Consistency with file naming conventions. No functional change. Change-Id: I596c4be5bbf0510950c44a7d9d80f59537739c3b Reviewed-on: https://pdfium-review.googlesource.com/33593 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/JS_Define.h')
-rw-r--r--fxjs/JS_Define.h162
1 files changed, 0 insertions, 162 deletions
diff --git a/fxjs/JS_Define.h b/fxjs/JS_Define.h
deleted file mode 100644
index 325642d8ce..0000000000
--- a/fxjs/JS_Define.h
+++ /dev/null
@@ -1,162 +0,0 @@
-// 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
-
-#ifndef FXJS_JS_DEFINE_H_
-#define FXJS_JS_DEFINE_H_
-
-#include <utility>
-#include <vector>
-
-#include "fxjs/cfxjs_engine.h"
-#include "fxjs/cjs_object.h"
-#include "fxjs/cjs_return.h"
-#include "fxjs/js_resources.h"
-#include "third_party/base/ptr_util.h"
-
-double JS_GetDateTime();
-int JS_GetYearFromTime(double dt);
-int JS_GetMonthFromTime(double dt);
-int JS_GetDayFromTime(double dt);
-int JS_GetHourFromTime(double dt);
-int JS_GetMinFromTime(double dt);
-int JS_GetSecFromTime(double dt);
-double JS_LocalTime(double d);
-double JS_DateParse(const WideString& str);
-double JS_MakeDay(int nYear, int nMonth, int nDay);
-double JS_MakeTime(int nHour, int nMin, int nSec, int nMs);
-double JS_MakeDate(double day, double time);
-
-// Some JS methods have the bizarre convention that they may also be called
-// with a single argument which is an object containing the actual arguments
-// as its properties. The varying arguments to this method are the property
-// names as wchar_t string literals corresponding to each positional argument.
-// The result will always contain |nKeywords| value, with unspecified ones
-// being set to type VT_unknown.
-std::vector<v8::Local<v8::Value>> ExpandKeywordParams(
- CJS_Runtime* pRuntime,
- const std::vector<v8::Local<v8::Value>>& originals,
- size_t nKeywords,
- ...);
-
-// All JS classes have a name, an object defintion ID, and the ability to
-// register themselves with FXJS_V8. We never make a BASE class on its own
-// because it can't really do anything.
-
-// Rich JS classes provide constants, methods, properties, and the ability
-// to construct native object state.
-
-template <class T>
-static void JSConstructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj) {
- auto pObj = pdfium::MakeUnique<T>(obj, static_cast<CJS_Runtime*>(pEngine));
- pObj->InitInstance();
- pEngine->SetObjectPrivate(obj, std::move(pObj));
-}
-
-// CJS_Object has vitual dtor, template not required.
-void JSDestructor(v8::Local<v8::Object> obj);
-
-template <class C, CJS_Return (C::*M)(CJS_Runtime*)>
-void JSPropGetter(const char* prop_name_string,
- const char* class_name_string,
- v8::Local<v8::String> property,
- const v8::PropertyCallbackInfo<v8::Value>& info) {
- CJS_Runtime* pRuntime =
- CJS_Runtime::RuntimeFromIsolateCurrentContext(info.GetIsolate());
- if (!pRuntime)
- return;
-
- CJS_Object* pJSObj = pRuntime->GetObjectPrivate(info.Holder());
- if (!pJSObj)
- return;
-
- C* pObj = static_cast<C*>(pJSObj);
- CJS_Return result = (pObj->*M)(pRuntime);
- if (result.HasError()) {
- pRuntime->Error(JSFormatErrorString(class_name_string, prop_name_string,
- result.Error()));
- return;
- }
-
- if (result.HasReturn())
- info.GetReturnValue().Set(result.Return());
-}
-
-template <class C, CJS_Return (C::*M)(CJS_Runtime*, v8::Local<v8::Value>)>
-void JSPropSetter(const char* prop_name_string,
- const char* class_name_string,
- v8::Local<v8::String> property,
- v8::Local<v8::Value> value,
- const v8::PropertyCallbackInfo<void>& info) {
- CJS_Runtime* pRuntime =
- CJS_Runtime::RuntimeFromIsolateCurrentContext(info.GetIsolate());
- if (!pRuntime)
- return;
-
- CJS_Object* pJSObj = pRuntime->GetObjectPrivate(info.Holder());
- if (!pJSObj)
- return;
-
- C* pObj = static_cast<C*>(pJSObj);
- CJS_Return result = (pObj->*M)(pRuntime, value);
- if (result.HasError()) {
- pRuntime->Error(JSFormatErrorString(class_name_string, prop_name_string,
- result.Error()));
- }
-}
-
-template <class C,
- CJS_Return (C::*M)(CJS_Runtime*,
- const std::vector<v8::Local<v8::Value>>&)>
-void JSMethod(const char* method_name_string,
- const char* class_name_string,
- const v8::FunctionCallbackInfo<v8::Value>& info) {
- CJS_Runtime* pRuntime =
- CJS_Runtime::RuntimeFromIsolateCurrentContext(info.GetIsolate());
- if (!pRuntime)
- return;
-
- CJS_Object* pJSObj = pRuntime->GetObjectPrivate(info.Holder());
- if (!pJSObj)
- return;
-
- std::vector<v8::Local<v8::Value>> parameters;
- for (unsigned int i = 0; i < (unsigned int)info.Length(); i++)
- parameters.push_back(info[i]);
-
- C* pObj = static_cast<C*>(pJSObj);
- CJS_Return result = (pObj->*M)(pRuntime, parameters);
- if (result.HasError()) {
- pRuntime->Error(JSFormatErrorString(class_name_string, method_name_string,
- result.Error()));
- return;
- }
-
- if (result.HasReturn())
- info.GetReturnValue().Set(result.Return());
-}
-
-#define JS_STATIC_PROP(err_name, prop_name, class_name) \
- static void get_##prop_name##_static( \
- v8::Local<v8::String> property, \
- const v8::PropertyCallbackInfo<v8::Value>& info) { \
- JSPropGetter<class_name, &class_name::get_##prop_name>( \
- #err_name, class_name::kName, property, info); \
- } \
- static void set_##prop_name##_static( \
- v8::Local<v8::String> property, v8::Local<v8::Value> value, \
- const v8::PropertyCallbackInfo<void>& info) { \
- JSPropSetter<class_name, &class_name::set_##prop_name>( \
- #err_name, class_name::kName, property, value, info); \
- }
-
-#define JS_STATIC_METHOD(method_name, class_name) \
- static void method_name##_static( \
- const v8::FunctionCallbackInfo<v8::Value>& info) { \
- JSMethod<class_name, &class_name::method_name>(#method_name, \
- class_name::kName, info); \
- }
-
-#endif // FXJS_JS_DEFINE_H_