File: mbpath.cpp

package info (click to toggle)
boost1.83 1.83.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 545,632 kB
  • sloc: cpp: 3,857,086; xml: 125,552; ansic: 34,414; python: 25,887; asm: 5,276; sh: 4,799; ada: 1,681; makefile: 1,629; perl: 1,212; pascal: 1,139; sql: 810; yacc: 478; ruby: 102; lisp: 24; csh: 6
file content (78 lines) | stat: -rw-r--r-- 2,848 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//  Boost.Filesystem mbpath.cpp  ---------------------------------------------//

//  (c) Copyright Beman Dawes 2005

//  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)

//  See Boost.Filesystem home page at http://www.boost.org/libs/filesystem

#include <boost/filesystem/config.hpp>
#ifdef BOOST_FILESYSTEM_NARROW_ONLY
#error This compiler or standard library does not support wide-character strings or paths
#endif

#include "mbpath.hpp"
#include <boost/system/system_error.hpp>
#include <boost/scoped_array.hpp>

namespace fs = boost::filesystem;

namespace {

// ISO C calls this "the locale-specific native environment":
std::locale loc("");

const std::codecvt< wchar_t, char, std::mbstate_t >*
    cvt(&std::use_facet< std::codecvt< wchar_t, char, std::mbstate_t > >(loc));

} // namespace

namespace user {

mbpath_traits::external_string_type
mbpath_traits::to_external(const mbpath& ph, const internal_string_type& src)
{
    std::size_t work_size(cvt->max_length() * (src.size() + 1));
    boost::scoped_array< char > work(new char[work_size]);
    std::mbstate_t state;
    const internal_string_type::value_type* from_next;
    external_string_type::value_type* to_next;
    if (cvt->out(
            state, src.c_str(), src.c_str() + src.size(), from_next, work.get(),
            work.get() + work_size, to_next) != std::codecvt_base::ok)
        boost::throw_exception< fs::basic_filesystem_error< mbpath > >(
            fs::basic_filesystem_error< mbpath >(
                "user::mbpath::to_external conversion error",
                ph, boost::system::error_code(EINVAL, boost::system::errno_ecat)));
    *to_next = '\0';
    return external_string_type(work.get());
}

mbpath_traits::internal_string_type
mbpath_traits::to_internal(const external_string_type& src)
{
    std::size_t work_size(src.size() + 1);
    boost::scoped_array< wchar_t > work(new wchar_t[work_size]);
    std::mbstate_t state;
    const external_string_type::value_type* from_next;
    internal_string_type::value_type* to_next;
    if (cvt->in(
            state, src.c_str(), src.c_str() + src.size(), from_next, work.get(),
            work.get() + work_size, to_next) != std::codecvt_base::ok)
        boost::throw_exception< fs::basic_filesystem_error< mbpath > >(
            fs::basic_filesystem_error< mbpath >(
                "user::mbpath::to_internal conversion error",
                boost::system::error_code(EINVAL, boost::system::errno_ecat)));
    *to_next = L'\0';
    return internal_string_type(work.get());
}

void mbpath_traits::imbue(const std::locale& new_loc)
{
    loc = new_loc;
    cvt = &std::use_facet< std::codecvt< wchar_t, char, std::mbstate_t > >(loc);
}

} // namespace user