mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 15:31:50 +00:00
67 lines
1.2 KiB
C++
67 lines
1.2 KiB
C++
#ifndef __mpw_os_internal_h__
|
|
#define __mpw_os_internal_h__
|
|
|
|
#include <deque>
|
|
#include <string>
|
|
|
|
namespace OS { namespace Internal {
|
|
|
|
uint16_t errno_to_oserr(int xerrno);
|
|
|
|
uint16_t GetFinderInfo(const std::string &pathname, void *info);
|
|
uint16_t SetFinderInfo(const std::string &pathname, void *info);
|
|
|
|
uint16_t GetFileType(const std::string &pathname, uint16_t *fileType, uint32_t *auxType);
|
|
|
|
struct FDEntry
|
|
{
|
|
int refcount;
|
|
bool text;
|
|
bool resource;
|
|
|
|
std::string filename;
|
|
|
|
FDEntry() :
|
|
refcount(0),
|
|
text(false),
|
|
resource(false)
|
|
{}
|
|
|
|
static std::deque<FDEntry> FDTable;
|
|
|
|
static FDEntry& allocate(int fd);
|
|
static FDEntry& allocate(int fd, std::string &&filename);
|
|
static FDEntry& allocate(int fd, const std::string &filename);
|
|
|
|
static ssize_t read(int fd, void *buffer, size_t count);
|
|
static ssize_t write(int fd, const void *buffer, size_t count);
|
|
|
|
static int close(int fd, bool force = false);
|
|
|
|
|
|
template<class F1, class F2>
|
|
static int32_t action(int fd, F1 good, F2 bad)
|
|
{
|
|
if (fd < 0 || fd >= FDTable.size())
|
|
{
|
|
return bad(fd);
|
|
}
|
|
|
|
auto &e = FDTable[fd];
|
|
if (e.refcount)
|
|
{
|
|
return good(fd, e);
|
|
}
|
|
else
|
|
{
|
|
return bad(fd);
|
|
}
|
|
|
|
}
|
|
};
|
|
|
|
|
|
} }
|
|
|
|
#endif
|