/usr/include/boost/signals2/connection.hpp is in libboost1.62-dev 1.62.0+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 366 367 368 369 370 371 372 373 374 | /*
boost::signals2::connection provides a handle to a signal/slot connection.
Author: Frank Mori Hess <fmhess@users.sourceforge.net>
Begin: 2007-01-23
*/
// Copyright Frank Mori Hess 2007-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)
// See http://www.boost.org/libs/signals2 for library home page.
#ifndef BOOST_SIGNALS2_CONNECTION_HPP
#define BOOST_SIGNALS2_CONNECTION_HPP
#include <boost/function.hpp>
#include <boost/mpl/bool.hpp>
#include <boost/noncopyable.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/signals2/detail/auto_buffer.hpp>
#include <boost/signals2/detail/null_output_iterator.hpp>
#include <boost/signals2/detail/unique_lock.hpp>
#include <boost/signals2/slot.hpp>
#include <boost/weak_ptr.hpp>
namespace boost
{
namespace signals2
{
inline void null_deleter(const void*) {}
namespace detail
{
// This lock maintains a list of shared_ptr<void>
// which will be destroyed only after the lock
// has released its mutex. Used to garbage
// collect disconnected slots
template<typename Mutex>
class garbage_collecting_lock: public noncopyable
{
public:
garbage_collecting_lock(Mutex &m):
lock(m)
{}
void add_trash(const shared_ptr<void> &piece_of_trash)
{
garbage.push_back(piece_of_trash);
}
private:
// garbage must be declared before lock
// to insure it is destroyed after lock is
// destroyed.
auto_buffer<shared_ptr<void>, store_n_objects<10> > garbage;
unique_lock<Mutex> lock;
};
class connection_body_base
{
public:
connection_body_base():
_connected(true), m_slot_refcount(1)
{
}
virtual ~connection_body_base() {}
void disconnect()
{
garbage_collecting_lock<connection_body_base> local_lock(*this);
nolock_disconnect(local_lock);
}
template<typename Mutex>
void nolock_disconnect(garbage_collecting_lock<Mutex> &lock_arg) const
{
if(_connected)
{
_connected = false;
dec_slot_refcount(lock_arg);
}
}
virtual bool connected() const = 0;
shared_ptr<void> get_blocker()
{
unique_lock<connection_body_base> local_lock(*this);
shared_ptr<void> blocker = _weak_blocker.lock();
if(blocker == shared_ptr<void>())
{
blocker.reset(this, &null_deleter);
_weak_blocker = blocker;
}
return blocker;
}
bool blocked() const
{
return !_weak_blocker.expired();
}
bool nolock_nograb_blocked() const
{
return nolock_nograb_connected() == false || blocked();
}
bool nolock_nograb_connected() const {return _connected;}
// expose part of Lockable concept of mutex
virtual void lock() = 0;
virtual void unlock() = 0;
// Slot refcount should be incremented while
// a signal invocation is using the slot, in order
// to prevent slot from being destroyed mid-invocation.
// garbage_collecting_lock parameter enforces
// the existance of a lock before this
// method is called
template<typename Mutex>
void inc_slot_refcount(const garbage_collecting_lock<Mutex> &)
{
BOOST_ASSERT(m_slot_refcount != 0);
++m_slot_refcount;
}
// if slot refcount decrements to zero due to this call,
// it puts a
// shared_ptr to the slot in the garbage collecting lock,
// which will destroy the slot only after it unlocks.
template<typename Mutex>
void dec_slot_refcount(garbage_collecting_lock<Mutex> &lock_arg) const
{
BOOST_ASSERT(m_slot_refcount != 0);
if(--m_slot_refcount == 0)
{
lock_arg.add_trash(release_slot());
}
}
protected:
virtual shared_ptr<void> release_slot() const = 0;
weak_ptr<void> _weak_blocker;
private:
mutable bool _connected;
mutable unsigned m_slot_refcount;
};
template<typename GroupKey, typename SlotType, typename Mutex>
class connection_body: public connection_body_base
{
public:
typedef Mutex mutex_type;
connection_body(const SlotType &slot_in, const boost::shared_ptr<mutex_type> &signal_mutex):
m_slot(new SlotType(slot_in)), _mutex(signal_mutex)
{
}
virtual ~connection_body() {}
virtual bool connected() const
{
garbage_collecting_lock<mutex_type> local_lock(*_mutex);
nolock_grab_tracked_objects(local_lock, detail::null_output_iterator());
return nolock_nograb_connected();
}
const GroupKey& group_key() const {return _group_key;}
void set_group_key(const GroupKey &key) {_group_key = key;}
template<typename M>
void disconnect_expired_slot(garbage_collecting_lock<M> &lock_arg)
{
if(!m_slot) return;
bool expired = slot().expired();
if(expired == true)
{
nolock_disconnect(lock_arg);
}
}
template<typename M, typename OutputIterator>
void nolock_grab_tracked_objects(garbage_collecting_lock<M> &lock_arg,
OutputIterator inserter) const
{
if(!m_slot) return;
slot_base::tracked_container_type::const_iterator it;
for(it = slot().tracked_objects().begin();
it != slot().tracked_objects().end();
++it)
{
void_shared_ptr_variant locked_object
(
apply_visitor
(
detail::lock_weak_ptr_visitor(),
*it
)
);
if(apply_visitor(detail::expired_weak_ptr_visitor(), *it))
{
nolock_disconnect(lock_arg);
return;
}
*inserter++ = locked_object;
}
}
// expose Lockable concept of mutex
virtual void lock()
{
_mutex->lock();
}
virtual void unlock()
{
_mutex->unlock();
}
SlotType &slot()
{
return *m_slot;
}
const SlotType &slot() const
{
return *m_slot;
}
protected:
virtual shared_ptr<void> release_slot() const
{
shared_ptr<void> released_slot = m_slot;
m_slot.reset();
return released_slot;
}
private:
mutable boost::shared_ptr<SlotType> m_slot;
const boost::shared_ptr<mutex_type> _mutex;
GroupKey _group_key;
};
}
class shared_connection_block;
class connection
{
public:
friend class shared_connection_block;
connection() {}
connection(const connection &other): _weak_connection_body(other._weak_connection_body)
{}
connection(const boost::weak_ptr<detail::connection_body_base> &connectionBody):
_weak_connection_body(connectionBody)
{}
// move support
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
connection(connection && other): _weak_connection_body(std::move(other._weak_connection_body))
{
// make sure other is reset, in case it is a scoped_connection (so it
// won't disconnect on destruction after being moved away from).
other._weak_connection_body.reset();
}
connection & operator=(connection && other)
{
if(&other == this) return *this;
_weak_connection_body = std::move(other._weak_connection_body);
// make sure other is reset, in case it is a scoped_connection (so it
// won't disconnect on destruction after being moved away from).
other._weak_connection_body.reset();
return *this;
}
#endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
connection & operator=(const connection & other)
{
if(&other == this) return *this;
_weak_connection_body = other._weak_connection_body;
return *this;
}
~connection() {}
void disconnect() const
{
boost::shared_ptr<detail::connection_body_base> connectionBody(_weak_connection_body.lock());
if(connectionBody == 0) return;
connectionBody->disconnect();
}
bool connected() const
{
boost::shared_ptr<detail::connection_body_base> connectionBody(_weak_connection_body.lock());
if(connectionBody == 0) return false;
return connectionBody->connected();
}
bool blocked() const
{
boost::shared_ptr<detail::connection_body_base> connectionBody(_weak_connection_body.lock());
if(connectionBody == 0) return true;
return connectionBody->blocked();
}
bool operator==(const connection& other) const
{
boost::shared_ptr<detail::connection_body_base> connectionBody(_weak_connection_body.lock());
boost::shared_ptr<detail::connection_body_base> otherConnectionBody(other._weak_connection_body.lock());
return connectionBody == otherConnectionBody;
}
bool operator!=(const connection& other) const
{
return !(*this == other);
}
bool operator<(const connection& other) const
{
boost::shared_ptr<detail::connection_body_base> connectionBody(_weak_connection_body.lock());
boost::shared_ptr<detail::connection_body_base> otherConnectionBody(other._weak_connection_body.lock());
return connectionBody < otherConnectionBody;
}
void swap(connection &other)
{
using std::swap;
swap(_weak_connection_body, other._weak_connection_body);
}
protected:
boost::weak_ptr<detail::connection_body_base> _weak_connection_body;
};
inline void swap(connection &conn1, connection &conn2)
{
conn1.swap(conn2);
}
class scoped_connection: public connection
{
public:
scoped_connection() {}
scoped_connection(const connection &other):
connection(other)
{}
~scoped_connection()
{
disconnect();
}
scoped_connection& operator=(const connection &rhs)
{
disconnect();
connection::operator=(rhs);
return *this;
}
// move support
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
scoped_connection(scoped_connection && other): connection(std::move(other))
{
}
scoped_connection(connection && other): connection(std::move(other))
{
}
scoped_connection & operator=(scoped_connection && other)
{
if(&other == this) return *this;
disconnect();
connection::operator=(std::move(other));
return *this;
}
scoped_connection & operator=(connection && other)
{
if(&other == this) return *this;
disconnect();
connection::operator=(std::move(other));
return *this;
}
#endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
connection release()
{
connection conn(_weak_connection_body);
_weak_connection_body.reset();
return conn;
}
private:
scoped_connection(const scoped_connection &other);
scoped_connection& operator=(const scoped_connection &rhs);
};
// Sun 5.9 compiler doesn't find the swap for base connection class when
// arguments are scoped_connection, so we provide this explicitly.
inline void swap(scoped_connection &conn1, scoped_connection &conn2)
{
conn1.swap(conn2);
}
}
}
#endif // BOOST_SIGNALS2_CONNECTION_HPP
|