10 #ifndef WRENCH_FILELOCATION_H
11 #define WRENCH_FILELOCATION_H
35 static std::shared_ptr<FileLocation>
SCRATCH;
37 static std::shared_ptr<FileLocation>
LOCATION(std::shared_ptr<StorageService> ss);
39 static std::shared_ptr<FileLocation>
LOCATION(std::shared_ptr<StorageService> ss,
40 std::string absolute_path);
58 static bool equal(
const std::shared_ptr<FileLocation> &lhs,
59 const std::shared_ptr<FileLocation> &rhs) {
60 return ((lhs->getStorageService() == rhs->getStorageService()) and
61 (lhs->getFullAbsolutePath() == rhs->getFullAbsolutePath()));
70 friend class LogicalFileSystem;
77 FileLocation(std::shared_ptr<StorageService> ss, std::string mp, std::string apamp) :
78 storage_service(ss), mount_point(mp), absolute_path_at_mount_point(apamp) { }
80 std::shared_ptr<StorageService> storage_service;
81 std::string mount_point;
82 std::string absolute_path_at_mount_point;
95 #endif //WRENCH_FILELOCATION_H
std::string getFullAbsolutePath()
Get the location's full absolute path.
Definition: FileLocation.cpp:138
static std::shared_ptr< FileLocation > SCRATCH
Static location that denotes a compute service's scratch space.
Definition: FileLocation.h:35
static std::shared_ptr< FileLocation > LOCATION(std::shared_ptr< StorageService > ss)
File location specifier for a storage service's (single) mount point root.
Definition: FileLocation.cpp:32
static std::string sanitizePath(std::string path)
Method to sanitize an absolute path (and make it absolute if it's not)
Definition: FileLocation.cpp:151
std::shared_ptr< StorageService > getStorageService()
Get the location's storage service.
Definition: FileLocation.cpp:105
std::string getAbsolutePathAtMountPoint()
Get the location's path at mount point.
Definition: FileLocation.cpp:127
static bool properPathPrefix(std::string path1, std::string path2)
Helper method to find if a path is a proper prefix of another path.
Definition: FileLocation.cpp:208
static bool equal(const std::shared_ptr< FileLocation > &lhs, const std::shared_ptr< FileLocation > &rhs)
Method to compare two file locations.
Definition: FileLocation.h:58
A class that encodes a file location.
Definition: FileLocation.h:28
std::string getMountPoint()
Get the location's mount point.
Definition: FileLocation.cpp:116
std::string toString()
Give a <ss name>:<mount point>:<dir>" string for the location.
Definition: FileLocation.cpp:92