1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* 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.
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#pragma once
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include "base/threading.h"
#include "grtpp.h"
#include "grtpp_util.h"
#include "grtpp_shell.h"
#include "common.h"
#include "wbpublic_public_interface.h"
namespace bec {
class WBPUBLICBACKEND_PUBLIC_FUNC GRTDispatcher;
// Mechanism for allowing queuing of callbacks to be executed
// in the main thread by the GRT worked thread.
// The target object, method and arguments are all encapsulated
// in the callback object.
class WBPUBLICBACKEND_PUBLIC_FUNC DispatcherCallbackBase
{
private:
base::Mutex _mutex;
base::Cond _cond;
protected:
DispatcherCallbackBase() {}
public:
typedef boost::shared_ptr<DispatcherCallbackBase> Ref;
virtual ~DispatcherCallbackBase();
virtual void execute() = 0;
void wait();
void signal();
};
//------------------------------------------------------------------------------------------------
template<class R>
class DispatcherCallback : public DispatcherCallbackBase
{
public:
typedef boost::function<R()> slot_type;
typedef boost::shared_ptr<DispatcherCallback<R> > Ref;
static Ref create_callback(const slot_type &slot)
{
return Ref(new DispatcherCallback<R>(slot));
}
void execute()
{
if(_slot)
_return_value = _slot();
}
R get_result() { return _return_value; }
private:
slot_type _slot;
R _return_value;
DispatcherCallback(const slot_type &slot)
: DispatcherCallbackBase(), _slot(slot)
{
};
};
template<>
class DispatcherCallback<void> : public DispatcherCallbackBase
{
public:
typedef boost::function<void()> slot_type;
typedef boost::shared_ptr<DispatcherCallback<void> > Ref;
static Ref create_callback(const slot_type &slot = slot_type())
{
return Ref(new DispatcherCallback<void>(slot));
}
void execute()
{
if (_slot)
_slot();
}
private:
slot_type _slot;
DispatcherCallback(const slot_type &slot)
: DispatcherCallbackBase(), _slot(slot)
{
};
};
//------------------------------------------------------------------------------------------------
class WBPUBLICBACKEND_PUBLIC_FUNC GRTTaskBase
{
public:
typedef boost::shared_ptr<GRTTaskBase> Ref;
virtual ~GRTTaskBase();
inline bool is_finished() { return _finished; }
virtual grt::ValueRef execute(grt::GRT *grt)= 0;
void cancel();
inline bool is_cancelled() { return _cancelled; }
std::string name() { return _name; }
grt::ValueRef result() { return _result; };
void set_handle_messages_from_thread() { _messages_to_main_thread = false; }
// _m suffix methods are called in the main thread
// the other ones are called in the grt thread and
// schedule the call of their _m counterparts
virtual void started();
virtual void started_m();
virtual void finished(const grt::ValueRef &result);
virtual void finished_m(const grt::ValueRef &result);
virtual void failed(const std::exception &exc);
virtual void failed_m(const std::exception &exc);
virtual bool process_message(const grt::Message &msg);
virtual void process_message_m(const grt::Message &msg);
grt::grt_runtime_error *get_error() { return _exception; };
// Signals.
typedef boost::signals2::signal<void ()> StartingTaskSignal;
StartingTaskSignal signal_starting_task;
typedef boost::signals2::signal<void ()> FinishingTaskSignal;
FinishingTaskSignal signal_finishing_task;
typedef boost::signals2::signal<void ()> FailingTaskSignal;
FailingTaskSignal signal_failing_task;
protected:
boost::shared_ptr<GRTDispatcher> _dispatcher;
grt::grt_runtime_error *_exception;
grt::ValueRef _result;
GRTTaskBase(const std::string &name, const boost::shared_ptr<GRTDispatcher> dispatcher)
: _dispatcher(dispatcher), _exception(0), _name(name), _cancelled(false), _finished(false),
_messages_to_main_thread(true)
{}
void set_finished();
private:
std::string _name;
bool _cancelled;
bool _finished;
bool _messages_to_main_thread;
// Should never be defined and called.
GRTTaskBase(GRTTaskBase&);
GRTTaskBase& operator= (GRTTaskBase&);
};
//------------------------------------------------------------------------------------------------
class WBPUBLICBACKEND_PUBLIC_FUNC GRTTask : public GRTTaskBase
{
typedef boost::signals2::signal<void ()> StartedSignal;
typedef boost::signals2::signal<void (grt::ValueRef)> FinishedSignal;
typedef boost::signals2::signal<void (const std::exception&)> FailedSignal;
typedef boost::signals2::signal<void (const grt::Message&)> ProcessMessageSignal;
public:
typedef boost::shared_ptr<GRTTask> Ref;
static Ref create_task(const std::string &name, const boost::shared_ptr<GRTDispatcher> dispatcher,
const boost::function<grt::ValueRef(grt::GRT*)> &function);
//XXX replace with direct slots?
StartedSignal *signal_started() { return &_started; }
FinishedSignal *signal_finished() { return &_finished; }
FailedSignal *signal_failed() { return &_failed; }
ProcessMessageSignal *signal_message() { return &_message; }
protected:
boost::function<grt::ValueRef (grt::GRT*)> _function;
StartedSignal _started;
FinishedSignal _finished;
FailedSignal _failed;
ProcessMessageSignal _message;
virtual grt::ValueRef execute(grt::GRT *grt);
GRTTask(const std::string &name, const boost::shared_ptr<GRTDispatcher> dispatcher,
const boost::function<grt::ValueRef(grt::GRT*)> &function);
virtual void started_m();
virtual void finished_m(const grt::ValueRef &result);
virtual void failed_m(const std::exception &error);
virtual bool process_message(const grt::Message &msg);
virtual void process_message_m(const grt::Message &msg);
};
//------------------------------------------------------------------------------------------------
class GRTShellTask : public GRTTaskBase
{
typedef boost::signals2::signal<void (grt::ShellCommand,std::string)> FinishedSignal;
typedef boost::signals2::signal<void (const grt::Message&)> ProcessMessageSignal;
public:
typedef boost::shared_ptr<GRTShellTask> Ref;
static Ref create_task(const std::string &name, const boost::shared_ptr<GRTDispatcher> dispatcher,
const std::string &command);
FinishedSignal &signal_finished() { return _finished_signal; }
ProcessMessageSignal &signal_message() { return _message; }
inline std::string get_prompt() const { return _prompt; }
inline grt::ShellCommand get_result() const { return _result; }
protected:
GRTShellTask(const std::string &name, const boost::shared_ptr<GRTDispatcher> dispatcher,
const std::string &command);
virtual grt::ValueRef execute(grt::GRT *grt);
virtual void finished_m(const grt::ValueRef &result);
virtual bool process_message(const grt::Message &msg);
virtual void process_message_m(const grt::Message &msg);
FinishedSignal _finished_signal;
ProcessMessageSignal _message;
std::string _command;
std::string _prompt;
grt::ShellCommand _result;
};
//------------------------------------------------------------------------------------------------
class WBPUBLICBACKEND_PUBLIC_FUNC GRTDispatcher : public boost::enable_shared_from_this<GRTDispatcher>
{
public:
typedef void (*FlushAndWaitCallback)();
typedef boost::shared_ptr<GRTDispatcher> Ref;
private:
GAsyncQueue *_task_queue;
FlushAndWaitCallback _flush_main_thread_and_wait;
volatile base::refcount_t _busy;
bool _threading_disabled;
base::Semaphore _w_runing;
volatile bool _shutdown_callback;
bool _is_main_dispatcher;
bool _shut_down;
GAsyncQueue *_callback_queue;
GThread *_thread;
static gpointer worker_thread(gpointer data);
grt::GRT *_grt;
GRTTaskBase::Ref _current_task;
GRTDispatcher(grt::GRT *grt, bool threaded, bool is_main_dispatcher);
void prepare_task(const GRTTaskBase::Ref task);
void execute_task(const GRTTaskBase::Ref task);
void worker_thread_init();
void worker_thread_release();
void worker_thread_iteration();
void restore_callbacks(const GRTTaskBase::Ref task);
bool message_callback(const grt::Message &msg, void *sender);
public:
static Ref create_dispatcher(grt::GRT *grt, bool threaded, bool is_main_dispatcher);
virtual ~GRTDispatcher();
grt::GRT *grt() { return _grt; };
void execute_now(const GRTTaskBase::Ref task);
void add_task(const GRTTaskBase::Ref task);
grt::ValueRef add_task_and_wait(const GRTTaskBase::Ref task) THROW (grt::grt_runtime_error);
grt::ValueRef execute_sync_function(const std::string &name,
const boost::function<grt::ValueRef (grt::GRT*)> &function) THROW (grt::grt_runtime_error);
void execute_async_function(const std::string &name,
const boost::function<grt::ValueRef (grt::GRT*)> &function) THROW (grt::grt_runtime_error);
void wait_task(const GRTTaskBase::Ref task);
template<class R>
R call_from_main_thread(const boost::function<R ()> &callback, bool wait, bool force_queue)
{
typename DispatcherCallback<R>::Ref cb = DispatcherCallback<R>::create_callback(callback);
call_from_main_thread(cb, wait, force_queue);
return cb->get_result();
}
void call_from_main_thread(const DispatcherCallbackBase::Ref callback, bool wait, bool force_queue);
void set_main_thread_flush_and_wait(FlushAndWaitCallback callback);
FlushAndWaitCallback get_main_thread_flush_and_wait() { return _flush_main_thread_and_wait; }
void start();
void shutdown();
bool get_busy();
void cancel_task(const GRTTaskBase::Ref task);
void flush_pending_callbacks();
GThread *get_thread() const { return _thread; }
};
template<>
inline void GRTDispatcher::call_from_main_thread<void>(const boost::function<void ()> &callback, bool wait, bool force_queue)
{
DispatcherCallback<void>::Ref cb = DispatcherCallback<void>::create_callback(callback);
call_from_main_thread(cb, wait, force_queue);
}
};
|