/usr/include/zthread/LockedQueue.h is in libzthread-dev 2.3.2-8.
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 | /*
* Copyright (c) 2005, Eric Crahen
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is furnished
* to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#ifndef __ZTLOCKEDQUEUE_H__
#define __ZTLOCKEDQUEUE_H__
#include "zthread/Guard.h"
#include "zthread/Queue.h"
#include <deque>
namespace ZThread {
/**
* @class LockedQueue
* @author Eric Crahen <http://www.code-foo.com>
* @date <2003-07-16T11:42:33-0400>
* @version 2.3.0
*
* A LockedQueue is the simple Queue implementation that provides
* serialized access to the values added to it.
*/
template <class T, class LockType, typename StorageType=std::deque<T> >
class LockedQueue : public Queue<T> {
//! Serialize access to the Queue
LockType _lock;
//! Storage backing the queue
StorageType _queue;
//! Cancellation flag
volatile bool _canceled;
public:
//! Create a LockedQueue
LockedQueue() : _canceled(false) {}
//! Destroy a LockedQueue
virtual ~LockedQueue() { }
/**
* @see Queue::add(const T& item)
*/
virtual void add(const T& item) {
Guard<LockType> g(_lock);
if(_canceled)
throw Cancellation_Exception();
_queue.push_back(item);
}
/**
* @see Queue::add(const T& item, unsigned long timeout)
*/
virtual bool add(const T& item, unsigned long timeout) {
try {
Guard<LockType> g(_lock, timeout);
if(_canceled)
throw Cancellation_Exception();
_queue.push_back(item);
} catch(Timeout_Exception&) { return false; }
return true;
}
/**
* @see Queue::next()
*/
virtual T next() {
Guard<LockType> g(_lock);
if(_queue.size() == 0 && _canceled)
throw Cancellation_Exception();
if(_queue.size() == 0)
throw NoSuchElement_Exception();
T item = _queue.front();
_queue.pop_front();
return item;
}
/**
* @see Queue::next(unsigned long timeout)
*/
virtual T next(unsigned long timeout) {
Guard<LockType> g(_lock, timeout);
if(_queue.size() == 0 && _canceled)
throw Cancellation_Exception();
if(_queue.size() == 0)
throw NoSuchElement_Exception();
T item = _queue.front();
_queue.pop_front();
return item;
}
/**
* @see Queue::cancel()
*/
virtual void cancel() {
Guard<LockType> g(_lock);
_canceled = true;
}
/**
* @see Queue::isCanceled()
*/
virtual bool isCanceled() {
// Faster check since the queue will not become un-canceled
if(_canceled)
return true;
Guard<LockType> g(_lock);
return _canceled;
}
/**
* @see Queue::size()
*/
virtual size_t size() {
Guard<LockType> g(_lock);
return _queue.size();
}
/**
* @see Queue::size(unsigned long timeout)
*/
virtual size_t size(unsigned long timeout) {
Guard<LockType> g(_lock, timeout);
return _queue.size();
}
}; /* LockedQueue */
} // namespace ZThread
#endif // __ZTLOCKEDQUEUE_H__
|