BastionGuard/thirdparty/cef/libcef_dll/ctocpp/command_line_ctocpp.cc

486 lines
12 KiB
C++

// Copyright (c) 2025 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
//
// ---------------------------------------------------------------------------
//
// This file was generated by the CEF translator tool. If making changes by
// hand only do so within the body of existing method and function
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=9962bd12a9febd352ae0b1fb308bbb13f63720e8$
//
#include "libcef_dll/ctocpp/command_line_ctocpp.h"
#include "include/cef_api_hash.h"
#include "libcef_dll/transfer_util.h"
// STATIC METHODS - Body may be edited by hand.
NO_SANITIZE("cfi-icall")
CefRefPtr<CefCommandLine> CefCommandLine::CreateCommandLine() {
const char* api_hash = cef_api_hash(CEF_API_VERSION, 0);
CHECK(!strcmp(api_hash, CEF_API_HASH_PLATFORM))
<< "API hashes for libcef and libcef_dll_wrapper do not match.";
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
auto* _retval = cef_command_line_create();
// Return type: refptr_same
return CefCommandLineCToCpp_Wrap(_retval);
}
NO_SANITIZE("cfi-icall")
CefRefPtr<CefCommandLine> CefCommandLine::GetGlobalCommandLine() {
const char* api_hash = cef_api_hash(CEF_API_VERSION, 0);
CHECK(!strcmp(api_hash, CEF_API_HASH_PLATFORM))
<< "API hashes for libcef and libcef_dll_wrapper do not match.";
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
auto* _retval = cef_command_line_get_global();
// Return type: refptr_same
return CefCommandLineCToCpp_Wrap(_retval);
}
// VIRTUAL METHODS - Body may be edited by hand.
NO_SANITIZE("cfi-icall") bool CefCommandLineCToCpp::IsValid() {
auto* _struct = GetStruct();
if (!_struct->is_valid) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->is_valid(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall") bool CefCommandLineCToCpp::IsReadOnly() {
auto* _struct = GetStruct();
if (!_struct->is_read_only) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->is_read_only(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
CefRefPtr<CefCommandLine> CefCommandLineCToCpp::Copy() {
auto* _struct = GetStruct();
if (!_struct->copy) {
return nullptr;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
auto* _retval = _struct->copy(_struct);
// Return type: refptr_same
return CefCommandLineCToCpp_Wrap(_retval);
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::InitFromArgv(int argc, const char* const* argv) {
auto* _struct = GetStruct();
if (!_struct->init_from_argv) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: argv; type: simple_byaddr
DCHECK(argv);
if (!argv) {
return;
}
// Execute
_struct->init_from_argv(_struct, argc, argv);
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::InitFromString(const CefString& command_line) {
auto* _struct = GetStruct();
if (!_struct->init_from_string) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: command_line; type: string_byref_const
DCHECK(!command_line.empty());
if (command_line.empty()) {
return;
}
// Execute
_struct->init_from_string(_struct, command_line.GetStruct());
}
NO_SANITIZE("cfi-icall") void CefCommandLineCToCpp::Reset() {
auto* _struct = GetStruct();
if (!_struct->reset) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->reset(_struct);
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::GetArgv(std::vector<CefString>& argv) {
auto* _struct = GetStruct();
if (!_struct->get_argv) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Translate param: argv; type: string_vec_byref
cef_string_list_t argvList = cef_string_list_alloc();
DCHECK(argvList);
if (argvList) {
transfer_string_list_contents(argv, argvList);
}
// Execute
_struct->get_argv(_struct, argvList);
// Restore param:argv; type: string_vec_byref
if (argvList) {
argv.clear();
transfer_string_list_contents(argvList, argv);
cef_string_list_free(argvList);
}
}
NO_SANITIZE("cfi-icall")
CefString CefCommandLineCToCpp::GetCommandLineString() {
auto* _struct = GetStruct();
if (!_struct->get_command_line_string) {
return CefString();
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_string_userfree_t _retval = _struct->get_command_line_string(_struct);
// Return type: string
CefString _retvalStr;
_retvalStr.AttachToUserFree(_retval);
return _retvalStr;
}
NO_SANITIZE("cfi-icall") CefString CefCommandLineCToCpp::GetProgram() {
auto* _struct = GetStruct();
if (!_struct->get_program) {
return CefString();
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_string_userfree_t _retval = _struct->get_program(_struct);
// Return type: string
CefString _retvalStr;
_retvalStr.AttachToUserFree(_retval);
return _retvalStr;
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::SetProgram(const CefString& program) {
auto* _struct = GetStruct();
if (!_struct->set_program) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: program; type: string_byref_const
DCHECK(!program.empty());
if (program.empty()) {
return;
}
// Execute
_struct->set_program(_struct, program.GetStruct());
}
NO_SANITIZE("cfi-icall") bool CefCommandLineCToCpp::HasSwitches() {
auto* _struct = GetStruct();
if (!_struct->has_switches) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->has_switches(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
bool CefCommandLineCToCpp::HasSwitch(const CefString& name) {
auto* _struct = GetStruct();
if (!_struct->has_switch) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: name; type: string_byref_const
DCHECK(!name.empty());
if (name.empty()) {
return false;
}
// Execute
int _retval = _struct->has_switch(_struct, name.GetStruct());
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
CefString CefCommandLineCToCpp::GetSwitchValue(const CefString& name) {
auto* _struct = GetStruct();
if (!_struct->get_switch_value) {
return CefString();
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: name; type: string_byref_const
DCHECK(!name.empty());
if (name.empty()) {
return CefString();
}
// Execute
cef_string_userfree_t _retval =
_struct->get_switch_value(_struct, name.GetStruct());
// Return type: string
CefString _retvalStr;
_retvalStr.AttachToUserFree(_retval);
return _retvalStr;
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::GetSwitches(SwitchMap& switches) {
auto* _struct = GetStruct();
if (!_struct->get_switches) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Translate param: switches; type: string_map_single_byref
cef_string_map_t switchesMap = cef_string_map_alloc();
DCHECK(switchesMap);
if (switchesMap) {
transfer_string_map_contents(switches, switchesMap);
}
// Execute
_struct->get_switches(_struct, switchesMap);
// Restore param:switches; type: string_map_single_byref
if (switchesMap) {
switches.clear();
transfer_string_map_contents(switchesMap, switches);
cef_string_map_free(switchesMap);
}
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::AppendSwitch(const CefString& name) {
auto* _struct = GetStruct();
if (!_struct->append_switch) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: name; type: string_byref_const
DCHECK(!name.empty());
if (name.empty()) {
return;
}
// Execute
_struct->append_switch(_struct, name.GetStruct());
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::AppendSwitchWithValue(const CefString& name,
const CefString& value) {
auto* _struct = GetStruct();
if (!_struct->append_switch_with_value) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: name; type: string_byref_const
DCHECK(!name.empty());
if (name.empty()) {
return;
}
// Verify param: value; type: string_byref_const
DCHECK(!value.empty());
if (value.empty()) {
return;
}
// Execute
_struct->append_switch_with_value(_struct, name.GetStruct(),
value.GetStruct());
}
#if CEF_API_ADDED(14100)
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::RemoveSwitch(const CefString& name) {
auto* _struct = GetStruct();
if (!_struct->remove_switch) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: name; type: string_byref_const
DCHECK(!name.empty());
if (name.empty()) {
return;
}
// Execute
_struct->remove_switch(_struct, name.GetStruct());
}
#endif // CEF_API_ADDED(14100)
NO_SANITIZE("cfi-icall") bool CefCommandLineCToCpp::HasArguments() {
auto* _struct = GetStruct();
if (!_struct->has_arguments) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->has_arguments(_struct);
// Return type: bool
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::GetArguments(ArgumentList& arguments) {
auto* _struct = GetStruct();
if (!_struct->get_arguments) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Translate param: arguments; type: string_vec_byref
cef_string_list_t argumentsList = cef_string_list_alloc();
DCHECK(argumentsList);
if (argumentsList) {
transfer_string_list_contents(arguments, argumentsList);
}
// Execute
_struct->get_arguments(_struct, argumentsList);
// Restore param:arguments; type: string_vec_byref
if (argumentsList) {
arguments.clear();
transfer_string_list_contents(argumentsList, arguments);
cef_string_list_free(argumentsList);
}
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::AppendArgument(const CefString& argument) {
auto* _struct = GetStruct();
if (!_struct->append_argument) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: argument; type: string_byref_const
DCHECK(!argument.empty());
if (argument.empty()) {
return;
}
// Execute
_struct->append_argument(_struct, argument.GetStruct());
}
NO_SANITIZE("cfi-icall")
void CefCommandLineCToCpp::PrependWrapper(const CefString& wrapper) {
auto* _struct = GetStruct();
if (!_struct->prepend_wrapper) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: wrapper; type: string_byref_const
DCHECK(!wrapper.empty());
if (wrapper.empty()) {
return;
}
// Execute
_struct->prepend_wrapper(_struct, wrapper.GetStruct());
}
// CONSTRUCTOR - Do not edit by hand.
CefCommandLineCToCpp::CefCommandLineCToCpp() {}
// DESTRUCTOR - Do not edit by hand.
CefCommandLineCToCpp::~CefCommandLineCToCpp() {}
template <>
cef_command_line_t*
CefCToCppRefCounted<CefCommandLineCToCpp, CefCommandLine, cef_command_line_t>::
UnwrapDerived(CefWrapperType type, CefCommandLine* c) {
CHECK(false) << __func__ << " called with unexpected class type " << type;
return nullptr;
}
template <>
CefWrapperType CefCToCppRefCounted<CefCommandLineCToCpp,
CefCommandLine,
cef_command_line_t>::kWrapperType =
WT_COMMAND_LINE;