WRENCH
1.10
Cyberinfrastructure Simulation Workbench
|
Overview | Installation | Getting Started | WRENCH 101 | WRENCH 102 |
The storage service base class. More...
#include <StorageService.h>
Public Member Functions | |
virtual std::map< std::string, double > | getFreeSpace () |
Synchronously asks the storage service for its capacity at all its mount points. More... | |
std::string | getMountPoint () |
Get the mount point (will throw is more than one) More... | |
std::set< std::string > | getMountPoints () |
Get the set of mount points. More... | |
virtual std::map< std::string, double > | getTotalSpace () |
Get the total static capacity of the storage service (in zero simulation time) More... | |
bool | hasMountPoint (std::string mp) |
Checked whether the storage service has a particular mount point. More... | |
bool | hasMultipleMountPoints () |
Checked whether the storage service has multiple mount points. More... | |
void | stop () override |
Stop the service. | |
Public Member Functions inherited from wrench::Service | |
void | assertServiceIsUp () |
Throws an exception if the service is not up. More... | |
std::string | getHostname () |
Get the name of the host on which the service is / will be running. More... | |
double | getNetworkTimeoutValue () |
Returns the service's network timeout value. More... | |
bool | getPropertyValueAsBoolean (std::string) |
Get a property of the Service as a boolean. More... | |
double | getPropertyValueAsDouble (std::string) |
Get a property of the Service as a double. More... | |
std::string | getPropertyValueAsString (std::string) |
Get a property of the Service as a string. More... | |
unsigned long | getPropertyValueAsUnsignedLong (std::string) |
Get a property of the Service as an unsigned long. More... | |
bool | isUp () |
Returns true if the service is UP, false otherwise. More... | |
void | resume () |
Resume the service. More... | |
void | setNetworkTimeoutValue (double value) |
Sets the service's network timeout value. More... | |
void | start (std::shared_ptr< Service > this_service, bool daemonize, bool auto_restart) |
Start the service. More... | |
void | suspend () |
Suspend the service. | |
Static Public Member Functions | |
static void | deleteFile (WorkflowFile *file, std::shared_ptr< FileLocation > location, std::shared_ptr< FileRegistryService > file_registry_service=nullptr) |
Synchronously delete a file at a location. More... | |
static bool | lookupFile (WorkflowFile *file, std::shared_ptr< FileLocation > location) |
Synchronously asks the storage service whether it holds a file. More... | |
static void | readFile (WorkflowFile *file, std::shared_ptr< FileLocation > location) |
Synchronously read a file from the storage service. More... | |
static void | writeFile (WorkflowFile *file, std::shared_ptr< FileLocation > location) |
Synchronously write a file to the storage service. More... | |
The storage service base class.
|
static |
Synchronously delete a file at a location.
file | the file |
location | the file's location |
file_registry_service | a file registry service that should be updated once the file deletion has (successfully) completed (none if nullptr) |
WorkflowExecutionException | |
std::runtime_error | |
std::invalid_argument |
|
virtual |
Synchronously asks the storage service for its capacity at all its mount points.
WorkflowExecutionException | |
std::runtime_error |
std::string wrench::StorageService::getMountPoint | ( | ) |
Get the mount point (will throw is more than one)
std::set< std::string > wrench::StorageService::getMountPoints | ( | ) |
Get the set of mount points.
|
virtual |
Get the total static capacity of the storage service (in zero simulation time)
bool wrench::StorageService::hasMountPoint | ( | std::string | mp | ) |
Checked whether the storage service has a particular mount point.
mp | a mount point |
bool wrench::StorageService::hasMultipleMountPoints | ( | ) |
Checked whether the storage service has multiple mount points.
|
static |
Synchronously asks the storage service whether it holds a file.
file | the file |
location | the file location |
WorkflowExecutionException | |
std::invalid_arguments |
|
static |
Synchronously read a file from the storage service.
file | the file |
location | the location to read the file from |
WorkflowExecutionException | |
std::invalid_arguments |
|
static |
Synchronously write a file to the storage service.
file | the file |
location | the location to write it to |
WorkflowExecutionException |