From e17ba6dde7588f717bc5e79b3cb64cddd73d6173 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Tue, 6 May 2014 20:12:11 +0200 Subject: Added basic external read file function test case * ... as a test of how well we are able to test DOM structures * required change of constructDocument visibility --- src/support/filesystem_context.cc | 3 +++ src/support/filesystem_context.h | 1 + 2 files changed, 4 insertions(+) (limited to 'src/support') diff --git a/src/support/filesystem_context.cc b/src/support/filesystem_context.cc index 418d159..6ddbf7a 100644 --- a/src/support/filesystem_context.cc +++ b/src/support/filesystem_context.cc @@ -25,6 +25,9 @@ FilesystemContext::FilesystemContext(const xalan::Locator* locator): ).parent_path().string() )) { } +FilesystemContext::FilesystemContext(const std::string& path): + path_(boost::filesystem::canonical(path)) { } + boost::filesystem::path FilesystemContext::resolve( const std::string& path) const { return absolute(this->path_ / path); diff --git a/src/support/filesystem_context.h b/src/support/filesystem_context.h index 05d5862..6322da6 100644 --- a/src/support/filesystem_context.h +++ b/src/support/filesystem_context.h @@ -16,6 +16,7 @@ namespace InputXSLT { class FilesystemContext { public: explicit FilesystemContext(const xalan::Locator*); + explicit FilesystemContext(const std::string&); boost::filesystem::path resolve(const std::string&) const; boost::filesystem::path resolve(const xalan::XalanDOMString&) const; -- cgit v1.2.3