// Copyright 2017 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 #include "fxjs/xfa/cjx_source.h" #include #include "fxjs/cfxjse_value.h" #include "fxjs/js_resources.h" #include "xfa/fxfa/parser/cxfa_source.h" const CJX_MethodSpec CJX_Source::MethodSpecs[] = { {"addNew", addNew_static}, {"cancel", cancel_static}, {"cancelBatch", cancelBatch_static}, {"close", close_static}, {"delete", deleteItem_static}, {"first", first_static}, {"hasDataChanged", hasDataChanged_static}, {"isBOF", isBOF_static}, {"isEOF", isEOF_static}, {"last", last_static}, {"next", next_static}, {"open", open_static}, {"previous", previous_static}, {"requery", requery_static}, {"resync", resync_static}, {"update", update_static}, {"updateBatch", updateBatch_static}}; CJX_Source::CJX_Source(CXFA_Source* src) : CJX_Node(src) { DefineMethods(MethodSpecs, FX_ArraySize(MethodSpecs)); } CJX_Source::~CJX_Source() {} CJS_Return CJX_Source::next(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::cancelBatch( CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::first(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::updateBatch( CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::previous( CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::isBOF(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::isEOF(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::cancel(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::update(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::open(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::deleteItem( CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::addNew(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::requery( CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::resync(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::close(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::last(CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); } CJS_Return CJX_Source::hasDataChanged( CJS_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); return CJS_Return(true); }