This file is indexed.

/usr/include/t3/widget/t3widget/keybuffer.h is in libt3widget-dev 0.6.2-1build1.

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
/* Copyright (C) 2011-2012,2018 G.P. Halkes
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 3, as
   published by the Free Software Foundation.

   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, see <http://www.gnu.org/licenses/>.
*/
#ifndef T3_WIDGET_KEYBUFFER_H
#define T3_WIDGET_KEYBUFFER_H

#ifndef _T3_WIDGET_INTERNAL
#error This header file is for internal use _only_!!
#endif

/* Buffer for storing keys that ensures thread-safe operation by means of a
   mutex. It is implemented by means of a double ended queue.  */

#include <algorithm>
#include <condition_variable>
#include <deque>
#include <mutex>

#include <t3widget/key.h>
#include <t3widget/mouse.h>

namespace t3_widget {

/** Class implmementing a mutex-protected queue of items. */
template <class T>
class T3_WIDGET_LOCAL item_buffer_t {
 protected:
  /** The list of item symbols. */
  std::deque<T> items;
  /** The mutex used for the critical section. */
  std::mutex lock;
  /** The condition variable used to signal addition to the #keys list. */
  std::condition_variable cond;

 public:
  /** Append an item to the list. */
  void push_back(T item) {
    std::unique_lock<std::mutex> l(lock);
    /* Catch all exceptions, to enusre that unlocking of the mutex is
       performed. The only real exception that can occur here is bad_alloc,
       and there is not much we can do about that anyway. */
    try {
      items.push_back(item);
    } catch (...) {
    }
    cond.notify_one();
  }

  /** Retrieve and remove the item at the front of the queue. */
  T pop_front() {
    T result;
    std::unique_lock<std::mutex> l(lock);
    while (items.empty()) cond.wait(l);
    result = items.front();
    items.pop_front();
    return result;
  }
};

/** Class implmementing a mutex-protected queue of key symbols. */
class T3_WIDGET_LOCAL key_buffer_t : public item_buffer_t<key_t> {
 public:
  /** Append an item to the list, but only if it is not already in the queue. */
  void push_back_unique(key_t key) {
    std::unique_lock<std::mutex> l(lock);

    // Return without adding if the key is already queued
    if (find(items.begin(), items.end(), key) != items.end()) return;

    /* Catch all exceptions, to enusre that unlocking of the mutex is
       performed. The only real exception that can occur here is bad_alloc,
       and there is not much we can do about that anyway. */
    try {
      items.push_back(key);
    } catch (...) {
    }
    cond.notify_one();
  }
};

typedef item_buffer_t<mouse_event_t> mouse_event_buffer_t;

};  // namespace
#endif