| // Copyright 2014 The PDFium Authors |
| // 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 CORE_FXCRT_CFX_FILEACCESS_POSIX_H_ |
| #define CORE_FXCRT_CFX_FILEACCESS_POSIX_H_ |
| #include "build/build_config.h" |
| #include "core/fxcrt/fileaccess_iface.h" |
| #include "core/fxcrt/fx_types.h" |
| #error "Included on the wrong platform" |
| class CFX_FileAccess_Posix final : public FileAccessIface { |
| ~CFX_FileAccess_Posix() override; |
| bool Open(ByteStringView fileName) override; |
| FX_FILESIZE GetSize() const override; |
| FX_FILESIZE GetPosition() const override; |
| FX_FILESIZE SetPosition(FX_FILESIZE pos) override; |
| size_t Read(pdfium::span<uint8_t> buffer) override; |
| size_t Write(pdfium::span<const uint8_t> buffer) override; |
| size_t ReadPos(pdfium::span<uint8_t> buffer, FX_FILESIZE pos) override; |
| size_t WritePos(pdfium::span<const uint8_t> buffer, FX_FILESIZE pos) override; |
| bool Truncate(FX_FILESIZE szFile) override; |
| #endif // CORE_FXCRT_CFX_FILEACCESS_POSIX_H_ |