]> git.tdb.fi Git - libs/core.git/blob - source/io/asset.h
Add a class for accessing applications assets
[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;
20
21 public:
22         Asset(const std::string &);
23         ~Asset();
24
25 private:
26         virtual unsigned do_write(const char *, unsigned);
27         virtual unsigned do_read(char *, unsigned);
28
29 public:
30         virtual SeekOffset seek(SeekOffset, SeekType);
31         virtual SeekOffset tell() const;
32 };
33
34 } // namespace IO
35 } // namespace Msp
36
37 #endif