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
|
|
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
//#include "lib/symbol.hpp"
|
2016-12-13 04:34:28 +01:00
|
|
|
#include "common/subsys.hpp"
|
2013-10-20 03:19:36 +02:00
|
|
|
#include "lib/depend.hpp"
|
2016-12-14 04:18:58 +01:00
|
|
|
#include "lib/sync.hpp"
|
2009-06-08 04:46:07 +02:00
|
|
|
|
2016-12-13 04:34:28 +01:00
|
|
|
#include <memory>
|
|
|
|
|
//#include <functional>
|
2009-06-08 04:46:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-02 17:50:44 +01:00
|
|
|
namespace proc {
|
2009-06-08 04:46:07 +02:00
|
|
|
namespace control {
|
|
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
// using lib::Symbol;
|
2016-12-13 04:34:28 +01:00
|
|
|
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
|
2016-12-14 04:18:58 +01:00
|
|
|
: public lib::Sync<>
|
2009-06-08 04:46:07 +02:00
|
|
|
{
|
2016-12-13 04:34:28 +01:00
|
|
|
unique_ptr<DispatcherLoop> runningLoop_;
|
2016-12-14 04:57:08 +01:00
|
|
|
bool active_{false};
|
2016-12-13 04:34:28 +01:00
|
|
|
|
2009-06-08 04:46:07 +02:00
|
|
|
|
|
|
|
|
public:
|
2013-10-20 03:19:36 +02:00
|
|
|
static lib::Depend<ProcDispatcher> instance;
|
2009-09-29 04:47:09 +02:00
|
|
|
|
2016-12-13 04:34:28 +01:00
|
|
|
bool start (Subsys::SigTerm);
|
|
|
|
|
bool isRunning();
|
|
|
|
|
void requestStop();
|
|
|
|
|
|
2009-09-29 04:47:09 +02:00
|
|
|
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....
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-02 17:50:44 +01:00
|
|
|
}} // namespace proc::control
|
2009-06-08 04:46:07 +02:00
|
|
|
#endif
|