This file is indexed.

/usr/include/zthread/Exceptions.h is in libzthread-dev 2.3.2-7ubuntu2.

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
/*
 * 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 __ZTEXCEPTIONS_H__
#define __ZTEXCEPTIONS_H__


#include "zthread/Config.h"
#include <string>

namespace ZThread { 
  
/**
 * @class Synchronization_Exception
 *
 * Serves as a general base class for the Exception hierarchy used within
 * this package.
 *
 */
class Synchronization_Exception {

  // Restrict heap allocation
  static void * operator new(size_t size);
  static void * operator new[](size_t size);

  std::string _msg;
  
public:
  
  /**
   * Create a new exception with a default error message 'Synchronization 
   * Exception'
   */
  Synchronization_Exception() : _msg("Synchronization exception") { }

  /**
   * Create a new exception with a given error message
   *
   * @param const char* - error message
   */
  Synchronization_Exception(const char* msg) : _msg(msg) { }

  /**
   * Get additional info about the exception
   *
   * @return const char* for the error message
   */
  const char* what() const {
    return _msg.c_str();
  }
  
};
  

/**
 * @class Interrupted_Exception
 *
 * Used to describe an interrupted operation that would have normally
 * blocked the calling thread
 */
class Interrupted_Exception : public Synchronization_Exception {

  public:

  //! Create a new exception
  Interrupted_Exception() : Synchronization_Exception("Thread interrupted") { }

  //! Create a new exception
  Interrupted_Exception(const char* msg) : Synchronization_Exception(msg) { }

};
  
 
  
/**
 * @class Deadlock_Exception
 *
 * Thrown when deadlock has been detected
 */
class Deadlock_Exception : public Synchronization_Exception {
  public:

  //! Create a new exception
  Deadlock_Exception() : Synchronization_Exception("Deadlock detected") { }

  //! Create a new exception
  Deadlock_Exception(const char* msg) : Synchronization_Exception(msg) { }

};
  
  
/**
 * @class InvalidOp_Exception
 *
 * Thrown when performing an illegal operation this object
 */
class InvalidOp_Exception : public Synchronization_Exception {
  public:

  //! Create a new exception
  InvalidOp_Exception() : Synchronization_Exception("Invalid operation") { }
  //! Create a new exception
  InvalidOp_Exception(const char* msg) : Synchronization_Exception(msg) { }

};

  
  
/**
 * @class Initialization_Exception
 *
 * Thrown when the system has no more resources to create new 
 * synchronization controls
 */
class Initialization_Exception : public Synchronization_Exception {
  
  public:

  //! Create a new exception
  Initialization_Exception() : Synchronization_Exception("Initialization error") { }
  //! Create a new exception
  Initialization_Exception(const char*msg) : Synchronization_Exception(msg) { }

};
  
/**
 * @class Cancellation_Exception
 *
 * Cancellation_Exceptions are thrown by 'Canceled' objects. 
 * @see Cancelable
 */
class Cancellation_Exception : public Synchronization_Exception {

  public:
  
  //! Create a new Cancelltion_Exception
  Cancellation_Exception()  : Synchronization_Exception("Canceled") { }
  //! Create a new Cancelltion_Exception
  Cancellation_Exception(const char*msg) : Synchronization_Exception(msg) { }
  
};
  

/**
 * @class Timeout_Exception
 *
 * There is no need for error messaged simply indicates the last
 * operation timed out
 */
class Timeout_Exception : public Synchronization_Exception {
  public:

  //! Create a new Timeout_Exception
  Timeout_Exception() : Synchronization_Exception("Timeout") { }
  //! Create a new 
  Timeout_Exception(const char*msg) : Synchronization_Exception(msg) { }
  
};

/**
 * @class NoSuchElement_Exception
 * 
 * The last operation that was attempted on a Queue could not find 
 * the item that was indicated (during that last Queue method invocation)
 */
class NoSuchElement_Exception {
 public:
  
  //! Create a new exception
  NoSuchElement_Exception() {}

};

/**
 * @class InvalidTask_Exception
 *
 * Thrown when a task is not valid (e.g. null or start()ing a thread with 
 * no overriden run() method)
 */
class InvalidTask_Exception : public InvalidOp_Exception {
 public:

  //! Create a new exception
  InvalidTask_Exception() : InvalidOp_Exception("Invalid task") {}
  
};

/**
 * @class BrokenBarrier_Exception
 *
 * Thrown when a Barrier is broken because one of the participating threads
 * has been interrupted.
 */
class BrokenBarrier_Exception : public Synchronization_Exception {

  public:

  //! Create a new exception
  BrokenBarrier_Exception() : Synchronization_Exception("Barrier broken") { }

  //! Create a new exception
  BrokenBarrier_Exception(const char* msg) : Synchronization_Exception(msg) { }

};
  
/**
 * @class Future_Exception
 *
 * Thrown when there is an error using a Future.
 */
class Future_Exception : public Synchronization_Exception {

  public:

  //! Create a new exception
  Future_Exception() : Synchronization_Exception() { }

  //! Create a new exception
  Future_Exception(const char* msg) : Synchronization_Exception(msg) { }

};

};

#endif // __ZTEXCEPTIONS_H__