7 #ifndef INCLUDE_SPARROW_EMBED_COMMON_H
8 #define INCLUDE_SPARROW_EMBED_COMMON_H
10 #include "boost/optional.hpp"
17 inline std::ostream& sep(std::ostream& os) {
22 inline std::ostream& nl(std::ostream& os) {
27 inline std::string sp(
unsigned i) {
28 return std::string(i,
' ');
32 std::vector<std::string> includes;
33 std::vector<std::string> namespaces;
34 boost::optional<std::string> guard = boost::none;
36 void writeHeader(std::ostream& os) {
40 os << R
"delim(/**
* @file
* @copy)delim"
41 << R"delim(right This code is licensed under the 3-clause BSD license.\n
* Copyright ETH Zurich, Department of Chemistry and Applied Biosciences, Reiher Group.\n
* See LICENSE.txt for details.
*
* @note This file was generated by the Embed binary from runtime values.
* Prefer improving the generator over editing this file whenever possible.
*
)delim";
45 os << R
"delim( * This file contains functions generating runtime values. It was
* generated from runtime values of its return type. It is not intended to be
* human-readable. A small guide: Return values are directly brace-initialized
* in deep nesting to keep file size to a minimum. Types are annotated only when
* necessary. Floating point values are represented in hexadecimal (see
* std::hexfloat) to ensure serialization does not cause loss of accuracy.
*
* The functions defined here might be declared and called elsewhere entirely.
*
)delim";
48 os << R"delim( */
)delim";
51 os <<
"#ifndef " << guard.value() << nl;
52 os <<
"#define " << guard.value() << nl << nl;
55 for (
auto& include : includes) {
56 if (include[0] ==
'<' || include[0] ==
'\"') {
57 os <<
"#include " << include << nl;
60 os <<
"#include \"" << include <<
"\"" << nl;
65 for (
auto& name : namespaces) {
66 os <<
"namespace " << name <<
" {" << nl;
72 void writeFooter(std::ostream& os) {
74 for (
auto iter = std::rbegin(namespaces); iter != std::rend(namespaces); ++iter) {
75 os <<
"} // namespace " << *iter << nl;
84 inline std::string lower(std::string a) {
85 std::transform(std::begin(a), std::end(a), std::begin(a), [](
unsigned char c) {
return std::tolower(c); });
89 inline std::string upper(std::string a) {
90 std::transform(std::begin(a), std::end(a), std::begin(a), [](
unsigned char c) {
return std::toupper(c); });
96 template<
typename Arg>
97 void writePack(std::ostream& os, Arg arg) {
101 template<
typename Arg,
typename... Args>
102 void writePack(std::ostream& os, Arg arg1, Args... args) {
104 writePack(os, args...);
107 template<
typename Tuple, std::size_t... Inds>
108 void writeTuplePackHelper(std::ostream& os,
const Tuple& tup, std::index_sequence<Inds...>
110 writePack(os, std::get<Inds>(tup)...);
113 template<
typename Tuple>
114 void writeTuplePack(std::ostream& os,
const Tuple& tup) {
115 writeTuplePackHelper(os, tup, std::make_index_sequence<std::tuple_size<Tuple>::value>{});
120 template<
typename... Args>
122 Joiner(
const Args&... args) : bound(args...) {
125 std::tuple<
const Args&...> bound;
128 template<
typename... Args>
129 auto join(
const Args&... args) {
130 return Joiner<Args...>(args...);
133 template<
typename... Args>
134 std::ostream& operator<<(std::ostream& os,
const Joiner<Args...>& join) {
135 detail::writeTuplePack(os, join.bound);
146 boost::optional<T> optional;
150 auto wrapOptional(
const boost::optional<T>& optional) {
155 std::ostream& operator<<(std::ostream& os, const OptionalWrapper<T>& o) {
157 os << o.optional.value();