Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r49834 - sandbox/interthreads/libs/interthreads/src
From: vicente.botet_at_[hidden]
Date: 2008-11-19 05:43:11


Author: viboes
Date: 2008-11-19 05:43:10 EST (Wed, 19 Nov 2008)
New Revision: 49834
URL: http://svn.boost.org/trac/boost/changeset/49834

Log:
intterthreads version 0.1
Added:
   sandbox/interthreads/libs/interthreads/src/thread_decorator.cpp (contents, props changed)
   sandbox/interthreads/libs/interthreads/src/thread_keep_alive.cpp (contents, props changed)

Added: sandbox/interthreads/libs/interthreads/src/thread_decorator.cpp
==============================================================================
--- (empty file)
+++ sandbox/interthreads/libs/interthreads/src/thread_decorator.cpp 2008-11-19 05:43:10 EST (Wed, 19 Nov 2008)
@@ -0,0 +1,41 @@
+//////////////////////////////////////////////////////////////////////////////
+//
+// (C) Copyright Roland Schwarz 2006.
+// (C) Copyright Vicente J. Botet Escriba 2008.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or
+// copy at http://www.boost.org/LICENSE_1_0.txt)
+//
+// Based on the threadalert library of Roland Schwarz
+//
+//////////////////////////////////////////////////////////////////////////////
+
+#include <boost/interthreads/thread_decorator.hpp>
+#include <boost/thread/thread.hpp>
+
+namespace boost {
+namespace interthreads {
+//boost::interthreads::
+ thread_decoration* boost::interthreads::thread_decoration::last_ = 0;
+
+ void thread_decoration::decorate() {
+ thread_decoration* p = thread_decoration::last_;
+ while (0 != p) {
+ (*(p->setup_))();
+ if (!p->cleanup_.empty()) {
+ boost::this_thread::at_thread_exit(p->cleanup_);
+ }
+ p = p->prev_;
+ }
+ }
+
+ void thread_decorator::operator()() const {
+ decorate();
+ (*func_)();
+ }
+
+}
+}
+
+
+

Added: sandbox/interthreads/libs/interthreads/src/thread_keep_alive.cpp
==============================================================================
--- (empty file)
+++ sandbox/interthreads/libs/interthreads/src/thread_keep_alive.cpp 2008-11-19 05:43:10 EST (Wed, 19 Nov 2008)
@@ -0,0 +1,224 @@
+//////////////////////////////////////////////////////////////////////////////
+//
+// (C) Copyright Vicente J. Botet Escriba 2008. Distributed under the Boost
+// Software License, Version 1.0. (See accompanying file
+// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+//
+// Based on the threadalert library of Roland Schwarz
+//
+//////////////////////////////////////////////////////////////////////////////
+
+#include <boost/interthreads/thread_keep_alive.hpp>
+#include <boost/interthreads/thread_decorator.hpp>
+#include <boost/interthreads/thread_specific_shared_ptr.hpp>
+#include <boost/thread/locks.hpp>
+#include <cstdlib>
+
+namespace boost {
+namespace interthreads {
+
+namespace detail {
+
+ struct thread_keep_alive_ctx {
+ void set_on_dead_thread(on_dead_thread_type fct, thread* th) {
+ data_->on_dead_=fct;
+ data_->thread_ptr_=th;
+ }
+
+ thread_keep_alive_ctx() : data_(0) {}
+
+ void enable_keep_alive(std::size_t periods, std::size_t checkins) {
+ data_->total_periods_ = data_->periods_ = periods;
+ data_->required_checkins_=checkins;
+ data_->enabled_=true;
+ }
+ void enable_keep_alive() {
+ data_->enabled_ = true;
+ }
+ void disable_keep_alive() {
+ data_->enabled_ = false;
+ }
+ bool enabled() {
+ return data_->enabled_;
+ }
+
+ thread_keep_alive_internal* backup(thread_keep_alive_internal* new_data) {
+ thread_keep_alive_internal* the_backup=data_;
+ data_=new_data;
+ return the_backup;
+ }
+ void restore(thread_keep_alive_internal* backup) {
+ data_=backup;
+ }
+
+
+ void check_point() {
+ ++data_->checkins_;
+ }
+
+ void control(thread::id id) {
+ if (data_->enabled_) {
+ --data_->periods_;
+ if (dead()) {
+ on_dead(id);
+ }
+ data_->checkins_=0;
+ data_->periods_=data_->total_periods_;
+ }
+ }
+
+ typedef thread_specific_shared_ptr <thread_keep_alive_ctx> tssp;
+ inline static tssp& instance() {return instance_;}
+ boost::mutex& get_mutex() {return mutex_;}
+ private:
+ thread_keep_alive_internal* data_;
+ static tssp instance_;
+ boost::mutex mutex_;
+ bool dead() {
+ return ((data_->periods_==0) &&
+ (data_->checkins_ < data_->required_checkins_));
+ }
+
+ void on_dead(thread::id id) {
+ (data_->on_dead_)(id, data_->thread_ptr_);
+ }
+
+ // static void terminate();
+ static void init();
+
+ static thread_decoration initializer_;
+
+ };
+
+ struct keep_alive_mgr {
+ static void loop() {
+ boost::xtime t;
+ boost::xtime_get(&t,1);
+ for(;;) {
+ t.sec += 1;
+ boost::thread::sleep(t);
+ detail::thread_keep_alive_ctx::tssp::lock_type lock(thread_keep_alive_ctx::instance().get_mutex());
+ const detail::thread_keep_alive_ctx::tssp::map_type& tmap(
+ thread_keep_alive_ctx::instance().get_map(lock));
+ for (thread_keep_alive_ctx::tssp::map_type::const_iterator it = tmap.begin();
+ it != tmap.end(); ++it) {
+ it->second->control(it->first);
+ }
+ }
+ }
+ keep_alive_mgr() : thread_(loop) {}
+ ~keep_alive_mgr() {}
+
+// static keep_alive_mgr* instance() { return instance_; }
+ static void initialize() {
+ boost::call_once(flag, init);
+ }
+
+ private:
+ static keep_alive_mgr* instance_;
+ static void init() {
+ instance_=new keep_alive_mgr();
+ }
+
+ boost::thread thread_;
+ static once_flag flag;
+// static keep_alive_mgr* instance_;
+// keep_alive_mgr(const keep_alive_mgr&);
+
+ };
+
+ keep_alive_mgr* keep_alive_mgr::instance_;
+ thread_specific_shared_ptr<detail::thread_keep_alive_ctx> thread_keep_alive_ctx::instance_;
+ thread_decoration thread_keep_alive_ctx::initializer_(thread_keep_alive_ctx::init);
+
+ boost::once_flag keep_alive_mgr::flag;
+// void thread_keep_alive_ctx::terminate() { }
+
+ void thread_keep_alive_ctx::init() {
+ keep_alive_mgr::initialize();
+// boost::this_thread::at_thread_exit(terminate);
+ instance_.reset(new thread_keep_alive_ctx());
+ }
+
+
+
+#ifdef BOOST_THREAD_EXT_KEEP_ALIVE_TEST
+ struct in_nb_kills {
+ unsigned kills_;
+ in_nb_kills();
+ void operator()() {
+ ++kills_;
+ }
+ };
+#endif
+
+ void default_on_dead_thread(thread::id, thread*) {
+ ::abort();
+ }
+ thread_keep_alive_internal::thread_keep_alive_internal()
+ : enabled_(false)
+ , periods_(0)
+ , checkins_(0)
+ , total_periods_(0)
+ , required_checkins_(0)
+ , on_dead_(default_on_dead_thread)
+ , thread_ptr_(0)
+ {}
+}
+
+namespace this_thread {
+ enable_keep_alive::enable_keep_alive(
+ std::size_t periods, std::size_t checkins)
+ {
+ // if (detail::thread_keep_alive_ctx::instance().get()==0) throw error;
+ backup_=detail::thread_keep_alive_ctx::instance()->backup(&data_);
+ detail::thread_keep_alive_ctx::instance()->enable_keep_alive(periods, checkins);
+ }
+
+ enable_keep_alive::~enable_keep_alive() {
+ detail::thread_keep_alive_ctx::instance()->restore(backup_);
+ }
+
+ disable_keep_alive::disable_keep_alive() {
+ // if (detail::thread_keep_alive_ctx::instance().get()==0) throw error;
+ backup_=detail::thread_keep_alive_ctx::instance()->backup(&data_);
+ detail::thread_keep_alive_ctx::instance()->disable_keep_alive();
+ }
+
+ disable_keep_alive::~disable_keep_alive() {
+ detail::thread_keep_alive_ctx::instance()->restore(backup_);
+ }
+
+void keep_alive_point() {
+// if (detail::thread_keep_alive_ctx::instance().get()==0) throw error;
+ detail::thread_keep_alive_ctx::instance()->check_point();
+}
+
+bool keep_alive_enabled() {
+// if (detail::thread_keep_alive_ctx::instance().get()==0) throw error;
+ return detail::thread_keep_alive_ctx::instance()->enabled();
+}
+
+//void set_on_dead_thread(on_dead_thread_type fct, thread* th) {
+void set_on_dead_thread(void (*fct)(thread::id, thread*), thread* th) {
+
+// if (detail::thread_keep_alive_ctx::instance().get()==0) throw error;
+ detail::thread_keep_alive_ctx::instance()->set_on_dead_thread(fct, th);
+}
+
+}
+
+bool keep_alive_enabled(thread::id id) {
+ detail::thread_keep_alive_ctx::tssp::lock_type lock(detail::thread_keep_alive_ctx::instance().get_mutex());
+ return detail::thread_keep_alive_ctx::instance()[id]->enabled();
+}
+
+void set_on_dead_thread(thread::id id, void (*fct)(thread::id, thread*), thread* th) {
+ detail::thread_keep_alive_ctx::tssp::lock_type lock(detail::thread_keep_alive_ctx::instance().get_mutex());
+ detail::thread_keep_alive_ctx::instance()[id]->set_on_dead_thread(fct, th);
+}
+
+}
+}
+
+


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk