//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template <> class codecvt // result out(stateT& state, // const internT* from, const internT* from_end, const internT*& from_next, // externT* to, externT* to_end, externT*& to_next) const; #include #include #include #include typedef std::codecvt F; int main() { std::locale l = std::locale::classic(); const F& f = std::use_facet(l); { const std::basic_string from(L"some text"); std::vector to(from.size()+1); std::mbstate_t mbs = {0}; const F::intern_type* from_next = 0; char* to_next = 0; F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next, to.data(), to.data() + to.size(), to_next); assert(r == F::ok); assert(from_next - from.data() == from.size()); assert(to_next - to.data() == from.size()); assert(to.data() == std::string("some text")); } { std::basic_string from(L"some text"); from[4] = '\0'; std::vector to(from.size()+1); std::mbstate_t mbs = {0}; const F::intern_type* from_next = 0; char* to_next = 0; F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next, to.data(), to.data() + to.size(), to_next); assert(r == F::ok); assert(from_next - from.data() == from.size()); assert(to_next - to.data() == from.size()); assert(memcmp(to.data(), "some\0text", from.size()) == 0); } { std::basic_string from(L"some text"); std::vector to(from.size()-1); std::mbstate_t mbs = {0}; const F::intern_type* from_next = 0; char* to_next = 0; F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next, to.data(), to.data() + to.size()-1, to_next); assert(r == F::partial); assert(from_next - from.data() == to.size()-1); assert(to_next - to.data() == to.size()-1); assert(to.data() == std::string("some te")); } }