benchmark_main.cpp 1.1 KB

1234567891011121314151617181920212223242526
  1. #include <benchmark/benchmark.h>
  2. #include "mstch/mstch.hpp"
  3. static void basic_usage(benchmark::State& state) {
  4. std::string comment_tmp{
  5. "<div class=\"comments\"><h3>{{header}}</h3><ul>"
  6. "{{#comments}}<li class=\"comment\"><h5>{{name}}</h5>"
  7. "<p>{{body}}</p></li>{{/comments}}</ul></div>"};
  8. auto comment_view = mstch::map{
  9. {"header", std::string{"My Post Comments"}},
  10. {"comments", mstch::array{
  11. mstch::map{{"name", std::string{"Joe"}}, {"body", std::string{"Thanks for this post!"}}},
  12. mstch::map{{"name", std::string{"Sam"}}, {"body", std::string{"Thanks for this post!"}}},
  13. mstch::map{{"name", std::string{"Heather"}}, {"body", std::string{"Thanks for this post!"}}},
  14. mstch::map{{"name", std::string{"Kathy"}}, {"body", std::string{"Thanks for this post!"}}},
  15. mstch::map{{"name", std::string{"George"}}, {"body", std::string{"Thanks for this post!"}}}}}};
  16. while (state.KeepRunning())
  17. mstch::render(comment_tmp, comment_view);
  18. }
  19. BENCHMARK(basic_usage);
  20. BENCHMARK_MAIN();