This file is indexed.

/usr/include/sipxtapi/rtcp/MsgQueue.h is in libsipxtapi-dev 3.3.0~test17-1.

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
//
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp.  All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////


#ifndef _MsgQueue_h
#define _MsgQueue_h

#include "rtcp/RtcpConfig.h"

// Include
#ifdef WIN32
#include "TLinkedList.h"
#pragma warning(disable:4275)
#elif defined(_VXWORKS)
#include <msgQLib.h>
#elif defined(__pingtel_on_posix__)
#include "os/OsMsgQ.h"
#else
#error Unsupported target platform.
#endif


#include "Message.h"


// Constant Message Type
const unsigned long NOFLUSH=0;
const unsigned long FLUSH=1;
const unsigned long ONE_SECOND=1000;


/*|><|************************************************************************
*
* Class Name:   CMsgQueue
*
* Inheritance:
*
* Methods:
*
* Attributes:
*
* Description:  CMsgQueue is a thread safe class which shall provide
*               general purpose message delivery, storage, retrieval and
*               processing services.  At the heart of the class shall be
*               a FIFO linked list for storing messages, an event object
*               and an apartment style thread.  The apartment thread
*               shall block on an event object waiting for incoming
*               messages to be posted to the linked list.  When a
*               message is posted to the list, the event object shall be
*               set causing the thread to wake up.  Upon waking up, the
*               thread shall take the first message off the linked list
*               and call a general purpose processing method defined as
*               a pure virtual.  The processing method shall accept a
*               message type and an opaque pointer as arguments.  It
*               shall be the responsibility of the user to implement
*               this method and the message processing logic associated
*               with their object.
*
*               The CMsgQueue thread shall continue removing messages
*               from the linked list FIFO until none remain.  When the
*               linked list is emptied, the event object shall be
*               cleared and the CMsgQueue thread shall block waiting for
*               the next message   to be delivered.
*
*               The CMessageQueue shall implement a set of private
*               services for performing internal management of the
*               linked list, event object and thread in addition to
*               public services for posting, retreiving and flushing
*               messages.
*
*
*
*
************************************************************************|<>|*/

class CMsgQueue
#ifdef WIN32
      : public CTLinkedList<CMessage *>   // Inherit Linked List Services
#endif
{

  public:   // Public Member Functions

/*|><|************************************************************************
*
* Method Name:  CMsgQueue - Constructor
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  The CMsgQueue constructor shall perform some very basic
*               setup which shall include the initialization of internal
*               head, tail and entry counter data members.  All other
*               failure prone setup shall be performed in the
*               Initialize() method.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      CMsgQueue();


/*|><|************************************************************************
*
* Method Name:  CMsgQueue - Destructor
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  The destructor for the CMsgQueue object.  This method
*               shall have the responsibility of suspending message
*               processing and flushing all messages held within the
*               message queue.  The flush shall return all allocated
*               memory back to the memory pool through using the
*               services provide in CMemoryPool.  The destructor shall
*               also arrange for the graceful termination of the
*               apartment thread through signalling the terminate event.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      virtual ~CMsgQueue();


/*|><|************************************************************************
*
* Method Name:  Initialize
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  The Initialize method shall perform the fault suceptible
*               initialization associated with this class.  The
*               initialization sequence shall include:
*
*               - Creation of the Message and Terminate Event objects.
*               _ Creation of the Apartment thread
*
*               All of the above initialization steps must succeed for
*               Initialize to return success.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      virtual bool Initialize();

/*|><|************************************************************************
*
* Method Name:  Shutdown
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  The Shutdown method shall trigger all MsgQueue processing to
*               cease.  This is done as part of a two phase termination
*               consisting of succession and destruction.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      virtual bool Shutdown();


/*|><|************************************************************************
*
* Method Name:  Post
*
*
* Inputs:       CMessage *
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  The Post method provides a general purpose
*               facility to post a message of a particular type with
*               optional arguments to the CMsgQueue linked list.
*
*               Post Message shall set the message event object to inform
*               the apartment thread of the arrival of a new message.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      bool Post(CMessage *pMessage);


  protected:    // Protected Member Functions

/*|><|************************************************************************
*
* Method Name:  ProcessMessage
*
*
* Inputs:       CMessage *
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  This is a pure virtual function provide by CMsgQueue as
*               a means for dispatching messages removed from the queue
*               for processing.  It shall be the responsibility of the
*               derived class to implement this method.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      virtual bool ProcessMessage(CMessage *)=0;



/*|><|************************************************************************
*
* Method Name:  TerminateProcessing
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  Terminates thread processing for this object.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void TerminateProcessing(unsigned long dwMode=NOFLUSH);

/*|><|************************************************************************
*
* Method Name:  FlushMessages
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  Removes all messages from the CMsgQueue and releases the
*               memory associated with each entry.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void FlushMessages(void);

  private:

#if defined(_WIN32)
/*|><|************************************************************************
*
* Method Name:  CreateMessageEvent
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  This method shall create a manually resetable event object to
*               be used for informing the MsgQueue object of the arrival of a
*               new message.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      bool CreateMessageEvent();

/*|><|************************************************************************
*
* Method Name:  DestroyMessageEvent
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  This method shall destroy a manually resetable event object
*               used for informing the MsgQueue object of the arrival of a new
*               message.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void DestroyMessageEvent();

/*|><|************************************************************************
*
* Method Name:  CreateThreadEvents
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  This method shall create a manually resetable event object to
*               be used for informing the parent of thread state changes.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      bool CreateThreadEvents();

/*|><|************************************************************************
*
* Method Name:  DestroyThreadEvents
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  This method shall destroy a manually resetable event object
*               used for informing the parent of thread state changes.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void DestroyThreadEvents();

/*|><|************************************************************************
*
* Method Name:  CreateMessageThread
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  This is a private method which shall create an apartment style
*               processing thread for the purpose dispatching and processing
*               messages that have been posted to a client's message list.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      bool CreateMessageThread();

/*|><|************************************************************************
*
* Method Name:  InitMessageThread
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  This is a private method which shall initialize the message
*               thread.  Initialization shall involve the creation and setting
*               of a thread event used to signal the main thread of state
*               change.  Upon successful event creation, the init method shall
*               call the MessageLoop() which shall pend on and process incoming
*               messages.  A failed initialization shall result in thread
*               termination.
*
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      static unsigned int _stdcall InitMessageThread(void * vpArgument);


/*|><|************************************************************************
*
* Method Name:  TerminateMessaging
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      bool
*
* Description:  Terminates any further message processing activity
*               for this object.
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void TerminateMessaging(unsigned long dwMode);



/*|><|************************************************************************
*
* Method Name:  TerminateMessageThread
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  This is a private method which shall shall terminate the
*               message thread.  In so doing, it shall destroy both message and
*               thread events used to signal state change as well as remove all
*               messages which may remain on the message queue.
*
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void TerminateMessageThread();


#elif defined(_VXWORKS)

/**
 *
 * Method Name:  CreateMessageTask()
 *
 *
 * Inputs:      None
 *
 * Outputs:     None
 *
 * Returns:     bool
 *
 * Description:
 *
 * Usage Notes:
 *
 */
bool CMsgQueue::CreateMessageTask();


/*|><|************************************************************************
*
* Method Name:  InitMessageThread
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  This is a private method which shall initialize the message
*               thread.  Initialization shall involve the creation and setting
*               of a thread event used to signal the main thread of state
*               change.  Upon successful event creation, the init method shall
*               call the MessageLoop() which shall pend on and process
*               incoming messages.  A failed initialization shall result in
*               thread termination.
*
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      static int InitMessageThread(int argument1, int arg2, int arg3,
                   int arg4, int arg5, int arg6, int arg7, int arg8,
                   int arg9, int arg10);

#elif defined(__pingtel_on_posix__)
/* nothing needed? */
#else
#error Unsupported target platform.
#endif

/*|><|************************************************************************
*
* Method Name:  MessageLoop
*
*
* Inputs:       None
*
* Outputs:      None
*
* Returns:      None
*
* Description:  This is a private method which shall pend on incoming messages
*               delivered to the inheriting object.  Signals from either the
*               Message Event or Thread event shall cause the MessageLoop to
*               leave its wait state and begin processing.  If a message event
*               is detected, the MessageLoop shall iterate through each message
*               on the list and dispatch those messages to the client defined
*               ProcessMessage() method.  If a terminate event is detected, the
*               message processing loop shall be exited and the thread shall be
*               gracefully terminated.
*
*
* Usage Notes:
*
*
************************************************************************|<>|*/
      void MessageLoop();



  private:

#if defined(_WIN32)
/*|><|************************************************************************
*
* Attribute Name:   m_hMessageThread
*
* Type:             HANDLE
*
* Description:      The thread handle is used to store the handle generated
*                   in response to a successful thread creation request.
*
************************************************************************|<>|*/
      HANDLE m_hMessageThread;

/*|><|************************************************************************
*
* Attribute Name:   m_hMessageEvent
*
* Type:             HANDLE
*
* Description:      The message event is a manually resetable event which
*                   shall be used to signal the addition of a new message in
*                   the Message Queue.
*
************************************************************************|<>|*/
      HANDLE m_hMessageEvent;

/*|><|************************************************************************
*
* Attribute Name:   m_hThreadEvent
*
* Type:             HANDLE
*
* Description:      The thread event shall be used by used to signal thread
*               creation and shall trigger the onset of thread termination.
*
************************************************************************|<>|*/
      HANDLE m_hThreadEvent;

/*|><|************************************************************************
*
* Attribute Name:   m_hTerminateEvent
*
* Type:             HANDLE
*
* Description:  The terminate event shall be used to signal the  gracefully
*               termination of the apartment thread to the waiting destructor.
*
************************************************************************|<>|*/
      HANDLE m_hTerminateEvent;

#elif defined(_VXWORKS)

/*|><|************************************************************************
*
* Attribute Name:   m_ulMsgQID
*
* Type:             MSG_Q_ID
*
* Description:      The message queue handle used to identify the vxWorks FIFO
*                   on which events messages are pushed and popped.
*
************************************************************************|<>|*/
      MSG_Q_ID    m_ulMsgQID;

/*|><|************************************************************************
*
* Attribute Name:   m_iMsgTaskID
*
* Type:         int
*
* Description:      The task ID for the thread used to process messages that
*           are pending on the FIFO.
*
************************************************************************|<>|*/
      int        m_iMsgTaskID;

#elif defined(__pingtel_on_posix__)
      OsMsgQ * m_pMsgQ;
      static void * InitMessageThread(void * argument1);
#else
#error Unsupported target platform.
#endif

};

#endif