2004-01-16 03:57:45 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
2008-07-20 13:14:54 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2007-03-17 18:15:16 +01:00
|
|
|
|
2008-02-14 04:48:20 +01:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2008-07-20 13:14:54 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
2004-09-24 12:50:03 +02:00
|
|
|
// windows part
|
2005-08-18 13:20:17 +02:00
|
|
|
#include "libtorrent/utf8.hpp"
|
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
#include <windows.h>
|
|
|
|
#include <winioctl.h>
|
2004-03-31 01:55:52 +02:00
|
|
|
|
|
|
|
#else
|
2008-07-20 13:14:54 +02:00
|
|
|
// posix part
|
2004-03-31 01:55:52 +02:00
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2004-04-02 12:43:37 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2004-10-31 09:20:05 +01:00
|
|
|
#include <errno.h>
|
2004-03-31 01:55:52 +02:00
|
|
|
|
2005-08-23 11:59:56 +02:00
|
|
|
#include <boost/static_assert.hpp>
|
|
|
|
// make sure the _FILE_OFFSET_BITS define worked
|
|
|
|
// on this platform
|
|
|
|
BOOST_STATIC_ASSERT(sizeof(lseek(0, 0, 0)) >= 8);
|
|
|
|
|
2004-03-31 01:55:52 +02:00
|
|
|
#endif
|
|
|
|
|
2005-08-23 11:59:56 +02:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
#include "libtorrent/file.hpp"
|
|
|
|
#include <sstream>
|
2007-11-18 08:27:40 +01:00
|
|
|
#include <cstring>
|
2008-07-01 01:14:31 +02:00
|
|
|
#include <vector>
|
2005-08-23 11:59:56 +02:00
|
|
|
|
2008-12-09 04:45:58 +01:00
|
|
|
#ifdef TORRENT_USE_WPATH
|
|
|
|
// for safe_convert
|
2006-01-09 01:07:00 +01:00
|
|
|
#include "libtorrent/storage.hpp"
|
|
|
|
#endif
|
|
|
|
|
2007-10-06 19:27:53 +02:00
|
|
|
#include "libtorrent/assert.hpp"
|
2004-04-05 00:15:31 +02:00
|
|
|
|
2004-01-16 03:57:45 +01:00
|
|
|
namespace
|
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
2005-08-04 00:51:21 +02:00
|
|
|
std::string utf8_native(std::string const& s)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::wstring ws;
|
|
|
|
libtorrent::utf8_wchar(s, ws);
|
|
|
|
std::size_t size = wcstombs(0, ws.c_str(), 0);
|
|
|
|
if (size == std::size_t(-1)) return s;
|
|
|
|
std::string ret;
|
|
|
|
ret.resize(size);
|
|
|
|
size = wcstombs(&ret[0], ws.c_str(), size + 1);
|
2008-09-25 02:16:41 +02:00
|
|
|
if (size == std::size_t(-1)) return s;
|
2005-08-04 00:51:21 +02:00
|
|
|
ret.resize(size);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
catch(std::exception)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2007-06-10 22:46:09 +02:00
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
file::file()
|
2008-07-18 01:41:46 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
2008-07-20 13:14:54 +02:00
|
|
|
: m_file_handle(INVALID_HANDLE_VALUE)
|
2005-08-17 03:57:30 +02:00
|
|
|
#else
|
2008-07-20 13:14:54 +02:00
|
|
|
: m_fd(-1)
|
2008-07-18 01:41:46 +02:00
|
|
|
#endif
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-07-20 13:14:54 +02:00
|
|
|
, m_open_mode(0)
|
2008-07-18 01:41:46 +02:00
|
|
|
#endif
|
2008-07-20 13:14:54 +02:00
|
|
|
{}
|
2008-07-18 01:41:46 +02:00
|
|
|
|
2008-10-19 07:03:17 +02:00
|
|
|
file::file(fs::path const& path, int mode, error_code& ec)
|
2008-07-18 01:41:46 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
2008-07-20 13:14:54 +02:00
|
|
|
: m_file_handle(INVALID_HANDLE_VALUE)
|
|
|
|
#else
|
|
|
|
: m_fd(-1)
|
|
|
|
#endif
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-07-20 13:14:54 +02:00
|
|
|
, m_open_mode(0)
|
2005-08-17 03:57:30 +02:00
|
|
|
#endif
|
2008-07-20 13:14:54 +02:00
|
|
|
{
|
|
|
|
open(path, mode, ec);
|
|
|
|
}
|
2008-07-18 01:41:46 +02:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
file::~file()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-10-19 07:03:17 +02:00
|
|
|
bool file::open(fs::path const& path, int mode, error_code& ec)
|
2008-07-20 13:14:54 +02:00
|
|
|
{
|
|
|
|
close();
|
|
|
|
#ifdef TORRENT_WINDOWS
|
2004-04-03 00:21:20 +02:00
|
|
|
|
2008-12-09 04:45:58 +01:00
|
|
|
#ifdef TORRENT_USE_WPATH
|
2008-11-22 00:38:07 +01:00
|
|
|
std::wstring file_path(safe_convert(path.external_file_string()));
|
2006-11-14 01:08:16 +01:00
|
|
|
#else
|
2008-11-22 00:38:07 +01:00
|
|
|
std::string file_path = utf8_native(path.external_file_string());
|
2006-11-14 01:08:16 +01:00
|
|
|
#endif
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 18:34:01 +02:00
|
|
|
m_file_handle = CreateFile(
|
2008-07-20 13:14:54 +02:00
|
|
|
file_path.c_str()
|
2008-10-19 07:03:17 +02:00
|
|
|
, mode
|
2008-07-20 13:14:54 +02:00
|
|
|
, FILE_SHARE_READ
|
|
|
|
, 0
|
2008-10-19 07:03:17 +02:00
|
|
|
, (mode == read_write || mode == write_only)?OPEN_ALWAYS:OPEN_EXISTING
|
2008-07-20 13:14:54 +02:00
|
|
|
, FILE_ATTRIBUTE_NORMAL
|
|
|
|
, 0);
|
|
|
|
|
|
|
|
if (m_file_handle == INVALID_HANDLE_VALUE)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return false;
|
|
|
|
}
|
2004-03-31 01:55:52 +02:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
// try to make the file sparse if supported
|
2008-10-19 07:03:17 +02:00
|
|
|
if (mode == write_only || mode == read_write)
|
2008-07-20 13:14:54 +02:00
|
|
|
{
|
|
|
|
DWORD temp;
|
|
|
|
::DeviceIoControl(m_file_handle, FSCTL_SET_SPARSE, 0, 0
|
|
|
|
, 0, 0, &temp, 0);
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
2008-07-20 13:14:54 +02:00
|
|
|
#else
|
|
|
|
// rely on default umask to filter x and w permissions
|
|
|
|
// for group and others
|
2008-07-22 15:02:06 +02:00
|
|
|
int permissions = S_IRUSR | S_IWUSR
|
|
|
|
| S_IRGRP | S_IWGRP
|
|
|
|
| S_IROTH | S_IWOTH;
|
|
|
|
|
2008-11-22 00:38:07 +01:00
|
|
|
m_fd = ::open(path.external_file_string().c_str()
|
2008-10-19 07:03:17 +02:00
|
|
|
, mode, permissions);
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
if (m_fd == -1)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
ec = error_code(errno, get_posix_category());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-07-20 13:14:54 +02:00
|
|
|
m_open_mode = mode;
|
|
|
|
#endif
|
2008-07-20 18:34:01 +02:00
|
|
|
TORRENT_ASSERT(is_open());
|
2008-07-20 13:14:54 +02:00
|
|
|
return true;
|
|
|
|
}
|
2004-03-31 01:55:52 +02:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
bool file::is_open() const
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
return m_file_handle != INVALID_HANDLE_VALUE;
|
|
|
|
#else
|
|
|
|
return m_fd != -1;
|
|
|
|
#endif
|
|
|
|
}
|
2006-07-08 21:41:39 +02:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
void file::close()
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
if (m_file_handle == INVALID_HANDLE_VALUE) return;
|
|
|
|
CloseHandle(m_file_handle);
|
|
|
|
m_file_handle = INVALID_HANDLE_VALUE;
|
2006-11-14 01:08:16 +01:00
|
|
|
#else
|
2008-07-20 13:14:54 +02:00
|
|
|
if (m_fd == -1) return;
|
|
|
|
::close(m_fd);
|
|
|
|
m_fd = -1;
|
2006-11-14 01:08:16 +01:00
|
|
|
#endif
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-07-20 13:14:54 +02:00
|
|
|
m_open_mode = 0;
|
|
|
|
#endif
|
|
|
|
}
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
size_type file::read(char* buf, size_type num_bytes, error_code& ec)
|
|
|
|
{
|
2008-10-19 07:03:17 +02:00
|
|
|
TORRENT_ASSERT(m_open_mode == read_only || m_open_mode == read_write);
|
2008-07-20 13:14:54 +02:00
|
|
|
TORRENT_ASSERT(buf);
|
|
|
|
TORRENT_ASSERT(num_bytes >= 0);
|
|
|
|
TORRENT_ASSERT(is_open());
|
|
|
|
|
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
TORRENT_ASSERT(DWORD(num_bytes) == num_bytes);
|
|
|
|
DWORD ret = 0;
|
|
|
|
if (num_bytes != 0)
|
2007-04-19 05:06:15 +02:00
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
if (ReadFile(m_file_handle, buf, (DWORD)num_bytes, &ret, 0) == FALSE)
|
2007-08-11 17:22:06 +02:00
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return -1;
|
2007-08-11 17:22:06 +02:00
|
|
|
}
|
2007-04-19 05:06:15 +02:00
|
|
|
}
|
2004-03-31 01:55:52 +02:00
|
|
|
#else
|
2008-07-20 13:14:54 +02:00
|
|
|
size_type ret = ::read(m_fd, buf, num_bytes);
|
|
|
|
if (ret == -1) ec = error_code(errno, get_posix_category());
|
2004-03-31 01:55:52 +02:00
|
|
|
#endif
|
2008-07-20 13:14:54 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2004-04-05 00:15:31 +02:00
|
|
|
|
2009-01-01 02:47:57 +01:00
|
|
|
size_type file::readv(iovec_t const* bufs, int num_bufs, error_code& ec)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_open_mode == read_only || m_open_mode == read_write);
|
|
|
|
TORRENT_ASSERT(bufs);
|
|
|
|
TORRENT_ASSERT(num_bufs >= 0);
|
|
|
|
TORRENT_ASSERT(is_open());
|
|
|
|
|
|
|
|
#ifdef TORRENT_WINDOWS
|
2009-01-03 09:11:31 +01:00
|
|
|
// TODO: Replace with ReadFileScatter if possible
|
2009-01-01 02:47:57 +01:00
|
|
|
size_type ret = 0;
|
2009-01-03 09:11:31 +01:00
|
|
|
for (iovec_t const* i = bufs, *end(bufs + num_bufs); i < end; ++i)
|
2009-01-01 02:47:57 +01:00
|
|
|
{
|
|
|
|
if (i->iov_len <= 0) continue;
|
|
|
|
DWORD intermediate = 0;
|
|
|
|
if (ReadFile(m_file_handle, i->iov_base, (DWORD)i->iov_len, &intermediate, 0) == FALSE)
|
|
|
|
{
|
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret += intermediate;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
size_type ret = ::readv(m_fd, bufs, num_bufs);
|
|
|
|
if (ret == -1) ec = error_code(errno, get_posix_category());
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_type file::writev(iovec_t const* bufs, int num_bufs, error_code& ec)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_open_mode == write_only || m_open_mode == read_write);
|
|
|
|
TORRENT_ASSERT(bufs);
|
|
|
|
TORRENT_ASSERT(num_bufs >= 0);
|
|
|
|
TORRENT_ASSERT(is_open());
|
|
|
|
|
|
|
|
#ifdef TORRENT_WINDOWS
|
2009-01-03 09:11:31 +01:00
|
|
|
// Replace by WriteFileGather if possible
|
2009-01-01 02:47:57 +01:00
|
|
|
size_type ret = 0;
|
2009-01-03 09:11:31 +01:00
|
|
|
for (iovec_t const* i = bufs, *end(bufs + num_bufs); i < end; ++i)
|
2009-01-01 02:47:57 +01:00
|
|
|
{
|
|
|
|
if (i->iov_len <= 0) continue;
|
|
|
|
DWORD intermediate = 0;
|
|
|
|
if (WriteFile(m_file_handle, i->iov_base, (DWORD)i->iov_len, &intermediate, 0) == FALSE)
|
|
|
|
{
|
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret += intermediate;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
size_type ret = ::writev(m_fd, bufs, num_bufs);
|
|
|
|
if (ret == -1) ec = error_code(errno, get_posix_category());
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
size_type file::write(const char* buf, size_type num_bytes, error_code& ec)
|
|
|
|
{
|
2008-10-19 07:03:17 +02:00
|
|
|
TORRENT_ASSERT(m_open_mode == write_only || m_open_mode == read_write);
|
2008-07-20 13:14:54 +02:00
|
|
|
TORRENT_ASSERT(buf);
|
|
|
|
TORRENT_ASSERT(num_bytes >= 0);
|
|
|
|
TORRENT_ASSERT(is_open());
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
DWORD ret = 0;
|
|
|
|
if (num_bytes != 0)
|
|
|
|
{
|
|
|
|
if (WriteFile(m_file_handle, buf, (DWORD)num_bytes, &ret, 0) == FALSE)
|
|
|
|
{
|
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2004-02-19 17:47:12 +01:00
|
|
|
#else
|
2008-07-20 13:14:54 +02:00
|
|
|
size_type ret = ::write(m_fd, buf, num_bytes);
|
|
|
|
if (ret == -1) ec = error_code(errno, get_posix_category());
|
2004-02-19 17:47:12 +01:00
|
|
|
#endif
|
2008-07-20 13:14:54 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
bool file::set_size(size_type s, error_code& ec)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(is_open());
|
|
|
|
TORRENT_ASSERT(s >= 0);
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
size_type pos = tell(ec);
|
|
|
|
if (ec) return false;
|
|
|
|
seek(s, begin, ec);
|
|
|
|
if (ec) return false;
|
|
|
|
if (::SetEndOfFile(m_file_handle) == FALSE)
|
|
|
|
{
|
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (ftruncate(m_fd, s) < 0)
|
|
|
|
{
|
|
|
|
ec = error_code(errno, get_posix_category());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return true;
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
2008-10-19 07:03:17 +02:00
|
|
|
size_type file::seek(size_type offset, int m, error_code& ec)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
TORRENT_ASSERT(is_open());
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
LARGE_INTEGER offs;
|
|
|
|
offs.QuadPart = offset;
|
2008-10-19 07:03:17 +02:00
|
|
|
if (SetFilePointerEx(m_file_handle, offs, &offs, m) == FALSE)
|
2008-07-20 13:14:54 +02:00
|
|
|
{
|
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return offs.QuadPart;
|
|
|
|
#else
|
2008-10-19 07:03:17 +02:00
|
|
|
size_type ret = lseek(m_fd, offset, m);
|
2008-07-20 13:14:54 +02:00
|
|
|
if (ret < 0) ec = error_code(errno, get_posix_category());
|
|
|
|
return ret;
|
|
|
|
#endif
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
size_type file::tell(error_code& ec)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
2008-07-20 13:14:54 +02:00
|
|
|
TORRENT_ASSERT(is_open());
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
LARGE_INTEGER offs;
|
|
|
|
offs.QuadPart = 0;
|
2007-04-19 05:06:15 +02:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
// is there any other way to get offset?
|
|
|
|
if (SetFilePointerEx(m_file_handle, offs, &offs
|
|
|
|
, FILE_CURRENT) == FALSE)
|
|
|
|
{
|
|
|
|
ec = error_code(GetLastError(), get_system_category());
|
|
|
|
return -1;
|
|
|
|
}
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2008-07-20 13:14:54 +02:00
|
|
|
return offs.QuadPart;
|
|
|
|
#else
|
|
|
|
size_type ret;
|
|
|
|
ret = lseek(m_fd, 0, SEEK_CUR);
|
|
|
|
if (ret < 0) ec = error_code(errno, get_posix_category());
|
|
|
|
return ret;
|
|
|
|
#endif
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
}
|
2008-07-20 13:14:54 +02:00
|
|
|
|