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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
#include "libtorrent/file.hpp"
|
2004-03-31 01:55:52 +02:00
|
|
|
#include <sstream>
|
|
|
|
|
2004-09-24 12:50:03 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
// windows part
|
2005-08-18 13:20:17 +02:00
|
|
|
#include "libtorrent/utf8.hpp"
|
|
|
|
|
2004-03-31 01:55:52 +02:00
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
2004-04-02 12:43:37 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2004-07-19 14:38:43 +02:00
|
|
|
|
|
|
|
#ifndef _MODE_T_
|
2004-04-02 12:43:37 +02:00
|
|
|
typedef int mode_t;
|
2004-07-19 14:38:43 +02:00
|
|
|
#endif
|
2004-03-31 01:55:52 +02:00
|
|
|
|
|
|
|
#else
|
2004-09-24 12:50:03 +02:00
|
|
|
// unix 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
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
2004-01-16 03:57:45 +01:00
|
|
|
|
2004-04-05 00:15:31 +02:00
|
|
|
#ifndef O_RANDOM
|
|
|
|
#define O_RANDOM 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-01-16 03:57:45 +01:00
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2004-01-16 16:07:01 +01:00
|
|
|
enum { mode_in = 1, mode_out = 2 };
|
|
|
|
|
2004-04-02 12:43:37 +02:00
|
|
|
mode_t map_open_mode(int m)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
2004-12-21 13:30:09 +01:00
|
|
|
if (m == (mode_in | mode_out)) return O_RDWR | O_CREAT | O_BINARY | O_RANDOM;
|
2004-04-05 00:15:31 +02:00
|
|
|
if (m == mode_out) return O_WRONLY | O_CREAT | O_BINARY | O_RANDOM;
|
|
|
|
if (m == mode_in) return O_RDONLY | O_BINARY | O_RANDOM;
|
2004-03-31 01:55:52 +02:00
|
|
|
assert(false);
|
2004-04-14 05:01:06 +02:00
|
|
|
return 0;
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
2005-08-04 00:51:21 +02:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
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);
|
2005-08-17 04:38:34 +02:00
|
|
|
if (size == wchar_t(-1)) return s;
|
2005-08-04 00:51:21 +02:00
|
|
|
ret.resize(size);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
catch(std::exception)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
std::string utf8_native(std::string const& s)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2004-01-16 16:07:01 +01:00
|
|
|
const file::open_mode file::in(mode_in);
|
|
|
|
const file::open_mode file::out(mode_out);
|
2004-01-16 03:57:45 +01:00
|
|
|
|
|
|
|
const file::seek_mode file::begin(1);
|
|
|
|
const file::seek_mode file::end(2);
|
|
|
|
|
|
|
|
struct file::impl
|
|
|
|
{
|
2004-03-31 01:55:52 +02:00
|
|
|
impl()
|
|
|
|
: m_fd(-1)
|
|
|
|
, m_open_mode(0)
|
|
|
|
{}
|
2004-01-16 03:57:45 +01:00
|
|
|
|
|
|
|
impl(fs::path const& path, int mode)
|
2004-03-31 01:55:52 +02:00
|
|
|
: m_fd(-1)
|
|
|
|
, m_open_mode(0)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
2004-03-31 01:55:52 +02:00
|
|
|
open(path, mode);
|
|
|
|
}
|
2004-01-16 16:07:01 +01:00
|
|
|
|
2004-03-31 01:55:52 +02:00
|
|
|
~impl()
|
|
|
|
{
|
|
|
|
close();
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void open(fs::path const& path, int mode)
|
|
|
|
{
|
2004-10-16 03:10:42 +02:00
|
|
|
assert(path.is_complete());
|
2004-03-31 01:55:52 +02:00
|
|
|
close();
|
2005-08-18 13:20:17 +02:00
|
|
|
#if defined(_WIN32) && defined(UNICODE)
|
2005-08-17 03:57:30 +02:00
|
|
|
std::wstring wpath(safe_convert(path.native_file_string()));
|
|
|
|
m_fd = ::_wopen(
|
|
|
|
wpath.c_str()
|
|
|
|
, map_open_mode(mode)
|
|
|
|
, S_IREAD | S_IWRITE);
|
|
|
|
#else
|
2004-04-02 12:43:37 +02:00
|
|
|
m_fd = ::open(
|
2005-08-04 00:51:21 +02:00
|
|
|
utf8_native(path.native_file_string()).c_str()
|
2004-04-02 12:43:37 +02:00
|
|
|
, map_open_mode(mode)
|
|
|
|
, S_IREAD | S_IWRITE);
|
2005-08-17 03:57:30 +02:00
|
|
|
#endif
|
2004-03-31 01:55:52 +02:00
|
|
|
if (m_fd == -1)
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << "open failed: '" << path.native_file_string() << "'. "
|
|
|
|
<< strerror(errno);
|
|
|
|
throw file_error(msg.str());
|
|
|
|
}
|
2004-04-02 12:43:37 +02:00
|
|
|
m_open_mode = mode;
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void close()
|
|
|
|
{
|
2004-03-31 01:55:52 +02:00
|
|
|
if (m_fd == -1) return;
|
2004-04-03 00:21:20 +02:00
|
|
|
|
2004-03-31 01:55:52 +02:00
|
|
|
::close(m_fd);
|
|
|
|
m_fd = -1;
|
2004-01-16 16:07:01 +01:00
|
|
|
m_open_mode = 0;
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_type read(char* buf, size_type num_bytes)
|
|
|
|
{
|
2004-12-21 13:30:09 +01:00
|
|
|
assert(m_open_mode & mode_in);
|
2004-03-31 01:55:52 +02:00
|
|
|
assert(m_fd != -1);
|
|
|
|
|
|
|
|
size_type ret = ::read(m_fd, buf, num_bytes);
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << "read failed: " << strerror(errno);
|
|
|
|
throw file_error(msg.str());
|
|
|
|
}
|
|
|
|
return ret;
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_type write(const char* buf, size_type num_bytes)
|
|
|
|
{
|
2004-12-21 13:30:09 +01:00
|
|
|
assert(m_open_mode & mode_out);
|
2004-03-31 01:55:52 +02:00
|
|
|
assert(m_fd != -1);
|
|
|
|
|
|
|
|
size_type ret = ::write(m_fd, buf, num_bytes);
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << "write failed: " << strerror(errno);
|
|
|
|
throw file_error(msg.str());
|
|
|
|
}
|
|
|
|
return ret;
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void seek(size_type offset, int m)
|
|
|
|
{
|
2004-01-16 16:07:01 +01:00
|
|
|
assert(m_open_mode);
|
2004-03-31 01:55:52 +02:00
|
|
|
assert(m_fd != -1);
|
|
|
|
|
|
|
|
int seekdir = (m == 1)?SEEK_SET:SEEK_END;
|
2004-09-24 12:50:03 +02:00
|
|
|
#ifdef _WIN32
|
2004-03-31 01:55:52 +02:00
|
|
|
size_type ret = _lseeki64(m_fd, offset, seekdir);
|
|
|
|
#else
|
|
|
|
size_type ret = lseek(m_fd, offset, seekdir);
|
|
|
|
#endif
|
2004-04-05 00:15:31 +02:00
|
|
|
|
|
|
|
// For some strange reason this fails
|
|
|
|
// on win32. Use windows specific file
|
|
|
|
// wrapper instead.
|
2004-03-31 01:55:52 +02:00
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
2004-04-05 00:15:31 +02:00
|
|
|
msg << "seek failed: '" << strerror(errno)
|
|
|
|
<< "' fd: " << m_fd
|
|
|
|
<< " offset: " << offset
|
|
|
|
<< " seekdir: " << seekdir;
|
2004-03-31 01:55:52 +02:00
|
|
|
throw file_error(msg.str());
|
|
|
|
}
|
2004-04-05 00:15:31 +02:00
|
|
|
|
2004-01-16 03:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_type tell()
|
|
|
|
{
|
2004-01-16 16:07:01 +01:00
|
|
|
assert(m_open_mode);
|
2004-03-31 01:55:52 +02:00
|
|
|
assert(m_fd != -1);
|
2004-01-16 16:07:01 +01:00
|
|
|
|
2004-09-24 12:50:03 +02:00
|
|
|
#ifdef _WIN32
|
2004-03-31 01:55:52 +02:00
|
|
|
return _telli64(m_fd);
|
2004-02-19 17:47:12 +01:00
|
|
|
#else
|
2004-03-31 01:55:52 +02:00
|
|
|
return lseek(m_fd, 0, SEEK_CUR);
|
2004-02-19 17:47:12 +01:00
|
|
|
#endif
|
2004-03-31 01:55:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int m_fd;
|
2004-01-16 16:07:01 +01:00
|
|
|
int m_open_mode;
|
2004-01-16 03:57:45 +01:00
|
|
|
};
|
|
|
|
|
2004-01-16 13:43:23 +01:00
|
|
|
// pimpl forwardings
|
2004-01-16 03:57:45 +01:00
|
|
|
|
|
|
|
file::file() : m_impl(new impl()) {}
|
|
|
|
|
|
|
|
file::file(boost::filesystem::path const& p, file::open_mode m)
|
|
|
|
: m_impl(new impl(p, m.m_mask))
|
|
|
|
{}
|
|
|
|
|
|
|
|
file::~file() {}
|
|
|
|
|
|
|
|
void file::open(boost::filesystem::path const& p, file::open_mode m)
|
|
|
|
{
|
|
|
|
m_impl->open(p, m.m_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void file::close()
|
|
|
|
{
|
|
|
|
m_impl->close();
|
|
|
|
}
|
|
|
|
|
2004-01-18 02:58:33 +01:00
|
|
|
size_type file::write(const char* buf, size_type num_bytes)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
|
|
|
return m_impl->write(buf, num_bytes);
|
|
|
|
}
|
|
|
|
|
2004-01-18 02:58:33 +01:00
|
|
|
size_type file::read(char* buf, size_type num_bytes)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
|
|
|
return m_impl->read(buf, num_bytes);
|
|
|
|
}
|
|
|
|
|
2004-01-18 02:58:33 +01:00
|
|
|
void file::seek(size_type pos, file::seek_mode m)
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
|
|
|
m_impl->seek(pos, m.m_val);
|
|
|
|
}
|
|
|
|
|
2004-01-18 02:58:33 +01:00
|
|
|
size_type file::tell()
|
2004-01-16 03:57:45 +01:00
|
|
|
{
|
|
|
|
return m_impl->tell();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|