lumiera_/src/proc/control/proc-dispatcher.hpp

95 lines
2 KiB
C++
Raw Normal View History

2009-06-08 04:46:07 +02:00
/*
PROC-DISPATCHER.hpp - Proc-Layer command dispatch and execution
2010-12-17 23:28:49 +01:00
2009-06-08 04:46:07 +02:00
Copyright (C) Lumiera.org
2009, Hermann Vosseler <Ichthyostega@web.de>
2010-12-17 23:28:49 +01:00
2009-06-08 04:46:07 +02:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
2010-12-17 23:28:49 +01:00
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
2009-06-08 04:46:07 +02:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2010-12-17 23:28:49 +01:00
2009-06-08 04:46:07 +02:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2010-12-17 23:28:49 +01:00
2009-06-08 04:46:07 +02:00
*/
/** @file proc-dispatcher.hpp
** Dispatch and execute mutation operations on the High-level model.
** //TODO
**
** @see Command
** @see Session
**
*/
#ifndef CONTROL_PROC_DISPATCHER_H
#define CONTROL_PROC_DISPATCHER_H
//#include "lib/symbol.hpp"
#include "common/subsys.hpp"
#include "lib/depend.hpp"
#include "lib/sync.hpp"
2009-06-08 04:46:07 +02:00
#include <memory>
//#include <functional>
2009-06-08 04:46:07 +02:00
namespace proc {
2009-06-08 04:46:07 +02:00
namespace control {
// using lib::Symbol;
using std::unique_ptr;
// using std::bind;
using lumiera::Subsys;
class DispatcherLoop;
2009-06-08 04:46:07 +02:00
/**
* @todo Type-comment
*/
class ProcDispatcher
: public lib::Sync<>
2009-06-08 04:46:07 +02:00
{
unique_ptr<DispatcherLoop> runningLoop_;
bool active_{false};
2009-06-08 04:46:07 +02:00
public:
static lib::Depend<ProcDispatcher> instance;
bool start (Subsys::SigTerm);
bool isRunning();
void requestStop();
void activate();
void deactivate();
void clear();
/* == diagnostics == */
// size_t size() const ;
bool empty() const ;
2009-06-08 04:46:07 +02:00
};
////////////////TODO currently just fleshing out the API....
}} // namespace proc::control
2009-06-08 04:46:07 +02:00
#endif