Darwin Neuroevolution Framework
format.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "utils.h"
18 
19 #include <stdarg.h>
20 #include <stdio.h>
21 #include <string>
22 #include <type_traits>
23 using namespace std;
24 
25 namespace core {
26 
27 namespace internal {
28 
29 inline string formatHelper(const char* format_string, ...) {
30  va_list argptr = {};
31 
32  // calculate the result string size
33  va_start(argptr, format_string);
34  int size = vsnprintf(nullptr, 0, format_string, argptr);
35  CHECK(size >= 0);
36  va_end(argptr);
37 
38  // actually format into the result string
39  va_start(argptr, format_string);
40  string result(size, 0);
41  CHECK(vsnprintf(result.data(), size + 1, format_string, argptr) == size);
42  va_end(argptr);
43 
44  return result;
45 }
46 
47 template <class T>
48 T formatArg(T value) {
49  static_assert(is_scalar_v<T>, "Only scalar values and strings can be formatted");
50  return value;
51 }
52 
53 inline const char* formatArg(const string& s) {
54  return s.c_str();
55 }
56 
57 } // namespace internal
58 
67 template <class... ARGS>
68 string format(const char* format_string, ARGS&&... args) {
69  CHECK(format_string != nullptr);
70  return internal::formatHelper(format_string, internal::formatArg(args)...);
71 }
72 
73 } // namespace core
Generic utilities.
Definition: exception.h:24
STL namespace.
string format(const char *format_string, ARGS &&... args)
A minimalistic string formatting built on top of the C-formatting facilities (xprintf formatting) ...
Definition: format.h:68