6 #include <msp/strings/format.h>
7 #include <msp/core/systemerror.h>
9 #include "handle_private.h"
16 File::File(const string &fn, Mode m, CreateMode cm)
19 throw invalid_argument("File::File mode");
20 if(cm&~(C_CREATE|C_TRUNCATE))
21 throw invalid_argument("File::File create");
27 int create_flags = OPEN_EXISTING;
30 flags |= GENERIC_READ;
33 flags |= GENERIC_WRITE;
35 switch(static_cast<int>(cm))
37 case C_NONE: create_flags = OPEN_EXISTING; break;
38 case C_CREATE: create_flags = OPEN_ALWAYS; break;
39 case C_TRUNCATE: create_flags = TRUNCATE_EXISTING; break;
40 case C_CREATE+C_TRUNCATE: create_flags = CREATE_ALWAYS; break;
44 *handle = CreateFile(fn.c_str(), flags, 0, 0, create_flags, FILE_ATTRIBUTE_NORMAL, 0);
47 int err = GetLastError();
48 if(err==ERROR_FILE_NOT_FOUND)
49 throw file_not_found(fn);
51 throw system_error(format("CreateFile(%s)", fn), err);
57 case M_READ: flags |= O_RDONLY; break;
58 case M_WRITE: flags |= O_WRONLY; break;
59 case M_RDWR: flags |= O_RDWR; break;
75 *handle = ::open(fn.c_str(), flags, 0666);
80 throw file_not_found(fn);
82 throw system_error(format("open(%s)", fn), err);
89 signal_flush_required.emit();
93 void File::set_block(bool b)
95 mode = (mode&~M_NONBLOCK);
97 mode = (mode|M_NONBLOCK);
99 int flags = fcntl(*handle, F_GETFD);
100 fcntl(*handle, F_SETFL, (flags&O_NONBLOCK)|(b?0:O_NONBLOCK));
104 unsigned File::do_write(const char *buf, unsigned size)
106 check_access(M_WRITE);
116 return sys_write(handle, buf, size);
119 unsigned File::do_read(char *buf, unsigned size)
121 check_access(M_READ);
126 unsigned ret = sys_read(handle, buf, size);
136 signal_flush_required.emit();
142 SeekOffset File::seek(SeekOffset off, SeekType type)
144 signal_flush_required.emit();
145 off = sys_seek(handle, off, type);
151 SeekOffset File::tell() const
153 return sys_seek(const_cast<Handle &>(handle), 0, S_CUR);
156 const Handle &File::get_handle(Mode m)