mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
bee27669f7
Fixed bug from [8370], reimplemented native windows calls git-svn-id: file:///svn/toku/tokudb.1032b@8376 c7de825b-a66e-492c-adef-691d508d4ae1
67 lines
1.7 KiB
C
67 lines
1.7 KiB
C
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
#include <windows.h>
|
|
|
|
int64_t
|
|
pread(int fildes, void *buf, size_t nbyte, int64_t offset) {
|
|
HANDLE filehandle;
|
|
OVERLAPPED win_offset = {0};
|
|
filehandle = (HANDLE)_get_osfhandle(fildes);
|
|
int64_t r;
|
|
if (filehandle==INVALID_HANDLE_VALUE) {
|
|
r = errno; assert(r!=0);
|
|
goto cleanup;
|
|
}
|
|
win_offset.Offset = offset % (1LL<<32LL);
|
|
win_offset.OffsetHigh = offset / (1LL<<32LL);
|
|
|
|
DWORD bytes_read;
|
|
r = ReadFile(filehandle, buf, nbyte, &bytes_read, &win_offset);
|
|
if (!r) {
|
|
r = GetLastError();
|
|
if (r==ERROR_HANDLE_EOF) r = bytes_read;
|
|
}
|
|
else r = bytes_read;
|
|
|
|
// printf("%s: %d %p %u %I64d %I64d\n", __FUNCTION__, fildes, buf, nbyte, offset, r); fflush(stdout);
|
|
cleanup:
|
|
return r;
|
|
}
|
|
|
|
int64_t
|
|
pwrite(int fildes, const void *buf, size_t nbyte, int64_t offset) {
|
|
HANDLE filehandle;
|
|
OVERLAPPED win_offset = {0};
|
|
filehandle = (HANDLE)_get_osfhandle(fildes);
|
|
int64_t r;
|
|
if (filehandle==INVALID_HANDLE_VALUE) {
|
|
r = errno; assert(r!=0);
|
|
goto cleanup;
|
|
}
|
|
win_offset.Offset = offset % (1LL<<32LL);
|
|
win_offset.OffsetHigh = offset / (1LL<<32LL);
|
|
|
|
DWORD bytes_written;
|
|
r = WriteFile(filehandle, buf, nbyte, &bytes_written, &win_offset);
|
|
if (!r) r = GetLastError();
|
|
else r = bytes_written;
|
|
|
|
// printf("%s: %d %p %u %I64d %I64d\n", __FUNCTION__, fildes, buf, nbyte, offset, r); fflush(stdout);
|
|
cleanup:
|
|
return r;
|
|
}
|
|
|
|
int
|
|
fsync(int fd) {
|
|
int r = _commit(fd);
|
|
return r;
|
|
}
|
|
|
|
int
|
|
ftruncate(int fd, int64_t offset) {
|
|
int r = _chsize_s(fd, offset);
|
|
return r;
|
|
}
|
|
|