1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
// This is the Win32 version of this struct
#if !defined(_WIN32)
#error Win32 only header included from non-Win32 build environment
#endif
#ifndef _AUTOFD_H
#define _AUTOFD_H
#include "autohandle.h"
#include "errno.h"
// Fill in missing declarations
#define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
#define S_IFLNK 0120000
#define S_IRWXU 00700
#define S_IRUSR 00400
#define S_IWUSR 00200
#define S_IXUSR 00100
#define S_IRWXG 00070
#define S_IRGRP 00040
#define S_IWGRP 00020
#define S_IXGRP 00010
#define S_IRWXO 00007
#define S_IROTH 00004
#define S_IWOTH 00002
#define S_IXOTH 00001
#define STDIN_FILENO (STD_INPUT_HANDLE)
#define STDOUT_FILENO (STD_OUTPUT_HANDLE)
#define STDERR_FILENO (STD_ERROR_HANDLE)
// automap will auto-release mmaped areas
class autofd : public autohandle {
mutable bool f_eof;
static FILETIME ut2ft( time_t unixtime )
{
ULARGE_INTEGER res;
static const ULONGLONG epoch_start=116444736000000000;
res.QuadPart=unixtime;
res.QuadPart*=10*1000*1000;
res.QuadPart+=epoch_start;
FILETIME ret;
ret.dwHighDateTime=res.HighPart;
ret.dwLowDateTime=res.LowPart;
return ret;
}
static time_t ft2ut( FILETIME ft )
{
// Converts FILETIME to time_t
static const ULONGLONG epoch_start=116444736000000000;
ULARGE_INTEGER unified_ft;
unified_ft.LowPart=ft.dwLowDateTime;
unified_ft.HighPart=ft.dwHighDateTime;
if( unified_ft.QuadPart<epoch_start )
return -1;
unified_ft.QuadPart-=epoch_start;
unified_ft.QuadPart/=10*1000*1000;
if( unified_ft.HighPart!=0 )
return -1;
return unified_ft.LowPart;
}
public:
autofd() : autohandle(INVALID_HANDLE_VALUE), f_eof(false)
{
}
explicit autofd( file_t file_p ) : autohandle(file_p), f_eof(false)
{
}
#if defined(EXCEPT_CLASS)
autofd( file_t file_p, bool except ) : autohandle(file_p), f_eof(false)
{
if( *this==INVALID_HANDLE_VALUE )
throw EXCEPT_CLASS("file handle open failed", GetLastError());
}
autofd( const char *pathname, int flags, mode_t mode=0 ) : f_eof(false)
{
DWORD access=0, disposition=0;
#define CHECK_MASK(a) ((flags&(a))==(a))
if( CHECK_MASK(O_CREAT|O_EXCL) )
disposition=CREATE_NEW;
else if( CHECK_MASK(O_CREAT|O_TRUNC) )
disposition=CREATE_ALWAYS;
else if( CHECK_MASK(O_CREAT) )
disposition=OPEN_ALWAYS;
else if( CHECK_MASK(O_TRUNC) )
disposition=TRUNCATE_EXISTING;
else
disposition=OPEN_EXISTING;
switch( flags&O_ACCMODE ) {
case O_RDONLY:
access=GENERIC_READ;
break;
case O_WRONLY:
access=GENERIC_WRITE;
break;
case O_RDWR:
access=GENERIC_READ|GENERIC_WRITE;
break;
}
static_cast<autohandle &>(*this)=autohandle(CreateFile(pathname, access,
FILE_SHARE_READ|FILE_SHARE_WRITE, // We are a unix program at heart
NULL, disposition, FILE_ATTRIBUTE_NORMAL, NULL ));
if( *this==INVALID_HANDLE_VALUE )
throw EXCEPT_CLASS("file open failed", Error2errno(GetLastError()), pathname );
}
#endif
// Default copy constructor and operator= do exactly what we want.
//autofd( const autofd &that )
//autofd &operator=( const autofd &that )
~autofd()
{
clear();
}
file_t get() const
{
return *static_cast<const autohandle *>(this);
}
operator file_t() const
{
return get();
}
// Standard io operations
private:
static ssize_t read( file_t fd, void *buf, size_t count )
{
DWORD ures;
if( !ReadFile( fd, buf, count, &ures, NULL ) && GetLastError()!=ERROR_BROKEN_PIPE )
throw rscerror("read failed", Error2errno(GetLastError()));
return ures;
}
public:
ssize_t read( void *buf, size_t count ) const
{
ssize_t num=read( *static_cast<const autohandle *>(this), buf, count );
if( num==0 )
f_eof=true;
return num;
}
private:
static ssize_t write( file_t fd, const void *buf, size_t count )
{
DWORD written;
if( !WriteFile( fd, buf, count, &written, NULL ) )
throw rscerror("write failed", Error2errno(GetLastError()));
return written;
}
public:
ssize_t write( const void *buf, size_t count )
{
return write( *static_cast<const autohandle *>(this), buf, count );
}
static struct stat lstat( const char *file_name )
{
return autofd::stat( file_name );
}
static struct stat stat( const char *file_name )
{
struct stat ret;
WIN32_FILE_ATTRIBUTE_DATA data;
if( !GetFileAttributesEx( file_name, GetFileExInfoStandard, &data ) )
throw rscerror("stat failed", Error2errno(GetLastError()), file_name);
ZeroMemory( &ret, sizeof(ret) );
ret.st_atime=ft2ut(data.ftLastAccessTime);
ret.st_ctime=ft2ut(data.ftCreationTime);
ret.st_mtime=ft2ut(data.ftLastWriteTime);
ret.st_dev=0;
ret.st_rdev=0;
if( data.dwFileAttributes&FILE_ATTRIBUTE_REPARSE_POINT ) {
// The Vista equivalent of a symbolic link, more or less
ret.st_mode=S_IFLNK;
} else if( data.dwFileAttributes&FILE_ATTRIBUTE_DIRECTORY ) {
ret.st_mode=S_IFDIR;
} else {
ret.st_mode=S_IFREG;
}
ret.st_nlink=1;
ret.st_size=data.nFileSizeHigh;
ret.st_size<<=32;
ret.st_size|=data.nFileSizeLow;
return ret;
}
struct stat fstat() const
{
struct stat ret;
BY_HANDLE_FILE_INFORMATION info;
if( !GetFileInformationByHandle(*this, &info ) )
throw rscerror("stat failed", Error2errno(GetLastError()));
ZeroMemory(&ret, sizeof(ret));
ret.st_atime=ft2ut(info.ftLastAccessTime);
ret.st_ctime=ft2ut(info.ftCreationTime);
ret.st_dev=0; // For a device - handle. Otherwise 0
ret.st_mode=S_IFREG; // unix mode
ret.st_mtime=ft2ut(info.ftLastWriteTime);
ret.st_nlink=static_cast<short>(info.nNumberOfLinks); // nlink
ret.st_rdev=0; // same as dev
ret.st_size=info.nFileSizeHigh;
ret.st_size<<=32;
ret.st_size|=info.nFileSizeLow;
return ret;
}
static off_t lseek( file_t file, off_t offset, int whence )
{
DWORD dwMoveMethod=0;
switch( whence ) {
case SEEK_SET:
dwMoveMethod=FILE_BEGIN;
break;
case SEEK_CUR:
dwMoveMethod=FILE_CURRENT;
break;
case SEEK_END:
dwMoveMethod=FILE_END;
break;
default:
throw rscerror("Invalid whence given", EINVAL);
}
LONG offsethigh, offsetlow;
offsetlow=static_cast<LONG>(offset);
offsethigh=static_cast<LONG>(offset>>32);
offsetlow=SetFilePointer( file, offsetlow, &offsethigh, dwMoveMethod );
offset=offsethigh;
offset<<=32;
offset|=offsetlow;
return offset;
}
off_t lseek( off_t offset, int whence ) const
{
return lseek( *static_cast<const autohandle *>(this), offset, whence );
}
static int utimes( const char *filename, const struct timeval tv[2])
{
FILETIME modtime, accesstime;
accesstime=ut2ft(tv[0].tv_sec);
modtime=ut2ft(tv[1].tv_sec);
// The only function in Windows that sets file modification/access times does so for
// open files only, so we have no choice but to open the file for write access
autofd file(filename, O_WRONLY);
if( SetFileTime(file, NULL, &accesstime, &modtime ) )
return 0;
else {
errno=Error2errno(GetLastError());
return -1;
}
}
static autofd dup( int filedes )
{
autofd orig_std(GetStdHandle(filedes));
autofd ret(orig_std.Duplicate(false));
orig_std.release();
return ret;
}
static void rmdir( const char *pathname )
{
if( !RemoveDirectory(pathname) ) {
DWORD error=GetLastError();
if( error!=ERROR_FILE_NOT_FOUND && error!=ERROR_PATH_NOT_FOUND )
throw rscerror("Error removing directory", Error2errno(error), pathname);
}
}
// Nonstandard file io
// Read from the stream up to, including, the newline
std::string readline() const
{
std::string ret;
char ch;
while( read( &ch, 1 )==1 && ch!='\n' ) {
ret+=ch;
}
if( ch=='\n' && ret.length()>0 && ret[ret.length()-1]=='\r' )
ret.resize(ret.length()-1);
return ret;
}
static void mv( const char *src, const char *dst ) {
if( !MoveFileEx( src, dst, MOVEFILE_REPLACE_EXISTING) ) {
throw rscerror("rename failed", Error2errno(GetLastError()), dst );
}
}
// Recursively create directories
// mode is the permissions of the end directory
// int_mode is the permissions of all intermediately created dirs
private:
static void mkpath_actual(const std::string &path, mode_t mode)
{
if( !CreateDirectory( path.c_str(), NULL ) && GetLastError()!=ERROR_ALREADY_EXISTS ) {
// "Creating" a drive letter may fail for a whole host of reasons while actually succeeding
if( path.length()!=2 || path[1]!=':' ||
// Got this far in the "if" only if we tried to create something of the form C:
// Only a ERROR_INVALID_DRIVE actually means an error
GetLastError()==ERROR_INVALID_DRIVE )
throw rscerror("mkdir failed", Error2errno(GetLastError()), path.c_str() );
}
}
public:
static void mkpath(const char *path, mode_t mode)
{
if( path[0]!='\0' ) {
for( int sublen=0; path[sublen]!='\0'; sublen++ ) {
if( sublen>0 && path[sublen]==DIRSEP_C && path[sublen+1]!=DIRSEP_C ) {
std::string subpath(path, sublen);
mkpath_actual(subpath, mode);
}
}
mkpath_actual(path, mode);
}
}
// Return the dir part of the name
static int dirpart( const char *path )
{
int i, last=0;
for( i=0; path[i]!='\0'; ++i ) {
if( path[i]==DIRSEP_C )
last=i;
}
return last;
}
static std::string combine_paths( const char *left, const char *right )
{
std::string ret(left);
int i;
// Trim trailing slashes
for( i=ret.length()-1; i>0 && ret[i]==DIRSEP_C; --i )
;
ret.resize(++i);
if( i>0 )
ret+=DIRSEP_S;
// Trim leading slashes
for( i=0; right[i]==DIRSEP_C; ++i )
;
ret+=right+i;
return ret;
}
// Status queries
bool eof() const
{
return f_eof;
}
};
#endif // _AUTOFD_H
|