![]() |
Plasma Engine
2.0
|
This class represents a set of files of which one wants to know when any one of them changes. More...
#include <DependencyFile.h>
Public Member Functions | |
void | Clear () |
Clears all files that were added with AddFileDependency() | |
void | AddFileDependency (plStringView sFile) |
Adds one file as a dependency to the list. | |
const plHybridArray< plString, 16 > & | GetFileDependencies () const |
Allows read access to all currently stored file dependencies. | |
plResult | WriteDependencyFile (plStreamWriter &inout_stream) const |
Writes the current state to a stream. Note that you probably should call StoreCurrentTimeStamp() before this, to serialize the latest file stamp. | |
plResult | ReadDependencyFile (plStreamReader &inout_stream) |
Reads the state from a stream. Call HasAnyFileChanged() afterwards to determine whether anything has changed since when the data was serialized. | |
plResult | WriteDependencyFile (plStringView sFile) const |
Writes the current state to a file. Note that you probably should call StoreCurrentTimeStamp() before this, to serialize the latest file stamp. | |
plResult | ReadDependencyFile (plStringView sFile) |
Reads the state from a file. Call HasAnyFileChanged() afterwards to determine whether anything has changed since when the data was serialized. | |
bool | HasAnyFileChanged () const |
Retrieves the current file time stamps from the filesystem and determines whether any file has changed since the last call to StoreCurrentTimeStamp() (or ReadDependencyFile()) | |
void | StoreCurrentTimeStamp () |
Retrieves the current file time stamps from the filesystem and stores it for later comparison. This value is also serialized through WriteDependencyFile(), so it should be called before that, to store the latest state. | |
This class represents a set of files of which one wants to know when any one of them changes.
plDependencyFile stores a list of files that are the 'dependency set'. It can be serialized. Through HasAnyFileChanged() one can detect whether any of the files has changed, since the last call to StoreCurrentTimeStamp(). The time stamp that is retrieved through StoreCurrentTimeStamp() will also be serialized.