#include "libcef_dll/ctocpp/zip_reader_ctocpp.h"
#include "libcef_dll/ctocpp/stream_reader_ctocpp.h"
#include "libcef_dll/shutdown_checker.h"
NO_SANITIZE("cfi-icall")
CefRefPtr<CefZipReader> CefZipReader::Create(
CefRefPtr<CefStreamReader> stream) {
shutdown_checker::AssertNotShutdown();
DCHECK(stream.get());
if (!stream.get())
return nullptr;
cef_zip_reader_t* _retval =
cef_zip_reader_create(CefStreamReaderCToCpp::Unwrap(stream));
return CefZipReaderCToCpp::Wrap(_retval);
}
NO_SANITIZE("cfi-icall") bool CefZipReaderCToCpp::MoveToFirstFile() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, move_to_first_file))
return false;
int _retval = _struct->move_to_first_file(_struct);
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall") bool CefZipReaderCToCpp::MoveToNextFile() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, move_to_next_file))
return false;
int _retval = _struct->move_to_next_file(_struct);
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
bool CefZipReaderCToCpp::MoveToFile(const CefString& fileName,
bool caseSensitive) {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, move_to_file))
return false;
DCHECK(!fileName.empty());
if (fileName.empty())
return false;
int _retval =
_struct->move_to_file(_struct, fileName.GetStruct(), caseSensitive);
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall") bool CefZipReaderCToCpp::Close() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, close))
return false;
int _retval = _struct->close(_struct);
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall") CefString CefZipReaderCToCpp::GetFileName() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_file_name))
return CefString();
cef_string_userfree_t _retval = _struct->get_file_name(_struct);
CefString _retvalStr;
_retvalStr.AttachToUserFree(_retval);
return _retvalStr;
}
NO_SANITIZE("cfi-icall") int64 CefZipReaderCToCpp::GetFileSize() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_file_size))
return 0;
int64 _retval = _struct->get_file_size(_struct);
return _retval;
}
NO_SANITIZE("cfi-icall") CefTime CefZipReaderCToCpp::GetFileLastModified() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_file_last_modified))
return CefTime();
cef_time_t _retval = _struct->get_file_last_modified(_struct);
return _retval;
}
NO_SANITIZE("cfi-icall")
bool CefZipReaderCToCpp::OpenFile(const CefString& password) {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, open_file))
return false;
int _retval = _struct->open_file(_struct, password.GetStruct());
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall") bool CefZipReaderCToCpp::CloseFile() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, close_file))
return false;
int _retval = _struct->close_file(_struct);
return _retval ? true : false;
}
NO_SANITIZE("cfi-icall")
int CefZipReaderCToCpp::ReadFile(void* buffer, size_t bufferSize) {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, read_file))
return 0;
DCHECK(buffer);
if (!buffer)
return 0;
int _retval = _struct->read_file(_struct, buffer, bufferSize);
return _retval;
}
NO_SANITIZE("cfi-icall") int64 CefZipReaderCToCpp::Tell() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, tell))
return 0;
int64 _retval = _struct->tell(_struct);
return _retval;
}
NO_SANITIZE("cfi-icall") bool CefZipReaderCToCpp::Eof() {
shutdown_checker::AssertNotShutdown();
cef_zip_reader_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, eof))
return false;
int _retval = _struct->eof(_struct);
return _retval ? true : false;
}
CefZipReaderCToCpp::CefZipReaderCToCpp() {}
CefZipReaderCToCpp::~CefZipReaderCToCpp() {
shutdown_checker::AssertNotShutdown();
}
template <>
cef_zip_reader_t*
CefCToCppRefCounted<CefZipReaderCToCpp, CefZipReader, cef_zip_reader_t>::
UnwrapDerived(CefWrapperType type, CefZipReader* c) {
NOTREACHED() << "Unexpected class type: " << type;
return nullptr;
}
template <>
CefWrapperType CefCToCppRefCounted<CefZipReaderCToCpp,
CefZipReader,
cef_zip_reader_t>::kWrapperType =
WT_ZIP_READER;