Darwin Neuroevolution Framework
pubsub_relay.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 "console_buffer.h"
18 
19 #include <core/darwin.h>
20 #include <core/evolution.h>
21 #include <core/logging.h>
22 
23 #include <QObject>
24 #include <QString>
25 
26 #include <stdint.h>
27 #include <string>
28 
29 // Maps core::PubSub<T> subscriptions to QT signals
30 class PubSubRelay : public QObject {
31  Q_OBJECT
32 
33  private:
34  PubSubRelay() {
35  qRegisterMetaType<uint32_t>("uint32_t");
36  qRegisterMetaType<std::string>("std::string");
37  qRegisterMetaType<darwin::GenerationSummary>("darwin::GenerationSummary");
38  qRegisterMetaType<darwin::EvolutionStage>("darwin::EvolutionStage");
39 
41  [this](uint32_t hints) { emit sigEvents(hints); });
42 
43  ConsoleBuffer::instance()->console_output.subscribe(
44  [this](const std::string& message) {
45  emit sigConsoleOutput(QString::fromStdString(message));
46  });
47 
49  [this](const darwin::GenerationSummary& summary) {
50  emit sigGenerationSummary(summary);
51  });
52 
53  darwin::evolution()->top_stages.subscribe(
54  [this](const darwin::EvolutionStage& stage) { emit sigTopStage(stage); });
55  }
56 
57  public:
58  static PubSubRelay* instance() {
59  static PubSubRelay* instance = new PubSubRelay;
60  return instance;
61  }
62 
63  signals:
64  void sigEvents(uint32_t hints);
65  void sigConsoleOutput(const QString& output);
66  void sigGenerationSummary(const darwin::GenerationSummary& summary);
67  void sigTopStage(const darwin::EvolutionStage& stage);
68 };
Summary of a generation (fitness samples, best genotype, ...)
Definition: evolution.h:37
core::PubSub< EvolutionStage > top_stages
Channel for publishing the completition of a generation&#39;s top stage.
Definition: evolution.h:319
int subscribe(const Subscriber &subscriber)
Add a subscriber callback.
Definition: pubsub.h:36
Evolution * evolution()
Accessor to the Evolution singleton instance.
Definition: evolution.h:436
core::PubSub< GenerationSummary > generation_summary
Channel for publishing generation summaries.
Definition: evolution.h:316
core::PubSub< uint32_t > events
Evolution events notifications.
Definition: evolution.h:313
Tracks the execution of an execution (sub)stage.
Definition: evolution.h:134