mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 18:38:30 +08:00

Add the completed std::experimental::filesystem implementation and tests. The implementation supports C++11 or newer. The TS is built as part of 'libc++experimental.a'. Users of the TS need to manually link this library. Building and testing the TS can be disabled using the CMake option '-DLIBCXX_ENABLE_FILESYSTEM=OFF'. Currently 'libc++experimental.a' is not installed by default. To turn on the installation of the library use '-DLIBCXX_INSTALL_EXPERIMENTAL_LIBRARY=ON'. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@273034 91177308-0d34-0410-b5e6-96231b3b80d8
114 lines
3.4 KiB
C++
114 lines
3.4 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03
|
|
|
|
// <experimental/filesystem>
|
|
|
|
// class path
|
|
|
|
// template <class ECharT, class Traits = char_traits<ECharT>,
|
|
// class Allocator = allocator<ECharT>>
|
|
// basic_string<ECharT, Traits, Allocator>
|
|
// string(const Allocator& a = Allocator()) const;
|
|
|
|
#include <experimental/filesystem>
|
|
#include <type_traits>
|
|
#include <cassert>
|
|
|
|
#include "test_macros.h"
|
|
#include "test_iterators.h"
|
|
#include "count_new.hpp"
|
|
#include "min_allocator.h"
|
|
#include "filesystem_test_helper.hpp"
|
|
|
|
namespace fs = std::experimental::filesystem;
|
|
|
|
MultiStringType shortString = MKSTR("abc");
|
|
MultiStringType longString = MKSTR("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/123456789/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
|
|
|
|
template <class CharT>
|
|
void doShortStringTest(MultiStringType const& MS) {
|
|
using namespace fs;
|
|
using Ptr = CharT const*;
|
|
using Str = std::basic_string<CharT>;
|
|
using Alloc = std::allocator<CharT>;
|
|
Ptr value = MS;
|
|
const path p((const char*)MS);
|
|
{
|
|
DisableAllocationGuard g; // should not allocate
|
|
Str s = p.string<CharT>();
|
|
assert(s == value);
|
|
Str s2 = p.string<CharT>(Alloc{});
|
|
assert(s2 == value);
|
|
}
|
|
}
|
|
|
|
template <class CharT>
|
|
void doLongStringTest(MultiStringType const& MS) {
|
|
using namespace fs;
|
|
using Ptr = CharT const*;
|
|
using Str = std::basic_string<CharT>;
|
|
Ptr value = MS;
|
|
const path p((const char*)MS);
|
|
{ // Default allocator
|
|
using Alloc = std::allocator<CharT>;
|
|
RequireAllocationGuard g; // should not allocate because
|
|
Str s = p.string<CharT>();
|
|
assert(s == value);
|
|
Str s2 = p.string<CharT>(Alloc{});
|
|
assert(s2 == value);
|
|
}
|
|
using MAlloc = malloc_allocator<CharT>;
|
|
MAlloc::reset();
|
|
{ // Other allocator - default construct
|
|
using Traits = std::char_traits<CharT>;
|
|
using AStr = std::basic_string<CharT, Traits, MAlloc>;
|
|
DisableAllocationGuard g;
|
|
AStr s = p.string<CharT, Traits, MAlloc>();
|
|
assert(s == value);
|
|
assert(MAlloc::alloc_count > 0);
|
|
assert(MAlloc::outstanding_alloc() == 1);
|
|
}
|
|
MAlloc::reset();
|
|
{ // Other allocator - provided copy
|
|
using Traits = std::char_traits<CharT>;
|
|
using AStr = std::basic_string<CharT, Traits, MAlloc>;
|
|
DisableAllocationGuard g;
|
|
MAlloc a;
|
|
// don't allow another allocator to be default constructed.
|
|
MAlloc::disable_default_constructor = true;
|
|
AStr s = p.string<CharT, Traits, MAlloc>(a);
|
|
assert(s == value);
|
|
assert(MAlloc::alloc_count > 0);
|
|
assert(MAlloc::outstanding_alloc() == 1);
|
|
}
|
|
MAlloc::reset();
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
}
|
|
|
|
int main()
|
|
{
|
|
using namespace fs;
|
|
{
|
|
auto const& S = shortString;
|
|
doShortStringTest<char>(S);
|
|
doShortStringTest<wchar_t>(S);
|
|
doShortStringTest<char16_t>(S);
|
|
doShortStringTest<char32_t>(S);
|
|
}
|
|
{
|
|
auto const& S = longString;
|
|
doLongStringTest<char>(S);
|
|
doLongStringTest<wchar_t>(S);
|
|
doLongStringTest<char16_t>(S);
|
|
doLongStringTest<char32_t>(S);
|
|
}
|
|
}
|