Fawkes API
Fawkes Development Version
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Groups
Pages
periodic_exec_thread.h
1
2
/***************************************************************************
3
* periodic_exec_thread.h - Fawkes LuaAgent: Periodic Execution Thread
4
*
5
* Created: Thu Jan 01 11:12:13 2009
6
* Copyright 2006-2011 Tim Niemueller [www.niemueller.de]
7
*
8
****************************************************************************/
9
10
/* This program is free software; you can redistribute it and/or modify
11
* it under the terms of the GNU General Public License as published by
12
* the Free Software Foundation; either version 2 of the License, or
13
* (at your option) any later version.
14
*
15
* This program is distributed in the hope that it will be useful,
16
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
* GNU Library General Public License for more details.
19
*
20
* Read the full text in the LICENSE.GPL file in the doc directory.
21
*/
22
23
#ifndef __PLUGINS_LUAAGENT_PERIODIC_EXEC_THREAD_H_
24
#define __PLUGINS_LUAAGENT_PERIODIC_EXEC_THREAD_H_
25
26
#include <core/threading/thread.h>
27
#include <aspect/blocked_timing.h>
28
#include <aspect/logging.h>
29
#include <aspect/configurable.h>
30
#include <aspect/clock.h>
31
#include <aspect/blackboard.h>
32
#ifdef HAVE_TF
33
# include <aspect/tf.h>
34
#endif
35
#include <utils/system/fam.h>
36
#include <blackboard/interface_listener.h>
37
38
#include <string>
39
#include <cstdlib>
40
41
namespace
fawkes {
42
class
ComponentLogger;
43
class
Mutex;
44
class
LuaContext;
45
class
LuaInterfaceImporter;
46
class
Interface;
47
class
SkillerInterface;
48
class
SkillerDebugInterface;
49
}
50
51
class
LuaAgentPeriodicExecutionThread
52
:
public
fawkes::Thread
,
53
public
fawkes::BlockedTimingAspect
,
54
public
fawkes::LoggingAspect
,
55
public
fawkes::BlackBoardAspect
,
56
public
fawkes::ConfigurableAspect
,
57
#ifdef HAVE_TF
58
public
fawkes::TransformAspect
,
59
#endif
60
public
fawkes::ClockAspect
61
{
62
public
:
63
LuaAgentPeriodicExecutionThread
();
64
virtual
~LuaAgentPeriodicExecutionThread
();
65
66
virtual
void
init
();
67
virtual
void
loop
();
68
virtual
void
finalize
();
69
70
/** Stub to see name in backtrace for easier debugging. @see Thread::run() */
71
protected
:
virtual
void
run
() {
Thread::run
(); }
72
73
private
:
/* methods */
74
void
init_failure_cleanup();
75
void
process_agdbg_messages();
76
77
private
:
/* members */
78
fawkes::ComponentLogger
*__clog;
79
80
// config values
81
std::string __cfg_agent;
82
bool
__cfg_watch_files;
83
84
fawkes::SkillerInterface
*__skiller_if;
85
fawkes::SkillerDebugInterface
*__agdbg_if;
86
87
fawkes::LuaContext
*__lua;
88
fawkes::LuaInterfaceImporter
*__lua_ifi;
89
};
90
91
#endif
src
plugins
luaagent
periodic_exec_thread.h
Generated by
1.8.1.1