@ -102,7 +102,8 @@ WinEnvIO::~WinEnvIO() {
Status WinEnvIO : : DeleteFile ( const std : : string & fname ) {
Status result ;
BOOL ret = DeleteFileA ( fname . c_str ( ) ) ;
BOOL ret = RX_DeleteFile ( RX_FN ( fname ) . c_str ( ) ) ;
if ( ! ret ) {
auto lastError = GetLastError ( ) ;
result = IOErrorFromWindowsError ( " Failed to delete: " + fname ,
@ -114,7 +115,7 @@ Status WinEnvIO::DeleteFile(const std::string& fname) {
Status WinEnvIO : : Truncate ( const std : : string & fname , size_t size ) {
Status s ;
int result = truncate ( fname . c_str ( ) , size ) ;
int result = rocksdb : : port : : Truncate ( fname , size ) ;
if ( result ! = 0 ) {
s = IOError ( " Failed to truncate: " + fname , errno ) ;
}
@ -151,8 +152,8 @@ Status WinEnvIO::NewSequentialFile(const std::string& fname,
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile = CreateFileA (
fname . c_str ( ) , GENERIC_READ ,
hFile = RX_ CreateFile(
RX_FN ( fname ) . c_str ( ) , GENERIC_READ ,
FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE , NULL ,
OPEN_EXISTING , // Original fopen mode is "rb"
fileFlags , NULL ) ;
@ -190,7 +191,7 @@ Status WinEnvIO::NewRandomAccessFile(const std::string& fname,
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile =
CreateFileA ( fname . c_str ( ) , GENERIC_READ ,
RX_CreateFile ( RX_FN ( fname ) . c_str ( ) , GENERIC_READ ,
FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE ,
NULL , OPEN_EXISTING , fileFlags , NULL ) ;
}
@ -217,7 +218,7 @@ Status WinEnvIO::NewRandomAccessFile(const std::string& fname,
" NewRandomAccessFile failed to map empty file: " + fname , EINVAL ) ;
}
HANDLE hMap = CreateFileMappingA ( hFile , NULL , PAGE_READONLY ,
HANDLE hMap = RX_ CreateFileMapping( hFile , NULL , PAGE_READONLY ,
0 , // Whole file at its present length
0 ,
NULL ) ; // Mapping name
@ -302,8 +303,8 @@ Status WinEnvIO::OpenWritableFile(const std::string& fname,
HANDLE hFile = 0 ;
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile = CreateFileA (
fname . c_str ( ) ,
hFile = RX_ CreateFile(
RX_FN ( fname ) . c_str ( ) ,
desired_access , // Access desired
shared_mode ,
NULL , // Security attributes
@ -366,7 +367,7 @@ Status WinEnvIO::NewRandomRWFile(const std::string & fname,
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile =
CreateFileA ( fname . c_str ( ) ,
RX_CreateFile ( RX_FN ( fname ) . c_str ( ) ,
desired_access ,
shared_mode ,
NULL , // Security attributes
@ -399,8 +400,8 @@ Status WinEnvIO::NewMemoryMappedFileBuffer(const std::string & fname,
HANDLE hFile = INVALID_HANDLE_VALUE ;
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile = CreateFileA (
fname . c_str ( ) , GENERIC_READ | GENERIC_WRITE ,
hFile = RX_ CreateFile(
RX_FN ( fname ) . c_str ( ) , GENERIC_READ | GENERIC_WRITE ,
FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE ,
NULL ,
OPEN_EXISTING , // Open only if it exists
@ -432,7 +433,7 @@ Status WinEnvIO::NewMemoryMappedFileBuffer(const std::string & fname,
" The specified file size does not fit into 32-bit memory addressing: " + fname ) ;
}
HANDLE hMap = CreateFileMappingA ( hFile , NULL , PAGE_READWRITE ,
HANDLE hMap = RX_ CreateFileMapping( hFile , NULL , PAGE_READWRITE ,
0 , // Whole file at its present length
0 ,
NULL ) ; // Mapping name
@ -483,7 +484,7 @@ Status WinEnvIO::NewDirectory(const std::string& name,
// 0 - for access means read metadata
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
handle = : : CreateFileA ( name . c_str ( ) , 0 ,
handle = RX_CreateFile ( RX_FN ( name ) . c_str ( ) , 0 ,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE ,
NULL ,
OPEN_EXISTING ,
@ -509,8 +510,7 @@ Status WinEnvIO::FileExists(const std::string& fname) {
// which is consistent with _access() impl on windows
// but can be added
WIN32_FILE_ATTRIBUTE_DATA attrs ;
if ( FALSE = = GetFileAttributesExA ( fname . c_str ( ) , GetFileExInfoStandard ,
& attrs ) ) {
if ( FALSE = = RX_GetFileAttributesEx ( RX_FN ( fname ) . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
auto lastError = GetLastError ( ) ;
switch ( lastError ) {
case ERROR_ACCESS_DENIED :
@ -535,11 +535,12 @@ Status WinEnvIO::GetChildren(const std::string& dir,
result - > clear ( ) ;
std : : vector < std : : string > output ;
WIN32_FIND_DATA data ;
RX_WIN32_FIND_DATA data ;
memset ( & data , 0 , sizeof ( data ) ) ;
std : : string pattern ( dir ) ;
pattern . append ( " \\ " ) . append ( " * " ) ;
HANDLE handle = : : FindFirstFileExA ( pattern . c_str ( ) ,
HANDLE handle = RX_FindFirstFileEx ( RX_FN ( pattern ) . c_str ( ) ,
FindExInfoBasic , // Do not want alternative name
& data ,
FindExSearchNameMatch ,
@ -572,8 +573,9 @@ Status WinEnvIO::GetChildren(const std::string& dir,
data . cFileName [ MAX_PATH - 1 ] = 0 ;
while ( true ) {
output . emplace_back ( data . cFileName ) ;
BOOL ret = - : : FindNextFileA ( handle , & data ) ;
auto x = RX_FILESTRING ( data . cFileName , RX_FNLEN ( data . cFileName ) ) ;
output . emplace_back ( FN_TO_RX ( x ) ) ;
BOOL ret = - RX_FindNextFile ( handle , & data ) ;
// If the function fails the return value is zero
// and non-zero otherwise. Not TRUE or FALSE.
if ( ret = = FALSE ) {
@ -588,8 +590,7 @@ Status WinEnvIO::GetChildren(const std::string& dir,
Status WinEnvIO : : CreateDir ( const std : : string & name ) {
Status result ;
BOOL ret = CreateDirectoryA ( name . c_str ( ) , NULL ) ;
BOOL ret = RX_CreateDirectory ( RX_FN ( name ) . c_str ( ) , NULL ) ;
if ( ! ret ) {
auto lastError = GetLastError ( ) ;
result = IOErrorFromWindowsError (
@ -606,7 +607,7 @@ Status WinEnvIO::CreateDirIfMissing(const std::string& name) {
return result ;
}
BOOL ret = CreateDirectoryA ( name . c_str ( ) , NULL ) ;
BOOL ret = RX_CreateDirectory ( RX_FN ( name ) . c_str ( ) , NULL ) ;
if ( ! ret ) {
auto lastError = GetLastError ( ) ;
if ( lastError ! = ERROR_ALREADY_EXISTS ) {
@ -622,7 +623,7 @@ Status WinEnvIO::CreateDirIfMissing(const std::string& name) {
Status WinEnvIO : : DeleteDir ( const std : : string & name ) {
Status result ;
BOOL ret = RemoveDirectoryA ( name . c_str ( ) ) ;
BOOL ret = RX_RemoveDirectory ( RX_FN ( name ) . c_str ( ) ) ;
if ( ! ret ) {
auto lastError = GetLastError ( ) ;
result = IOErrorFromWindowsError ( " Failed to remove dir: " + name , lastError ) ;
@ -635,7 +636,7 @@ Status WinEnvIO::GetFileSize(const std::string& fname,
Status s ;
WIN32_FILE_ATTRIBUTE_DATA attrs ;
if ( GetFileAttributesExA ( fname . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
if ( RX_GetFileAttributesEx ( RX_FN ( fname ) . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
ULARGE_INTEGER file_size ;
file_size . HighPart = attrs . nFileSizeHigh ;
file_size . LowPart = attrs . nFileSizeLow ;
@ -670,7 +671,7 @@ Status WinEnvIO::GetFileModificationTime(const std::string& fname,
Status s ;
WIN32_FILE_ATTRIBUTE_DATA attrs ;
if ( GetFileAttributesExA ( fname . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
if ( RX_GetFileAttributesEx ( RX_FN ( fname ) . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
* file_mtime = FileTimeToUnixTime ( attrs . ftLastWriteTime ) ;
} else {
auto lastError = GetLastError ( ) ;
@ -688,7 +689,7 @@ Status WinEnvIO::RenameFile(const std::string& src,
// rename() is not capable of replacing the existing file as on Linux
// so use OS API directly
if ( ! MoveFileExA ( src . c_str ( ) , target . c_str ( ) , MOVEFILE_REPLACE_EXISTING ) ) {
if ( ! RX_MoveFileEx ( RX_FN ( src ) . c_str ( ) , RX_FN ( target ) . c_str ( ) , MOVEFILE_REPLACE_EXISTING ) ) {
DWORD lastError = GetLastError ( ) ;
std : : string text ( " Failed to rename: " ) ;
@ -704,7 +705,7 @@ Status WinEnvIO::LinkFile(const std::string& src,
const std : : string & target ) {
Status result ;
if ( ! CreateHardLinkA ( target . c_str ( ) , src . c_str ( ) , NULL ) ) {
if ( ! RX_CreateHardLink ( RX_FN ( target ) . c_str ( ) , RX_FN ( src ) . c_str ( ) , NULL ) ) {
DWORD lastError = GetLastError ( ) ;
if ( lastError = = ERROR_NOT_SAME_DEVICE ) {
return Status : : NotSupported ( " No cross FS links allowed " ) ;
@ -721,8 +722,9 @@ Status WinEnvIO::LinkFile(const std::string& src,
Status WinEnvIO : : NumFileLinks ( const std : : string & fname , uint64_t * count ) {
Status s ;
HANDLE handle = : : CreateFileA (
fname . c_str ( ) , 0 , FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE ,
HANDLE handle = RX_CreateFile (
RX_FN ( fname ) . c_str ( ) , 0 ,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE ,
NULL , OPEN_EXISTING , FILE_FLAG_BACKUP_SEMANTICS , NULL ) ;
if ( INVALID_HANDLE_VALUE = = handle ) {
@ -758,7 +760,7 @@ Status WinEnvIO::AreFilesSame(const std::string& first,
}
// 0 - for access means read metadata
HANDLE file_1 = : : CreateFileA ( first . c_str ( ) , 0 ,
HANDLE file_1 = RX_CreateFile ( RX_FN ( first ) . c_str ( ) , 0 ,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE ,
NULL ,
OPEN_EXISTING ,
@ -773,7 +775,7 @@ Status WinEnvIO::AreFilesSame(const std::string& first,
}
UniqueCloseHandlePtr g_1 ( file_1 , CloseHandleFunc ) ;
HANDLE file_2 = : : CreateFileA ( second . c_str ( ) , 0 ,
HANDLE file_2 = RX_CreateFile ( RX_FN ( second ) . c_str ( ) , 0 ,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE ,
NULL , OPEN_EXISTING ,
FILE_FLAG_BACKUP_SEMANTICS , // make opening folders possible
@ -835,7 +837,7 @@ Status WinEnvIO::LockFile(const std::string& lockFname,
HANDLE hFile = 0 ;
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile = CreateFileA ( lockFname . c_str ( ) , ( GENERIC_READ | GENERIC_WRITE ) ,
hFile = RX_CreateFile ( RX_FN ( lockFname ) . c_str ( ) , ( GENERIC_READ | GENERIC_WRITE ) ,
ExclusiveAccessON , NULL , CREATE_ALWAYS ,
FILE_ATTRIBUTE_NORMAL , NULL ) ;
}
@ -898,8 +900,8 @@ Status WinEnvIO::NewLogger(const std::string& fname,
HANDLE hFile = 0 ;
{
IOSTATS_TIMER_GUARD ( open_nanos ) ;
hFile = CreateFileA (
fname . c_str ( ) , GENERIC_WRITE ,
hFile = RX_ CreateFile(
RX_FN ( fname ) . c_str ( ) , GENERIC_WRITE ,
FILE_SHARE_READ | FILE_SHARE_DELETE , // In RocksDb log files are
// renamed and deleted before
// they are closed. This enables
@ -992,17 +994,17 @@ Status WinEnvIO::GetAbsolutePath(const std::string& db_path,
// For test compatibility we will consider starting slash as an
// absolute path
if ( ( ! db_path . empty ( ) & & ( db_path [ 0 ] = = ' \\ ' | | db_path [ 0 ] = = ' / ' ) ) | |
! PathIsRelativeA ( db_path . c_str ( ) ) ) {
! RX_PathIsRelative ( RX_FN ( db_path ) . c_str ( ) ) ) {
* output_path = db_path ;
return Status : : OK ( ) ;
}
std : : string result ;
RX_FILESTRING result ;
result . resize ( MAX_PATH ) ;
// Hopefully no changes the current directory while we do this
// however _getcwd also suffers from the same limitation
DWORD len = GetCurrentDirectoryA ( MAX_PATH , & result [ 0 ] ) ;
DWORD len = RX_ GetCurrentDirectory( MAX_PATH , & result [ 0 ] ) ;
if ( len = = 0 ) {
auto lastError = GetLastError ( ) ;
return IOErrorFromWindowsError ( " Failed to get current working directory " ,
@ -1010,8 +1012,9 @@ Status WinEnvIO::GetAbsolutePath(const std::string& db_path,
}
result . resize ( len ) ;
result . swap ( * output_path ) ;
std : : string res = FN_TO_RX ( result ) ;
res . swap ( * output_path ) ;
return Status : : OK ( ) ;
}
@ -1076,7 +1079,7 @@ EnvOptions WinEnvIO::OptimizeForManifestRead(
// Returns true iff the named directory exists and is a directory.
bool WinEnvIO : : DirExists ( const std : : string & dname ) {
WIN32_FILE_ATTRIBUTE_DATA attrs ;
if ( GetFileAttributesExA ( dname . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
if ( RX_GetFileAttributesEx ( RX_FN ( dname ) . c_str ( ) , GetFileExInfoStandard , & attrs ) ) {
return 0 ! = ( attrs . dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ) ;
}
return false ;
@ -1085,7 +1088,7 @@ bool WinEnvIO::DirExists(const std::string& dname) {
size_t WinEnvIO : : GetSectorSize ( const std : : string & fname ) {
size_t sector_size = kSectorSize ;
if ( PathIsRelativeA ( fname . c_str ( ) ) ) {
if ( RX_PathIsRelative ( RX_FN ( fname ) . c_str ( ) ) ) {
return sector_size ;
}