This file is indexed.

/usr/include/cwidget/generic/threads/event_queue.h is in libcwidget-dev 0.5.17-7.

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
// channel.h                                              -*-c++-*-
//
//   Copyright (C) 2005, 2007 Daniel Burrows
//
//   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; either version 2 of
//   the License, or (at your option) any later version.
//
//   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; see the file COPYING.  If not, write to
//   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
//   Boston, MA 02111-1307, USA.

#ifndef EVENT_QUEUE_H
#define EVENT_QUEUE_H

#include "threads.h"

#include <deque>

namespace cwidget
{
  namespace threads
  {
    /** A simple unbounded communications channel suitable for use as,
     *  eg, an event queue.  Writers never block (except as necessary to
     *  maintain consistency), but readers block while the queue is
     *  empty.  If there are multiple readers, they will receive results
     *  in an arbitrary order.
     *
     *  This implementation is safe and flexible, but not terribly
     *  efficient.  For instance, readers and writers block each other
     *  out (other approaches can avoid this unless the queue is empty).
     *  In aptitude it's used for the global event queue, which doesn't
     *  get all that many deliveries, so it should be good enough.  Just
     *  don't use it to stream bits off a network connection and then
     *  complain I didn't warn you!
     */
    template<typename T>
    class event_queue
    {
      std::deque<T> q;

      condition c;
      mutable mutex m;

      struct not_empty
      {
	const std::deque<T> &q;
      public:
	not_empty(const std::deque<T> &_q)
	  :q(_q)
	{
	}

	bool operator()() const
	{
	  return !q.empty();
	}
      };

      event_queue(const event_queue &other);
      event_queue &operator=(const event_queue &other);
    public:
      /** Create an empty queue. */
      event_queue()
      {
      }

      ~event_queue()
      {
      }

      /** Push the given value onto the event queue. */
      void put(const T &t)
      {
	mutex::lock l(m);

	q.push_back(t);
	c.wake_one();
      }

      /** Retrieve a single value from the event queue. */
      T get()
      {
	mutex::lock l(m);

	c.wait(l, not_empty(q));
	T rval = q.front();
	q.pop_front();

	return rval;
      }

      /** Retrieve a single value from the event queue if the queue is
       *  non-empty.
       *
       *  \param out the location in which to store the retrieved value
       *  \return \b true iff a value was retrieved.
       */
      bool try_get(T &out)
      {
	mutex::lock l(m);

	if(q.empty())
	  return false;
	else
	  {
	    out = q.front();
	    q.pop_front();
	    return true;
	  }
      }

      /** Retrieve a single value from the event queue, or fail if the
       *  time "until" is reached.
       */
      bool timed_get(T &out, const timespec &until)
      {
	mutex::lock l(m);

	if(c.timed_wait(l, until, not_empty(q)))
	  {
	    out = q.front();
	    q.pop_front();
	    return true;
	  }
	else
	  return false;
      }

      /** Return \b true if the event queue is currently empty. */
      bool empty() const
      {
	// Not sure the lock is required here, but it makes things a bit
	// safer in case the STL is thread-unsafe in weird ways.
	mutex::lock l(m);
	bool rval = q.empty();
	return rval;
      }
    };
  }
}

#endif