This file is indexed.

/usr/include/IGSTK/igstkPulseGenerator.h is in libigstk4-dev 4.4.0-2build2.

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
/*=========================================================================

  Program:   Image Guided Surgery Software Toolkit
  Module:    $RCSfile: igstkPulseGenerator.h,v $
  Language:  C++
  Date:      $Date: 2008-02-11 01:41:51 $
  Version:   $Revision: 1.21 $

  Copyright (c) ISC  Insight Software Consortium.  All rights reserved.
  See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/

#ifndef __igstkPulseGenerator_h
#define __igstkPulseGenerator_h


#include "igstkObject.h"
#include "igstkMacros.h"
#include "igstkStateMachine.h"


namespace igstk
{
/** \class PulseGenerator
 *
 *  \brief This class produces ClockTickEvents at a user-defined frequency.
 *
 *  The PulseGenerator is used for generating ClockTickEvents at regular
 *  intervals. The pulses are used by classes that need to perform tasks at
 *  user-defined frequencies. For example the View classes use the
 *  PulseGenerator in order to refresh a predefined frame rate. The precision
 *  of the time interval between the pulses is limited by the underlying time
 *  functions of the platform. In most cases you should not expect precision
 *  below the millisecond range. 
 *
 *
 *  \image html  igstkPulseGenerator.png  
 *                                      "PulseGenerator State Machine Diagram"
 *  \image latex igstkPulseGenerator.eps  
 *                                      "PulseGenerator State Machine Diagram" 
 *
 */

class PulseGenerator  : public Object
{
 
public: 

  /** Macro with standard traits declarations. */
  igstkStandardClassTraitsMacro( PulseGenerator, Object )

public:

  /** Frequency at which the pulses will be generated. This frequency cannot be
   * guarranted. Users should verify experimentally whether the pulse generator
   * can actually behave at that frequency at run time. */
  void RequestSetFrequency( double frequency );

  /** Request to start the generation of pulses at the defined frequency. This
   * is only a request. It may or may not be honored depending on the current
   * state of the StateMachine.  */
  void RequestStart();

  /** Request to stop generating pulses. This is only a request. It may or may
   * not be honored depending on the current state of the StateMachine. */
  void RequestStop();

  /** Return the value set for the frequency of this pulse generator */
  igstkGetMacro( Frequency, double );
      
  /** Method to be called from the main event loop in order to keep the timers
   * counting */
  static void CheckTimeouts();

  /** Sleep for a number of milliseconds */
  static void Sleep( unsigned int milliseconds );

protected:

  /** Constructor is protected in order to enforce 
   *  the use of the New() operator */
  PulseGenerator(void);

  virtual ~PulseGenerator(void);

  /** Print the object information. */
  virtual void PrintSelf( std::ostream& os, itk::Indent indent ) const;

private:

  /** Frequency at which the pulses will be generated. This frequency cannot be
   * guarranted. Users should verify experimentally whether the pulse generator
   * can actually behave at that frequency at run time. */
  double          m_Frequency;
  double          m_FrequencyToBeSet;
  double          m_Period; // helper varable = 1 / frequency

  /** Inputs to the State Machine */
  igstkDeclareInputMacro( ValidFrequency );
  igstkDeclareInputMacro( InvalidLowFrequency );
  igstkDeclareInputMacro( InvalidHighFrequency );
  igstkDeclareInputMacro( Stop );
  igstkDeclareInputMacro( Start );
  igstkDeclareInputMacro( Pulse );
  igstkDeclareInputMacro( EventReturn );

  /** States for the State Machine */
  igstkDeclareStateMacro( Initial );
  igstkDeclareStateMacro( Stopped );
  igstkDeclareStateMacro( Pulsing );
  igstkDeclareStateMacro( WaitingEventReturn );

  /** Methods to be called only by the State Machine */
  void SetFrequencyProcessing();
  
  /** Report an error condition. For example unexpected inputs */
  void ReportErrorConditionProcessing();

  /** Report a missed pulse. This happens when the frequency of the pulse
   * generator is too high for the time required by the Observers to complete
   * their Execute method.  */
  void ReportMissedPulseProcessing();

  /** Value of the frequency above which it is known that the pulses will not
   * be generated correctly */
  static double   m_MaximumFrequency;

  /** Global callback function for the timer */
  static void CallbackTimerGlobal( void * );

  /** Callback function for the timer */
  void CallbackTimer();

  /** Program the timer for triggering a callback. At m_Period seconds from
   * now. */
  void SetTimerProcessing();

  /** Send a pulse. This method will notify observers. */
  void EmitPulseProcessing();

  /** Stop the generation of pulses by purging the timer. */
  void StopPulsesProcessing();

  /** Null operation for a State Machine transition */
  void NoProcessing();


private:

  /** Types and methods needed for supporting timers */

  struct Timeout 
    {
    double time;
    void (*cb)(void*);
    void* arg;
    Timeout* next;
    };

  typedef void (*TimeoutHandler)(void*);

  static void AddTimeout(double time, TimeoutHandler cb, void* data);

  static void RepeatTimeout(double time, TimeoutHandler cb, void *argp);

  static void RemoveTimeout( TimeoutHandler cb, void *argp);

  static void ElapseTimeouts();

  static void InvokeTimeoutActions();


  static double       m_PreviousClock;

  static Timeout *    m_FirstTimeout;

  static Timeout *    m_FreeTimeout;

  static unsigned int m_FreeTimeoutCount;

  static unsigned int m_NumberOfPulseGenerators;

  mutable itk::SimpleFastMutexLock m_NumberOfPulseGeneratorsLock;

  static char         m_ResetClock;
  
  static double       m_MissedTimeoutBy;

};

} // end of namespace igstk

#endif //__igstk_PulseGenerator_h_