]> git.tdb.fi Git - libs/core.git/blob - source/io/asset.h
Mark overridden virtual functions as such
[libs/core.git] / source / io / asset.h
1 #ifndef MSP_IO_ASSET_H_
2 #define MSP_IO_ASSET_H_
3
4 #include "seekable.h"
5
6 namespace Msp {
7 namespace IO {
8
9 /**
10 Opens a file from the application's assets.  On Android, this means the assets
11 contained within the APK.  On other platfoms, assets are located in the
12 directory indicated by FS::get_sys_data_dir().  Assets are always read-only.
13 */
14 class Asset: public Seekable
15 {
16 private:
17         struct Private;
18
19         Private *priv = nullptr;
20
21 public:
22         Asset(const std::string &);
23         ~Asset();
24
25         void set_block(bool) override;
26         void set_inherit(bool) override;
27
28 private:
29         std::size_t do_write(const char *, std::size_t) override;
30         std::size_t do_read(char *, std::size_t) override;
31
32 public:
33         const Handle &get_handle(Mode) override;
34
35         SeekOffset seek(SeekOffset, SeekType) override;
36         SeekOffset tell() const override;
37 };
38
39 } // namespace IO
40 } // namespace Msp
41
42 #endif