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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
#include <precomp.h>
#include "autofd.h"
#include "autodir.h"
// Due to common implementation considerations, autofd and autodir's implementation are both in this file
// Translate utf-8 to wide characters
static auto_array<wchar_t> a2u( const char *str )
{
int newlen=MultiByteToWideChar( CP_UTF8, MB_ERR_INVALID_CHARS, str, -1, NULL, 0 );
if( newlen==0 ) {
throw( rscerror( _T("Ansi to Unicode conversion error"), Error2errno(GetLastError())) );
}
auto_array<wchar_t> buffer(new wchar_t[newlen+1]);
if( MultiByteToWideChar( CP_UTF8, MB_ERR_INVALID_CHARS, str, -1, buffer.get(), newlen )==0 ) {
throw( rscerror( _T("Ansi to Unicode conversion error"), Error2errno(GetLastError())) );
}
buffer[newlen]=L'\0';
return buffer;
}
// Unconditionally convert from Wide to ANSI
static auto_array<char> u2a( const wchar_t *str )
{
int newlen=WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, str, -1, NULL, 0, NULL, NULL );
if( newlen==0 ) {
throw( rscerror( _T("Unicode to Ansi conversion error"), GetLastError()) );
}
auto_array<char> buffer(new char[newlen+1]);
if( WideCharToMultiByte( CP_UTF8, WC_ERR_INVALID_CHARS, str, -1, buffer.get(), newlen, NULL, NULL )==0 ) {
throw( rscerror( _T("Ansi to Unicode conversion error"), GetLastError()) );
}
buffer[newlen]='\0';
return buffer;
}
FILETIME autofd::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;
}
time_t autofd::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;
}
autofd::autofd( const char *pathname, int flags, mode_t mode, bool utf8 ) : f_eof(false)
{
DWORD access=0, disposition=0;
WIN32_FILE_ATTRIBUTE_DATA file_attr;
if( GetFileAttributesEx( pathname, GetFileExInfoStandard, &file_attr ) ) {
if( file_attr.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) {
// Cannot open a directory
throw EXCEPT_CLASS("file open failed", EISDIR, pathname );
}
}
#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;
}
HANDLE newfile;
if( !utf8 )
newfile=CreateFileA(pathname, access,
FILE_SHARE_READ|FILE_SHARE_WRITE, // We are a unix program at heart
NULL, disposition, FILE_ATTRIBUTE_NORMAL, NULL );
else {
// Need to translate the file name to unicode
newfile=CreateFileW(a2u(pathname).get(), access,
FILE_SHARE_READ|FILE_SHARE_WRITE, // We are a unix program at heart
NULL, disposition, FILE_ATTRIBUTE_NORMAL, NULL );
}
static_cast<autohandle &>(*this)=autohandle(newfile);
if( *this==INVALID_HANDLE_VALUE )
throw EXCEPT_CLASS("file open failed", Error2errno(GetLastError()), pathname );
}
ssize_t autofd::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;
}
ssize_t autofd::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;
}
ssize_t autofd::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;
}
struct stat autofd::stat( const char *file_name, bool utf8 )
{
struct stat ret;
WIN32_FILE_ATTRIBUTE_DATA data;
if( !utf8 ) {
if( !GetFileAttributesExA( file_name, GetFileExInfoStandard, &data ) )
throw rscerror("stat failed", Error2errno(GetLastError()), file_name);
} else {
if( !GetFileAttributesExW( a2u(file_name).get(), 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 autofd::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;
}
off_t autofd::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;
}
int autofd::utimes( const char *filename, const struct timeval tv[2], bool utf8)
{
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, utf8);
if( SetFileTime(file, NULL, &accesstime, &modtime ) )
return 0;
else {
errno=Error2errno(GetLastError());
return -1;
}
}
autofd autofd::dup( int filedes )
{
autofd orig_std(GetStdHandle(filedes));
autofd ret(orig_std.Duplicate(false));
orig_std.release();
return ret;
}
void autofd::rmdir( const char *pathname, bool utf8 )
{
if( !(utf8?RemoveDirectoryW(a2u(pathname).get()):RemoveDirectoryA(pathname)) ) {
DWORD error=GetLastError();
if( error!=ERROR_FILE_NOT_FOUND && error!=ERROR_PATH_NOT_FOUND )
throw rscerror("Error removing directory", Error2errno(error), pathname);
}
}
void autofd::mv( const char *src, const char *dst, bool utf8 ) {
if( !(utf8?
MoveFileExW( a2u(src).get(), a2u(dst).get(), MOVEFILE_REPLACE_EXISTING):
MoveFileExA( src, dst, MOVEFILE_REPLACE_EXISTING)) )
{
throw rscerror("rename failed", Error2errno(GetLastError()), dst );
}
}
int autofd::unlink(const char *pathname, bool utf8)
{
DWORD error=ERROR_SUCCESS;
if( !(utf8?DeleteFileW( a2u(pathname).get() ):DeleteFileA( pathname ))
&& (error=GetLastError())!=ERROR_FILE_NOT_FOUND )
throw rscerror("Erasing file", Error2errno(GetLastError()), pathname );
if( error!=ERROR_SUCCESS ) {
errno=Error2errno(error);
return -1;
}
return 0;
}
// Recursively create directories
// mode is the permissions of the end directory
// int_mode is the permissions of all intermediately created dirs
static void mkpath_actual(const std::string &path, mode_t mode, bool utf8)
{
BOOL res;
if( utf8 )
res=CreateDirectoryW( a2u(path.c_str()).get(), NULL );
else
res=CreateDirectoryA( path.c_str(), NULL );
if( !res && 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() );
}
}
void autofd::mkpath(const char *path, mode_t mode, bool utf8)
{
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, utf8);
}
}
mkpath_actual(path, mode, utf8);
}
}
// Return the dir part of the name
int autofd::dirpart( const char *path, bool utf8 )
{
int i, last=0;
for( i=0; path[i]!='\0'; ++i ) {
if( path[i]==DIRSEP_C )
last=i;
}
return last;
}
std::string autofd::combine_paths( const char *left, const char *right, bool utf8 )
{
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;
}
std::string autofd::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;
}
// autodir implementation
autodir::autodir( const char *dirname, bool _utf8 ) : eof(false), utf8(_utf8)
{
WIN32_FILE_ATTRIBUTE_DATA file_attr;
if( GetFileAttributesEx( dirname, GetFileExInfoStandard, &file_attr ) ) {
if( !(file_attr.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ) {
// Cannot open a directory
throw EXCEPT_CLASS("opendir failed", ENOTDIR, dirname );
}
}
if( utf8 ) {
WIN32_FIND_DATAW wide_find_data;
h_dirscan=FindFirstFileW((std::basic_string<wchar_t>(a2u(dirname).get())+L"\\*").c_str(), &wide_find_data );
if( h_dirscan!=INVALID_HANDLE_VALUE )
data_w2a(&wide_find_data);
} else
h_dirscan=FindFirstFile((std::string(dirname)+"\\*").c_str(), &finddata );
#if defined(EXCEPT_CLASS)
if( h_dirscan==INVALID_HANDLE_VALUE )
throw rscerror("opendir failed", Error2errno(GetLastError()), dirname);
#endif
}
struct dirent *autodir::read()
{
if( !eof ) {
strcpy_s(posixdir.d_name, finddata.cFileName);
BOOL res;
if( utf8 ) {
WIN32_FIND_DATAW wide_data;
res=FindNextFileW(h_dirscan, &wide_data);
if( res )
data_w2a(&wide_data);
} else {
res=FindNextFileA(h_dirscan, &finddata);
}
if( !res ) {
eof=true;
DWORD error=GetLastError();
if( error!=ERROR_NO_MORE_FILES ) {
throw rscerror("Error getting directory listing", Error2errno(error));
}
}
return &posixdir;
} else {
return NULL;
}
}
void autodir::data_w2a( const WIN32_FIND_DATAW *data )
{
// Copy all identical file elements
finddata.dwFileAttributes=data->dwFileAttributes;
finddata.ftCreationTime=data->ftCreationTime;
finddata.ftLastAccessTime=data->ftLastAccessTime;
finddata.ftLastWriteTime=data->ftLastWriteTime;
finddata.nFileSizeHigh=data->nFileSizeHigh;
finddata.nFileSizeLow=data->nFileSizeLow;
finddata.dwReserved0=data->dwReserved0;
finddata.dwReserved1=data->dwReserved1;
// XXX What happens if the name is too long?
strncpy( finddata.cFileName, u2a(data->cFileName).get(), MAX_PATH );
for( int i=0; i<sizeof(finddata.cAlternateFileName); ++i ) {
// The short path is only ASCII characters
finddata.cAlternateFileName[i]=static_cast<CHAR>(data->cAlternateFileName[i]);
}
}
|