Add documentation

This commit is contained in:
Alexander Bock
2017-05-11 18:01:36 -04:00
parent d597750398
commit 17fe85afba
2 changed files with 56 additions and 6 deletions

View File

@@ -30,22 +30,67 @@
namespace openspace {
/*
* This abstract class is used for instances when another class has the ability to
* generate a Handlebar generated documentation file that contains valuable information
* for the user. Instances of this are the DocumentationEngine results, the list of
* Property%s generated by the Scene, or the FactoryEngine results. The documentation is
* generated through the writeDocumentation method.
*
* The concrete subclass needs to overload the generateJson class that will return the
* Json that is parsed by Handlebar to generate the webpage.
*
* A list of Handlebar templates, the variable name for the result of the generateJson
* method, and the Javascript file that contains additional logic is passed in the
* constructor.
*/
class Documented {
public:
/// This struct contains a single Handlebar template, with the name and the filename
struct HandlebarTemplate {
std::string name;
std::string filename;
std::string name; ///< The name of the Handlebar template defined in \m filename
std::string filename; ///< The filename referenced in the \m name
};
/**
* The constructor that is used to set the member variables later used in the
* writeDocumentation method.
* \param name The name of the written documentation
* \param jsonName The variable name of the value generated by the generateJson
* \param handlebarTemplates A list of Handlebar templates that is added to the
* documentation file
* \param javascriptFilename The path to a Javascript source file that is added to the
* documentation and that can contain additional functionality
* \pre name must not be empty
* \pre jsonName must not be empty
* \pre Each handlebarTemplates' \c name must not be empty and \c filename must exist
* \pre javascriptFilename must not be empty must exist
*/
Documented(std::string name, std::string jsonName,
std::vector<HandlebarTemplate> handlebarTemplates,
std::string javascriptFilename);
/// Default constructor
virtual ~Documented() = default;
/**
* Create the documentation into the provided filename. Any existing file will be
* silently overwritten. This method will call the generateJson method that can be
* used by concrete subclasses to provide the actual data that is provided in the
* documentation.
* \param filename The filename in which the documentation is written
*/
void writeDocumentation(const std::string& filename);
protected:
/**
* This abstract method is used by concrete subclasses to provide the actual data that
* is used in the documentation written by this Documented method. The JSON string
* returned by this function will be stored in the variable with the \c jsonName as
* passed in the constructor.
* \return A JSON script that is parsed and stored in the variable passed in the
* Documented constructor
*/
virtual std::string generateJson() const = 0;
private:

View File

@@ -51,11 +51,16 @@ Documented::Documented(std::string name,
{
ghoul_precondition(!_name.empty(), "name must not be empty");
ghoul_precondition(!_jsonName.empty(), "jsonName must not be empty");
ghoul_precondition(
!_handlebarTemplates.empty(),
"handlebarTemplates must not be empty"
);
for (const HandlebarTemplate& t : _handlebarTemplates) {
ghoul_precondition(!t.name.empty(), "name must not be empty");
ghoul_precondition(!t.filename.empty(), "filename must not be empty");
ghoul_precondition(FileSys.fileExists(t.filename), "filename must exist");
}
ghoul_precondition(!_javascriptFile.empty(), "javascriptFilename must not be empty");
ghoul_precondition(
FileSys.fileExists(_javascriptFile),
"javascriptFilename must exist"
);
}
void Documented::writeDocumentation(const std::string& filename) {