Darwin Neuroevolution Framework
console_buffer.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 <core/pubsub.h>
18 
19 #include <atomic>
20 #include <mutex>
21 #include <string>
22 #include <vector>
23 using namespace std;
24 
25 // Buffers console output before reaching the output window
26 //
27 // This is a very specialized indirection, to make sure we can capture messages
28 // even when the output window is not present
29 //
30 class ConsoleBuffer {
31  public:
32  core::PubSub<string> console_output;
33 
34  public:
35  static ConsoleBuffer* instance() {
36  static auto instance = new ConsoleBuffer();
37  return instance;
38  }
39 
40  void addMessage(const string& message) {
41  bool publish = true;
42 
43  {
44  std::unique_lock<mutex> guard(lock_);
45  if (buffering_) {
46  messages_.push_back(message);
47  publish = false;
48  }
49  }
50 
51  if (publish)
52  console_output.publish(message);
53  }
54 
55  // flush all the bufferend messages and switch to passthrough (no buffering)
56  void flushAndResume() {
57  vector<string> current_messages;
58 
59  {
60  std::unique_lock<mutex> guard(lock_);
61  current_messages.swap(messages_);
62  buffering_ = false;
63  }
64 
65  for (const auto& message : current_messages)
66  console_output.publish(message);
67  }
68 
69  private:
70  ConsoleBuffer() = default;
71 
72  private:
73  mutable mutex lock_;
74  vector<string> messages_;
75  bool buffering_ = true;
76 };
STL namespace.
void publish(const T &value) const
Publish a new value.
Definition: pubsub.h:64