2016-01-07 08:14:33 +00:00
|
|
|
#pragma once
|
2012-01-15 08:29:57 +00:00
|
|
|
|
|
|
|
namespace nall {
|
|
|
|
|
|
|
|
#define autostream(...) (*makestream(__VA_ARGS__))
|
|
|
|
|
2015-12-14 09:41:06 +00:00
|
|
|
inline auto makestream(const string& path) -> std::unique_ptr<stream> {
|
2013-12-03 10:01:59 +00:00
|
|
|
if(path.iendsWith(".gz")) return std::unique_ptr<stream>(new gzipstream(filestream{path}));
|
|
|
|
if(path.iendsWith(".zip")) return std::unique_ptr<stream>(new zipstream(filestream{path}));
|
2012-01-15 08:29:57 +00:00
|
|
|
return std::unique_ptr<stream>(new mmapstream(path));
|
|
|
|
}
|
|
|
|
|
Update to v097r14 release.
byuu says:
This is a few days old, but oh well.
This WIP changes nall,hiro,ruby,icarus back to (u)int(8,16,32,64)_t.
I'm slowly pushing for (u)int(8,16,32,64) to use my custom
Integer<Size>/Natural<Size> classes instead. But it's going to be one
hell of a struggle to get that into higan.
2016-02-16 09:11:58 +00:00
|
|
|
inline auto makestream(uint8_t* data, uint size) -> std::unique_ptr<stream> {
|
2012-01-15 08:29:57 +00:00
|
|
|
return std::unique_ptr<stream>(new memorystream(data, size));
|
|
|
|
}
|
|
|
|
|
Update to v097r14 release.
byuu says:
This is a few days old, but oh well.
This WIP changes nall,hiro,ruby,icarus back to (u)int(8,16,32,64)_t.
I'm slowly pushing for (u)int(8,16,32,64) to use my custom
Integer<Size>/Natural<Size> classes instead. But it's going to be one
hell of a struggle to get that into higan.
2016-02-16 09:11:58 +00:00
|
|
|
inline auto makestream(const uint8_t* data, uint size) -> std::unique_ptr<stream> {
|
2012-01-15 08:29:57 +00:00
|
|
|
return std::unique_ptr<stream>(new memorystream(data, size));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|