X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fio%2Fwindows%2Fhandle.cpp;h=1cdf8ce208ed881d0d5510bc0efb3a93122640ca;hp=17aabb080bb113c3e8e35a59f5cb7ae2f5fdafef;hb=c8bf2d6c15893ccc9dbc4e04611b7229029f4808;hpb=8e696b9c1ee35f2ce5b9264f31b1963758d65ced diff --git a/source/io/windows/handle.cpp b/source/io/windows/handle.cpp index 17aabb0..1cdf8ce 100644 --- a/source/io/windows/handle.cpp +++ b/source/io/windows/handle.cpp @@ -1,22 +1,27 @@ +#define NOMINMAX +#include #include #include "handle.h" #include "handle_private.h" +using namespace std; + namespace Msp { namespace IO { -Handle::operator const void *() const +void sys_set_blocking(Handle &, bool) { - return priv->handle!=INVALID_HANDLE_VALUE ? this : 0; } - -void sys_set_blocking(Handle &, bool) +void sys_set_inherit(Handle &, bool) { } -unsigned sys_read(Handle &handle, char *buf, unsigned size) +size_t sys_read(Handle &handle, char *buf, size_t size) { + if(size>numeric_limits::max()) + throw invalid_argument("read"); + DWORD ret; if(ReadFile(*handle, buf, size, &ret, 0)==0) throw system_error("ReadFile"); @@ -24,8 +29,11 @@ unsigned sys_read(Handle &handle, char *buf, unsigned size) return ret; } -unsigned sys_write(Handle &handle, const char *buf, unsigned size) +size_t sys_write(Handle &handle, const char *buf, size_t size) { + if(size>numeric_limits::max()) + throw invalid_argument("write"); + DWORD ret; if(WriteFile(*handle, buf, size, &ret, 0)==0) throw system_error("WriteFile");