This file is indexed.

/usr/include/quickfix/TimeRange.h is in libquickfix-dev 1.14.4+dfsg-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
/* -*- C++ -*- */

/****************************************************************************
** Copyright (c) 2001-2014
**
** This file is part of the QuickFIX FIX Engine
**
** This file may be distributed under the terms of the quickfixengine.org
** license as defined by quickfixengine.org and appearing in the file
** LICENSE included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.quickfixengine.org/LICENSE for licensing information.
**
** Contact ask@quickfixengine.org if any conditions of this licensing are
** not clear to you.
**
****************************************************************************/

#ifndef FIX_TIMERANGE_H
#define FIX_TIMERANGE_H

#ifdef _MSC_VER
#pragma warning( disable : 4503 4355 4786 4290 )
#endif

#include "FieldTypes.h"

namespace FIX
{
/// Keeps track of when session is active
class TimeRange
{
public:
  TimeRange( const UtcTimeOnly& startTime, const UtcTimeOnly& endTime,
               int startDay = -1, int endDay = -1 );

  TimeRange( const LocalTimeOnly& startTime, const LocalTimeOnly& endTime,
               int startDay = -1, int endDay = -1 );

  static bool isInRange( const UtcTimeOnly& start,
                         const UtcTimeOnly& end,
                         const DateTime& time )
  {
    return isInRange
      ( (DateTime)start, (DateTime)end, (DateTime)time );
  }

  static bool isInRange( const UtcTimeOnly& startTime,
                         const UtcTimeOnly& endTime,
                         int startDay,
                         int endDay,
                         const DateTime& time,
                         int day )
  {
    return isInRange
      ( (DateTime)startTime, (DateTime)endTime, 
        startDay, endDay, 
        (DateTime)time, day );
  }

  static bool isInRange( const UtcTimeOnly& startTime,
                         const UtcTimeOnly& endTime,
                         int startDay,
                         int endDay,
                         const DateTime& time )
  {
    return isInRange
      ( (DateTime)startTime, (DateTime)endTime, 
        startDay, endDay, 
        (DateTime)time );
  }

  static bool isInSameRange( const UtcTimeOnly& start,
                             const UtcTimeOnly& end,
                             const DateTime& time1,
                             const DateTime& time2 )
  {
    return isInSameRange
      ( (DateTime)start, (DateTime)end, 
        (DateTime)time1, (DateTime)time2 );
  }

  static bool isInSameRange( const UtcTimeOnly& startTime,
                             const UtcTimeOnly& endTime,
                             int startDay,
                             int endDay,
                             const DateTime& time1,
                             const DateTime& time2 )
  {
    return isInSameRange
      ( (DateTime)startTime, (DateTime)endTime, 
        startDay, endDay, 
        (DateTime)time1, (DateTime)time2 );
  }

  static bool isInRange( const LocalTimeOnly& start,
                         const LocalTimeOnly& end,
                         const DateTime& time )
  {
    return isInRange
      ( (DateTime)start, (DateTime)end, (DateTime)time );
  }

  static bool isInRange( const LocalTimeOnly& startTime,
                         const LocalTimeOnly& endTime,
                         int startDay,
                         int endDay,
                         const DateTime& time,
                         int day )
  {
    return isInRange
      ( (DateTime)startTime, (DateTime)endTime, 
        startDay, endDay, 
        (DateTime)time, day );
  }

  static bool isInRange( const LocalTimeOnly& startTime,
                         const LocalTimeOnly& endTime,
                         int startDay,
                         int endDay,
                         const DateTime& time )
  {
    return isInRange
      ( (DateTime)startTime, (DateTime)endTime, 
        startDay, endDay, 
        (DateTime)time );
  }

  static bool isInSameRange( const LocalTimeOnly& start,
                             const LocalTimeOnly& end,
                             const DateTime& time1,
                             const DateTime& time2 )
  {
    return isInSameRange
      ( (DateTime)start, (DateTime)end, 
        (DateTime)time1, (DateTime)time2 );
  }

  static bool isInSameRange( const LocalTimeOnly& startTime,
                             const LocalTimeOnly& endTime,
                             int startDay,
                             int endDay,
                             const DateTime& time1,
                             const DateTime& time2 )
  {
    return isInSameRange
      ( (DateTime)startTime, (DateTime)endTime, 
        startDay, endDay, 
        (DateTime)time1, (DateTime)time2 );
  }

private:
  static bool isInRange( const DateTime& start,
                         const DateTime& end,
                         const DateTime& time );

  static bool isInRange( const DateTime& startTime,
                         const DateTime& endTime,
                         int startDay,
                         int endDay,
                         const DateTime& time,
                         int day );

  static bool isInRange( const DateTime& startTime,
                         const DateTime& endTime,
                         int startDay,
                         int endDay,
                         const DateTime& time );

  static bool isInSameRange( const DateTime& start,
                             const DateTime& end,
                             const DateTime& time1,
                             const DateTime& time2 );

  static bool isInSameRange( const DateTime& startTime,
                             const DateTime& endTime,
                             int startDay,
                             int endDay,
                             const DateTime& time1,
                             const DateTime& time2 );
public:  
  bool isInRange( const DateTime& dateTime, int day )
  {
    if( m_startDay < 0 && m_endDay < 0 )
      return isInRange( m_startTime, m_endTime, dateTime );
    else
      return isInRange
        ( m_startTime, m_endTime, m_startDay, m_endDay, dateTime, day );
  }

  bool isInRange( const UtcTimeStamp& dateTime )
  {
    if( m_useLocalTime )
    {
      LocalTimeStamp localDateTime( dateTime.getTimeT() );
      return isInRange( localDateTime, localDateTime.getWeekDay() );
    }

    return isInRange( dateTime, dateTime.getWeekDay() );
  }

  bool isInRange( const LocalTimeStamp& dateTime )
  {
    if( !m_useLocalTime )
    {
      LocalTimeStamp utcDateTime( dateTime.getTimeT() );
      return isInRange( utcDateTime, utcDateTime.getWeekDay() );
    }

    return isInRange( dateTime, dateTime.getWeekDay() );
  }

  bool isInSameRange( const UtcTimeStamp& time1, const UtcTimeStamp& time2 )
  {
    if( m_useLocalTime )
    {
      LocalTimeStamp localTime1( time1.getTimeT() );
      LocalTimeStamp localTime2( time2.getTimeT() );
      return isInSameRange( (DateTime)localTime1, (DateTime)localTime2 );
    }

    return isInSameRange( (DateTime)time1, (DateTime)time2 );
  }

  bool isInSameRange( const LocalTimeStamp& time1, const LocalTimeStamp& time2 )
  {
    if( !m_useLocalTime )
    {
      UtcTimeStamp utcTime1( time1.getTimeT() );
      UtcTimeStamp utcTime2( time2.getTimeT() );
      return isInSameRange( (DateTime)utcTime1, (DateTime)utcTime2 );
    }

    return isInSameRange( (DateTime)time1, (DateTime)time2 );
  }

private:
  bool isInSameRange( const DateTime& time1, const DateTime& time2 )
  {
    if( m_startDay < 0 && m_endDay < 0 )
      return isInSameRange( m_startTime, m_endTime, time1, time2 );
    else
      return isInSameRange
        ( m_startTime, m_endTime, m_startDay, m_endDay, time1, time2 );
  }

  UtcTimeOnly m_startTime;
  UtcTimeOnly m_endTime;
  int m_startDay;
  int m_endDay;
  bool m_useLocalTime;
};
}

#endif