2008-12-01 08:04:43 +01:00
|
|
|
/*
|
|
|
|
|
ScriptRunnerFacade - access point for running a script within Lumiera application context
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-12-01 08:04:43 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-12-01 08:04:43 +01: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.
|
|
|
|
|
|
2008-12-01 08:04:43 +01: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
|
|
|
|
2008-12-01 08:04:43 +01: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
|
|
|
|
2008-12-01 08:04:43 +01:00
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
2016-11-03 18:22:31 +01:00
|
|
|
/** @file scriptrunnerfacade.cpp
|
2016-11-03 19:37:34 +01:00
|
|
|
** Subsystem descriptor and configuration for a controlling and operating
|
|
|
|
|
** Lumiera through bindings to a script language.
|
|
|
|
|
**
|
|
|
|
|
** @todo this just documents a vague plan. We won't be able to implement
|
|
|
|
|
** anything of that kind for the foreseeable future as of 1/2017
|
2016-11-03 18:20:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2008-12-01 08:04:43 +01:00
|
|
|
#include "backend/scriptrunnerfacade.hpp"
|
2013-10-20 03:19:36 +02:00
|
|
|
#include "lib/depend.hpp"
|
2008-12-01 08:04:43 +01:00
|
|
|
|
2008-12-04 04:21:02 +01:00
|
|
|
#include <string>
|
2008-12-01 08:04:43 +01:00
|
|
|
|
|
|
|
|
|
2008-12-04 04:21:02 +01:00
|
|
|
namespace backend {
|
|
|
|
|
|
|
|
|
|
using std::string;
|
2008-12-01 08:04:43 +01:00
|
|
|
using lumiera::Subsys;
|
|
|
|
|
|
|
|
|
|
class ScriptRunnerSubsysDescriptor
|
|
|
|
|
: public Subsys
|
|
|
|
|
{
|
2008-12-04 04:21:02 +01:00
|
|
|
operator string () const { return "Script runner"; }
|
2008-12-01 08:04:43 +01:00
|
|
|
|
|
|
|
|
bool
|
2016-12-12 01:18:19 +01:00
|
|
|
shouldStart (lumiera::Option&) override
|
2008-12-01 08:04:43 +01:00
|
|
|
{
|
2008-12-08 03:01:02 +01:00
|
|
|
TODO ("determine, if a script should be executed");
|
2008-12-01 08:04:43 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2016-12-12 01:18:19 +01:00
|
|
|
start (lumiera::Option&, SigTerm termination) override
|
2008-12-01 08:04:43 +01:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED ("start the script as defined by the options and register script abort/exit hook");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2016-12-12 01:18:19 +01:00
|
|
|
triggerShutdown () noexcept override
|
2008-12-01 08:04:43 +01:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED ("halt any running script");
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-08 03:01:02 +01:00
|
|
|
bool
|
2016-12-12 01:18:19 +01:00
|
|
|
checkRunningState () noexcept override
|
2008-12-08 03:01:02 +01:00
|
|
|
{
|
|
|
|
|
//Lock guard (*this);
|
|
|
|
|
TODO ("implement detecting running state");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2008-12-01 08:04:43 +01:00
|
|
|
};
|
|
|
|
|
|
2008-12-05 11:07:01 +01:00
|
|
|
namespace {
|
2013-10-20 03:19:36 +02:00
|
|
|
lib::Depend<ScriptRunnerSubsysDescriptor> theDescriptor;
|
2008-12-05 11:07:01 +01:00
|
|
|
}
|
2008-12-01 08:04:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** @internal intended for use by main(). */
|
|
|
|
|
Subsys&
|
|
|
|
|
ScriptRunnerFacade::getDescriptor()
|
|
|
|
|
{
|
|
|
|
|
return theDescriptor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace backend
|