Copied the templates class from Lexesis

This commit is contained in:
Thomas Avé 2016-12-30 17:39:53 +01:00
parent 493ec163ec
commit 6313fc2cf5
2 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,63 @@
#pragma once
#ifndef PARSODUS_TEMPLATE_H
#define PARSODUS_TEMPLATE_H
#include <map>
#include <string>
#include <vector>
#include <mstch/mstch.hpp>
namespace pds {
namespace templ {
/**
* A changeable information structure for templates
*/
using TemplateContext = mstch::node;
/**
* Make a TemplateContext string
*/
TemplateContext make_string(std::string);
/**
* Make a TemplateContext map/dictionary
*/
TemplateContext make_map(std::map<const std::string, TemplateContext>);
/**
* Make a TemplateContext array/vector
*/
TemplateContext make_array(std::vector<TemplateContext>);
/**
* A generic wrapper around whichever templating system gets used
*/
class Template {
public:
/**
* Construct a Template from given filename
*
* @param filename The name of the file which contains the template rules
*/
Template(std::string filename);
/**
* Destructor
*/
~Template();
/**
* Render this template to `out` using the information in `context`
*
* @param out The ostream to render to
* @param context The information to provide the template rules while rendering
*/
void render(std::ostream& out, TemplateContext& context);
private:
std::string m_filename;
};
} //namespace templ
} //namespace pds
#endif //PARSODUS_TEMPLATE_H

39
src/template.cpp Normal file
View File

@ -0,0 +1,39 @@
#include "Parsodus/template.h"
#include "mstch/mstch.hpp"
#include <fstream>
#include <string>
#include <sstream>
namespace pds {
namespace templ {
TemplateContext make_string(std::string _string) {
return mstch::node(_string);
}
TemplateContext make_map(std::map<const std::string, TemplateContext> _map) {
return mstch::map(_map);
}
TemplateContext make_array(std::vector<TemplateContext> _array) {
return mstch::array(_array);
}
Template::Template(std::string filename) : m_filename(filename)
{}
Template::~Template()
{}
void Template::render(std::ostream& out, TemplateContext& context) {
std::ifstream file;
file.open (m_filename);
std::stringstream tmplt;
tmplt << file.rdbuf();
file.close();
out << mstch::render(tmplt.str(),context);
}
}
}