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 79 80 81 82
|
#include "FileSystemInterface.h"
#include "generic/callback.h"
#include "iarchive.h"
#include "itextstream.h"
namespace script
{
void FileSystemInterface::forEachFile(const std::string& basedir,
const std::string& extension,
VirtualFileSystemVisitor& visitor,
std::size_t depth)
{
GlobalFileSystem().forEachFile(
basedir, extension,
[&](const vfs::FileInfo& fileInfo) { visitor.visit(fileInfo.name); },
depth
);
}
std::string FileSystemInterface::readTextFile(const std::string& filename)
{
ArchiveTextFilePtr file = GlobalFileSystem().openTextFile(filename);
if (file == NULL) return "";
TextInputStream& istream = file->getInputStream();
const std::size_t READSIZE = 16384;
std::string text;
char buffer[READSIZE];
std::size_t bytesRead = READSIZE;
do
{
bytesRead = istream.read(buffer, READSIZE);
// Copy the stuff to the string
text.append(buffer, bytesRead);
} while (bytesRead == READSIZE);
return text;
}
int FileSystemInterface::getFileCount(const std::string& filename)
{
return GlobalFileSystem().getFileCount(filename);
}
std::string FileSystemInterface::findFile(const std::string& name)
{
return GlobalFileSystem().findFile(name);
}
std::string FileSystemInterface::findRoot(const std::string& name)
{
return GlobalFileSystem().findRoot(name);
}
void FileSystemInterface::registerInterface(py::module& scope, py::dict& globals)
{
// Expose the FileVisitor interface
py::class_<VirtualFileSystemVisitor, FileVisitorWrapper> visitor(scope, "FileVisitor");
visitor.def(py::init<>());
visitor.def("visit", &VirtualFileSystemVisitor::visit);
// Add the VFS module declaration to the given python namespace
py::class_<FileSystemInterface> filesystem(scope, "FileSystem");
filesystem.def("forEachFile", &FileSystemInterface::forEachFile);
filesystem.def("findFile", &FileSystemInterface::findFile);
filesystem.def("findRoot", &FileSystemInterface::findRoot);
filesystem.def("readTextFile", &FileSystemInterface::readTextFile);
filesystem.def("getFileCount", &FileSystemInterface::getFileCount);
// Now point the Python variable "GlobalFileSystem" to this instance
globals["GlobalFileSystem"] = this;
}
} // namespace script
|