71 lines
1.9 KiB
C++
Executable File
71 lines
1.9 KiB
C++
Executable File
// Copyright Daniel Wallin 2006. Use, modification and distribution is
|
|
// subject to the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include <boost/python.hpp>
|
|
#include <boost/filesystem/path.hpp>
|
|
#include "libtorrent/utf8.hpp"
|
|
|
|
using namespace boost::python;
|
|
|
|
struct path_to_python
|
|
{
|
|
static PyObject* convert(boost::filesystem::path const& p)
|
|
{
|
|
return incref(object(p.string()).ptr());
|
|
}
|
|
};
|
|
|
|
struct path_from_python
|
|
{
|
|
path_from_python()
|
|
{
|
|
converter::registry::push_back(
|
|
&convertible, &construct, type_id<boost::filesystem::path>()
|
|
);
|
|
}
|
|
|
|
static void* convertible(PyObject* x)
|
|
{
|
|
return PyString_Check(x) ? x : PyUnicode_Check(x) ? x : 0;
|
|
}
|
|
|
|
static void construct(PyObject* x, converter::rvalue_from_python_stage1_data* data)
|
|
{
|
|
using libtorrent::wchar_utf8;
|
|
void* storage = ((converter::rvalue_from_python_storage<
|
|
boost::filesystem::path
|
|
>*)data)->storage.bytes;
|
|
if (PyUnicode_Check(x))
|
|
{
|
|
std::wstring str;
|
|
str.resize(PyUnicode_GetSize(x) + 1, 0);
|
|
int len = PyUnicode_AsWideChar((PyUnicodeObject*)x, &str[0], str.size());
|
|
if (len > -1)
|
|
{
|
|
assert(len < str.size());
|
|
str[len] = 0;
|
|
}
|
|
else str[str.size()-1] = 0;
|
|
std::string utf8 = wchar_utf8(str);
|
|
new (storage) boost::filesystem::path(utf8);
|
|
}
|
|
else
|
|
{
|
|
new (storage) boost::filesystem::path(PyString_AsString(x));
|
|
}
|
|
data->convertible = storage;
|
|
}
|
|
};
|
|
|
|
void bind_filesystem()
|
|
{
|
|
to_python_converter<boost::filesystem::path, path_to_python>();
|
|
path_from_python();
|
|
|
|
using namespace boost::filesystem;
|
|
if (path::default_name_check_writable())
|
|
path::default_name_check(no_check);
|
|
}
|
|
|