Darwin Neuroevolution Framework
io_utils.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 "exception.h"
18 
19 #include <iostream>
20 #include <vector>
21 using namespace std;
22 
23 namespace core {
24 
25 // extracts an exact match of the specified token, after skipping any leading whitespaces
26 // (it throws if the input does not match the token)
27 inline istream& operator>>(istream& stream, const char* token) {
28  istream::sentry sentry(stream);
29 
30  for (const char* p = token; *p; ++p) {
31  if (stream.fail())
32  throw core::Exception("bad stream state");
33  if (stream.get() != *p)
34  throw core::Exception("input doesn't match the expected token '%s'", token);
35  }
36 
37  return stream;
38 }
39 
40 // peek at the first non-whitespace character, without extracting it
41 inline char nextSymbol(istream& stream) {
42  if (stream.fail())
43  throw core::Exception("bad stream state");
44  return char((stream >> std::ws).peek());
45 }
46 
47 template <class T>
48 ostream& operator<<(ostream& stream, const vector<T>& v) {
49  stream << "{ ";
50  for (size_t i = 0; i < v.size(); ++i) {
51  if (i != 0)
52  stream << ", ";
53  stream << v[i];
54  }
55  stream << " }";
56  return stream;
57 }
58 
59 template <class T>
60 istream& operator>>(istream& stream, vector<T>& v) {
61  vector<T> extracted_vector;
62  stream >> "{";
63 
64  if (nextSymbol(stream) != '}') {
65  for (;;) {
66  T value = {};
67  stream >> value;
68  extracted_vector.push_back(value);
69 
70  if (nextSymbol(stream) == '}')
71  break;
72 
73  stream >> ",";
74  }
75  }
76 
77  stream >> "}";
78  v = extracted_vector;
79  return stream;
80 }
81 
82 } // namespace core
The base for exception types in the Darwin framework.
Definition: exception.h:27
Generic utilities.
Definition: exception.h:24
STL namespace.