Fawkes API
Fawkes Development Version
execution_time_estimator_plugin.cpp
1
/***************************************************************************
2
* execution_time_estimator_plugin.cpp - Estimate execution times
3
*
4
* Created: Thu 23 Apr 2020 16:36:22 CEST 16:36
5
* Copyright 2020 Till Hofmann <hofmann@kbsg.rwth-aachen.de>
6
****************************************************************************/
7
8
/* This program is free software; you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation; either version 2 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU Library General Public License for more details.
17
*
18
* Read the full text in the LICENSE.GPL file in the doc directory.
19
*/
20
21
#include "execution_time_estimator_thread.h"
22
23
#include <core/plugin.h>
24
25
/** @class ExecutionTimeEstimatorsPlugin
26
* Estimate skill execution times.
27
* This plugin provides an aspect that allows estimators to register.
28
*
29
* @author Till Hofmann
30
*/
31
32
class
ExecutionTimeEstimatorsPlugin
:
public
fawkes::Plugin
33
{
34
public
:
35
/** Constructor.
36
* @param config Fawkes configuration to read config values from.
37
*/
38
explicit
ExecutionTimeEstimatorsPlugin
(
fawkes::Configuration
*
config
) :
Plugin
(
config
)
39
{
40
thread_list
.
push_back
(
new
ExecutionTimeEstimatorsThread
());
41
}
42
};
43
44
PLUGIN_DESCRIPTION(
"Provider for execution time estimates"
)
45
EXPORT_PLUGIN(
ExecutionTimeEstimatorsPlugin
)
fawkes::Plugin::config
Configuration * config
Fawkes configuration.
Definition:
plugin.h:58
fawkes::Plugin::thread_list
ThreadList thread_list
Thread list member.
Definition:
plugin.h:53
fawkes::ThreadList::push_back
void push_back(Thread *thread)
Add thread to the end.
Definition:
thread_list.cpp:773
ExecutionTimeEstimatorsPlugin
Estimate skill execution times.
Definition:
execution_time_estimator_plugin.cpp:33
fawkes::Configuration
Interface for configuration handling.
Definition:
config.h:65
Plugin
Plugin representation for JSON transfer.
Definition:
Plugin.h:28
ExecutionTimeEstimatorsPlugin::ExecutionTimeEstimatorsPlugin
ExecutionTimeEstimatorsPlugin(fawkes::Configuration *config)
Constructor.
Definition:
execution_time_estimator_plugin.cpp:38
ExecutionTimeEstimatorsThread
The plugin thread, initializes the aspect.
Definition:
execution_time_estimator_thread.h:32
fawkes::Plugin
Plugin interface class.
Definition:
plugin.h:34
src
plugins
execution-time-estimator
execution_time_estimator_plugin.cpp
Generated by
1.8.20