#include <modules.h>
Inherits classbase.
Public Member Functions | |
FileReader () | |
Default constructor. | |
FileReader (std::string filename) | |
Secondary constructor. | |
~FileReader () | |
Default destructor. | |
void | LoadFile (std::string filename) |
Used to load a file. | |
bool | Exists () |
Returns true if the file exists This function will return false if the file could not be opened. | |
std::string | GetLine (int x) |
Retrieve one line from the file. | |
int | FileSize () |
Returns the size of the file in lines. | |
Private Attributes | |
file_cache | fc |
This class contains methods for read-only manipulation of a text file in memory. Either use the constructor type with one parameter to load a file into memory at construction, or use the LoadFile method to load a file.
Definition at line 1236 of file modules.h.
|
Default constructor. This method does not load any file into memory, you must use the LoadFile method after constructing the class this way. Definition at line 1022 of file modules.cpp.
01023 { 01024 } |
|
Secondary constructor. This method initialises the class with a file loaded into it ready for GetLine and and other methods to be called. If the file could not be loaded, FileReader::FileSize returns 0. Definition at line 1015 of file modules.cpp. References fc, and file_cache.
01016 { 01017 file_cache c; 01018 readfile(c,filename.c_str()); 01019 this->fc = c; 01020 } |
|
Default destructor. This deletes the memory allocated to the file. Definition at line 1034 of file modules.cpp.
01035 { 01036 } |
|
Returns true if the file exists This function will return false if the file could not be opened.
Definition at line 1038 of file modules.cpp. References fc.
01039 { 01040 if (fc.size() == 0) 01041 { 01042 return(false); 01043 } 01044 else 01045 { 01046 return(true); 01047 } 01048 } |
|
Returns the size of the file in lines. This method returns the number of lines in the read file. If it is 0, no lines have been read into memory, either because the file is empty or it does not exist, or cannot be opened due to permission problems. Definition at line 1057 of file modules.cpp. References fc.
01058 { 01059 return fc.size(); 01060 } |
|
Retrieve one line from the file. This method retrieves one line from the text file. If an empty non-NULL string is returned, the index was out of bounds, or the line had no data on it. Definition at line 1050 of file modules.cpp. References fc.
|
|
Used to load a file. This method loads a file into the class ready for GetLine and and other methods to be called. If the file could not be loaded, FileReader::FileSize returns 0. Definition at line 1026 of file modules.cpp. References fc, and file_cache.
01027 { 01028 file_cache c; 01029 readfile(c,filename.c_str()); 01030 this->fc = c; 01031 } |
|
Definition at line 1238 of file modules.h. Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile(). |