aboutsummaryrefslogtreecommitdiff
path: root/src/support/filesystem_context.cc
blob: a18ec43fd781c6758c82fb3e45dcc49ba96482a9 (plain)
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
#include "filesystem_context.h"

#include <algorithm>
#include <iterator>

#include "support/xalan_string.h"
#include "support/xerces_string_guard.h"

namespace InputXSLT {

FilesystemContext::FilesystemContext(const boost::filesystem::path& path):
	path_(boost::filesystem::canonical(
		path.parent_path()
	)) { }

FilesystemContext::FilesystemContext(const std::string& path):
	path_(boost::filesystem::canonical(path)) { }

boost::filesystem::path FilesystemContext::resolve(
	const std::string& path) const {
	const boost::filesystem::path targetPath(path);

	if ( targetPath.is_absolute() ) {
		return targetPath;
	} else {
		return absolute(this->path_ / targetPath);
	}
}

boost::filesystem::path FilesystemContext::resolve(
	const xalan::XalanDOMString& path) const {
	return this->resolve(toString(path));
}

void FilesystemContext::iterate(
	const std::string& path,
	const std::function<void(const boost::filesystem::path&)>& func
) const {
	this->iterate(this->resolve(path), func);
}

void FilesystemContext::iterate(
	const xalan::XalanDOMString& path,
	const std::function<void(const boost::filesystem::path&)>& func
) const {
	this->iterate(toString(path), func);
}

void FilesystemContext::iterate(
	const boost::filesystem::path& directory,
	const std::function<void(const boost::filesystem::path&)>& func
) const {
	std::vector<boost::filesystem::path> directoryItems;

	std::copy_if(
		boost::filesystem::directory_iterator(directory),
		boost::filesystem::directory_iterator(),
		std::back_inserter(directoryItems),
		[](const boost::filesystem::path& p) -> bool {
			return boost::filesystem::is_regular_file(p) ||
			       boost::filesystem::is_directory(p);
		}
	);

	std::sort(
		directoryItems.begin(),
		directoryItems.end()
	);

	std::for_each(
		directoryItems.begin(),
		directoryItems.end(),
		func
	);
}

}