This file is indexed.

/usr/include/cigicl/CigiExceptions.h is in libcigicl-dev 3.3.3a+svn818-10ubuntu1.

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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
/** <pre>
 *  The SDK is used to create and format CIGI compliant messages.
 *  Copyright (c) 2001-2005 The Boeing Company
 *  
 *  This library is free software; you can redistribute it and/or modify it 
 *  under the terms of the GNU Lesser General Public License as published by 
 *  the Free Software Foundation; either version 2.1 of the License, or (at 
 *  your option) any later version.
 *  
 *  This library 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 Lesser Public License for more 
 *  details.
 *  
 *  You should have received a copy of the GNU Lesser General Public License 
 *  along with this library; if not, write to the Free Software Foundation, 
 *  Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *  
 *  FILENAME:   CigiExceptions.h
 *  LANGUAGE:   C++
 *  CLASS:      UNCLASSIFIED
 *  PROJECT:    Common Image Generator Interface (CIGI) SDK
 *  
 *  PROGRAM DESCRIPTION: 
 *  ...
 *  
 *  MODIFICATION NOTES:
 *  DATE     NAME                                SCR NUMBER
 *  DESCRIPTION OF CHANGE........................
 *  
 *  09/15/2003 James Durtschy                    CIGI_CR_DR_1
 *  Initial Release.
 *  
 *  01/21/2005 Greg Basler                       Version 1.5
 *  Added the CIGI_SPEC modifier to the class declarations for exporting the 
 *  classes in a Windows DLL.
 *  
 *  06/23/2006 Greg Basler                       Version 1.7.1
 *  Changed native char and unsigned char types to CIGI types Cigi_int8 and 
 *  Cigi_uint8.
 * </pre>
 *  Author: The Boeing Company
 *
 */


#if ! defined( _CIGI_EXCEPTIONS_INCLUDED_)
#define _CIGI_EXCEPTIONS_INCLUDED_
    
    
#include "CigiException.h"
#include <sstream>
#include <string.h>
#include <stdio.h>


//=========================================================
//! This is the exception thrown when a problem involving 
//!   a class, variable, memory, etc. allocatin failure 
//!   is encountered.
//!
class CIGI_SPEC CigiAllocFailedException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiAllocFailedException 
   //!   exception class
   //!
   CigiAllocFailedException(void)
   {
      Msg = "Allocation Failure\n";
      ErrorCode = CIGI_ERROR_ALLOC_FAILED;
   }

   //=========================================================
   //! General Destructor for the CigiAllocFailedException 
   //!   exception class
   //!
   virtual ~CigiAllocFailedException(void) throw() { };

protected:

};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   the current message buffer being overrun is encountered.
//!
class CIGI_SPEC CigiBufferOverrunException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiBufferOverrunException 
   //!   exception class
   //!
   CigiBufferOverrunException(void)
   {
      Msg = "Buffer Overrun Error\n";
      ErrorCode = CIGI_ERROR_BUFFER_OVERRUN;
   }

   //=========================================================
   //! General Destructor for the CigiBufferOverrunException 
   //!   exception class
   //!
   virtual ~CigiBufferOverrunException(void) throw() { };

protected:

};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   the buffer being to small to use is encountered.
//!
class CIGI_SPEC CigiBufferTooSmallException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiBufferTooSmallException 
   //!   exception class
   //!
   CigiBufferTooSmallException(void)
   {
      Msg = "Buffer Too Small Error\n";
      ErrorCode = CIGI_ERROR_BUFFER_TOO_SMALL;
   }


   //=========================================================
   //! General Destructor for the CigiBufferTooSmallException 
   //!   exception class
   //!
   virtual ~CigiBufferTooSmallException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   routines having a specific call sequence being called 
//!   out of that sequence is encountered.
//!
class CIGI_SPEC CigiCalledOutOfSequenceException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiCalledOutOfSequenceException 
   //!   exception class
   //!
   CigiCalledOutOfSequenceException(void)
   {
      Msg = "Routine Call Out Of Sequence Error\n";
      ErrorCode = CIGI_ERROR_CALLED_OUT_OF_SEQUENCE;
   }

   //=========================================================
   //! General Destructor for the CigiCalledOutOfSequenceException 
   //!   exception class
   //!
   virtual ~CigiCalledOutOfSequenceException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   the use of an invalid opcode/packet id is encountered.
//!
class CIGI_SPEC CigiInvalidOpcodeException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiInvalidOpcodeException 
   //!   exception class
   //!
   CigiInvalidOpcodeException(void)
   {
      Msg = "Invalid Packet ID\n";
      ErrorCode = CIGI_ERROR_INVALID_OPCODE;
   }

   //=========================================================
   //! General Destructor for the CigiInvalidOpcodeException 
   //!   exception class
   //!
   virtual ~CigiInvalidOpcodeException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   an invalid packet is encountered.
//!
class CIGI_SPEC CigiInvalidPacketException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiInvalidPacketException 
   //!   exception class
   //!
   CigiInvalidPacketException(void)
   {
      Msg = "Invalid Packet\n";
      ErrorCode = CIGI_ERROR_INVALID_PACKET;
   }

   //=========================================================
   //! General Destructor for the CigiInvalidPacketException 
   //!   exception class
   //!
   virtual ~CigiInvalidPacketException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   an incorrect packet size is encountered.
//!
class CIGI_SPEC CigiInvalidPacketSizeException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiInvalidPacketSizeException 
   //!   exception class
   //!
   CigiInvalidPacketSizeException(void)
   {
      Msg = "Invalid Packet Size\n";
      ErrorCode = CIGI_ERROR_INVALID_PACKET_SIZE;
   }

   //=========================================================
   //! General Destructor for the CigiInvalidPacketSizeException 
   //!   exception class
   //!
   virtual ~CigiInvalidPacketSizeException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   an invalid session being requested is encountered.
//!
class CIGI_SPEC CigiInvalidSessionException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiInvalidSessionException 
   //!   exception class
   //!
   CigiInvalidSessionException(void) 
   {
      Msg = "Invalid Session\n";
      ErrorCode = CIGI_ERROR_INVALID_SESSION;
   }

   //=========================================================
   //! General Destructor for the CigiInvalidSessionException 
   //!   exception class
   //!
   virtual ~CigiInvalidSessionException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   invalid seesion type being requested is encountered.
//!
class CIGI_SPEC CigiInvalidSessionTypeException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiInvalidSessionTypeException 
   //!   exception class
   //!
   CigiInvalidSessionTypeException(void) 
   {
      Msg = "Invalid Session Type\n";
      ErrorCode = CIGI_ERROR_INVALID_SESSION_TYPE;
   }

   //=========================================================
   //! General Destructor for the CigiInvalidSessionTypeException 
   //!   exception class
   //!
   virtual ~CigiInvalidSessionTypeException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   too many sessions being requested is encountered.
//!
class CIGI_SPEC CigiMaxSessionsException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiMaxSessionsException 
   //!   exception class
   //!
   CigiMaxSessionsException(void) 
   {
      Msg = "Requested Number Of Sessions Exceeds Maximum\n";
      ErrorCode = CIGI_ERROR_MAX_SESSIONS;
   }

   //=========================================================
   //! General Destructor for the CigiMaxSessionsException 
   //!   exception class
   //!
   virtual ~CigiMaxSessionsException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   the IG Control message not being created and used is encountered.
//!
class CIGI_SPEC CigiMissingIgControlException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiMissingIgControlException 
   //!   exception class
   //!
   CigiMissingIgControlException(void) 
   {
      Msg = "The Message Is Missing The IG Control Packet\n";
      ErrorCode = CIGI_ERROR_MISSING_IG_CONTROL_PACKET;
   }

   //=========================================================
   //! General Destructor for the CigiMissingIgControlException 
   //!   exception class
   //!
   virtual ~CigiMissingIgControlException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   the Start Of Frame message not being created and used 
//!   is encountered.
//!
class CIGI_SPEC CigiMissingStartOfFrameException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiMissingStartOfFrameException 
   //!   exception class
   //!
   CigiMissingStartOfFrameException(void) 
   {
      Msg = "The Message Is Missing The Start Of Frame Packet\n";
      ErrorCode = CIGI_ERROR_MISSING_SOF_PACKET;
   }

   //=========================================================
   //! General Destructor for the CigiMissingStartOfFrameException 
   //!   exception class
   //!
   virtual ~CigiMissingStartOfFrameException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   an Unimplemented function, packet, etc. is encountered.
//!
class CIGI_SPEC CigiNotImplementedException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiNotImplementedException 
   //!   exception class
   //!
   CigiNotImplementedException(void) 
   {
      Msg = "Not Implemented Error\n";
      ErrorCode = CIGI_ERROR_NOT_IMPLEMENTED;
   }

   //=========================================================
   //! General Destructor for the CigiNotImplementedException 
   //!   exception class
   //!
   virtual ~CigiNotImplementedException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   a null pointer being improperly used is encountered.
//!
class CIGI_SPEC CigiNullPointerException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiNullPointerException 
   //!   exception class
   //!
   CigiNullPointerException(void) 
   {
      Msg = "Null Pointer Error\n";
      ErrorCode = CIGI_ERROR_UNEXPECTED_NULL;
   }

   //=========================================================
   //! General Destructor for the CigiNullPointerException 
   //!   exception class
   //!
   virtual ~CigiNullPointerException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   a packet being too large is encountered.
//!
class CIGI_SPEC CigiPacketTooLargeException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiPacketTooLargeException 
   //!   exception class
   //!
   CigiPacketTooLargeException(void) 
   {
      Msg = "Packet Is Too Large\n";
      ErrorCode = CIGI_ERROR_PACKET_TOO_LARGE;
   }

   //=========================================================
   //! General Destructor for the CigiPacketTooLargeException 
   //!   exception class
   //!
   virtual ~CigiPacketTooLargeException(void) throw() { };

protected:


};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   a packet parameter being set to an invalid value 
//!   is encountered.
//!
class CIGI_SPEC CigiValueOutOfRangeException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiValueOutOfRangeException 
   //!   exception class
   //!
   CigiValueOutOfRangeException(void) 
   {
      Msg = "Value Out Of Range\n";
      ErrorCode = CIGI_ERROR_VALUE_OUT_OF_RANGE;
   }

   //=========================================================
   //! Integer Data Fill Constructor for the CigiValueOutOfRangeException 
   //!   exception class
   //!
   CigiValueOutOfRangeException(const char *ParameterName, int Value, int Low, int High) 
   {
      std::ostringstream os;
      os << "Parameter Out of Range: Parameter "
         << ParameterName << " is " << Value 
         << ". The valid range is from " << Low << " to " << High << std::endl;

      Msg = os.str();
      ErrorCode = CIGI_ERROR_VALUE_OUT_OF_RANGE;
   }

   //=========================================================
   //! Float/Double Data Fill Constructor for the CigiValueOutOfRangeException 
   //!   exception class
   //!
   CigiValueOutOfRangeException(const char *ParameterName, double Value, double Low, double High) 
   {
      std::ostringstream os;
      os << "Parameter Out of Range: Parameter "
         << ParameterName << " is " << Value 
         << ". The valid range is from " << Low << " to " << High << std::endl;

      Msg = os.str();
      ErrorCode = CIGI_ERROR_VALUE_OUT_OF_RANGE;
   }

   //=========================================================
   //! Float/Double Data Fill Constructor for the CigiValueOutOfRangeException 
   //!   exception class
   //!
   CigiValueOutOfRangeException(const char *ParameterName, double Value, const char *Mod, double Limit) 
   {
      std::ostringstream os;
      os << "Parameter Out of Range: Parameter "
         << ParameterName << " is " << Value 
         << ". The valid range is " << Mod << " " << Limit << std::endl;

      Msg = os.str();
      ErrorCode = CIGI_ERROR_VALUE_OUT_OF_RANGE;
   }

   //=========================================================
   //! General Destructor for the CigiValueOutOfRangeException 
   //!   exception class
   //!
   virtual ~CigiValueOutOfRangeException(void) throw() { };

protected:

};

//=========================================================
//! This is the exception thrown when a problem involving 
//!   an attempted use of the wrong CIGI version is encountered.
//!
class CIGI_SPEC CigiWrongVersionException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiWrongVersionException 
   //!   exception class
   //!
   CigiWrongVersionException(void) 
   {
      Msg = "Wrong Cigi Version Used\n";
      ErrorCode = CIGI_ERROR_WRONG_VERSION;
   }

   //=========================================================
   //! General Destructor for the CigiWrongVersionException 
   //!   exception class
   //!
   virtual ~CigiWrongVersionException(void) throw() { };

protected:


};


//=========================================================
//! This is the exception thrown when a problem involving 
//!   an attempted use of the wrong CIGI version is encountered.
//!
class CIGI_SPEC CigiInvalidUserPacketException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiInvalidUserPacketException 
   //!   exception class
   //!
   CigiInvalidUserPacketException(void) 
   {
      Msg = "Cigi User Defined Packets Must Have an ID above 199\n";
      ErrorCode = CIGI_ERROR_INVALID_USER_PACKET;
   }


   //=========================================================
   //! Constructor used to specify the invalid user packet id
   //!
   CigiInvalidUserPacketException(Cigi_uint8 PacketID)
   {
      std::ostringstream os;
      os << "Cigi User Defined Packets Must Have an ID above 199\nUsed ID was "
         << (int)PacketID << std::endl;

      Msg = os.str();
      ErrorCode = CIGI_ERROR_INVALID_USER_PACKET;
   }


   //=========================================================
   //! General Destructor for the CigiWrongVersionException 
   //!   exception class
   //!
   virtual ~CigiInvalidUserPacketException(void) throw() { };

protected:


};



//=========================================================
//! This is the exception thrown when a problem involving 
//!   an attempted use of the wrong CIGI version is encountered.
//!
class CIGI_SPEC CigiImproperPacketException : public CigiException
{

public:

   //=========================================================
   //! General Constructor for the CigiImproperPacketException 
   //!   exception class
   //!
   CigiImproperPacketException(void) 
   {
      Msg = "Improper packet for Session Type\n";
      ErrorCode = CIGI_ERROR_IMPROPER_PACKET;
   }


   //=========================================================
   //! General Destructor for the CigiWrongVersionException 
   //!   exception class
   //!
   virtual ~CigiImproperPacketException(void) throw() { };

protected:


};

#endif // #if ! defined(_CIGI_EXCEPTIONS_INCLUDED_)