This file is indexed.

/usr/include/magics/DateTime.h is in libmagics++-dev 2.30.0-5.

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
/*
 * (C) Copyright 1996-2016 ECMWF.
 * 
 * This software is licensed under the terms of the Apache Licence Version 2.0
 * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. 
 * In applying this licence, ECMWF does not waive the privileges and immunities 
 * granted to it by virtue of its status as an intergovernmental organisation nor
 * does it submit to any jurisdiction.
 */

// Baudouin Raoult - ECMWF Sep 96

#ifndef DateTime_H
#define DateTime_H

#include "magics.h"

#include <time.h>


namespace magics {
typedef long Second;

class MagDate {
public:

// -- Contructors

	MagDate() : julian_(0) { }
	MagDate(long);
	MagDate(long,long,long);
	MagDate(const string&);
	MagDate(long,long);

    

	MagDate(const MagDate& other):
		julian_(other.julian_) {}

	MagDate& operator=(const MagDate& other)
		{ julian_ = other.julian_; return *this; }

// -- Destructor

	~MagDate() {}

// -- Convertors
	
	operator string() const;
    operator tm() const;

// -- Operators

	bool operator==(const MagDate& other) const
		{ return julian_ == other.julian_ ;}

	bool operator!=(const MagDate& other) const
		{ return julian_ != other.julian_ ;}

	bool operator<(const MagDate& other)  const
		{ return julian_ <  other.julian_ ;}

	bool operator>(const MagDate& other)  const
		{ return julian_ >  other.julian_ ;}

	bool operator<=(const MagDate& other)  const
		{ return julian_ <=  other.julian_ ;}

	bool operator>=(const MagDate& other)  const
		{ return julian_ >=  other.julian_ ;}


	MagDate& operator++() { julian_++; return *this; }
	MagDate& operator--() { julian_--; return *this; }

	MagDate& operator+=(long d) { julian_ += d; return *this; }
	MagDate& operator-=(long d) { julian_ -= d; return *this; }

// -- Methods

	long year() const;
	long month() const;
	long day() const;
	long yyyymmdd() const;

	long julian() const { return julian_;                  }
	MagDate round(int n)   { return MagDate((julian_/n)*n,true); }
	string monthName(long n);
    

// -- Class methods

	static long         parse(const string&);

// -- Friends

	friend ostream& operator<< (ostream& s, const MagDate& date)
		{ date.print(s); return s; }

protected:

	MagDate(long julian,bool) : julian_(julian) {}

// -- Members
	// None

// -- Methods
	// None

// -- Overridden methods
	// None

// -- Class members
	// None

// -- Class methods
	// None

private:

// -- Members
	
	long julian_;

// -- Methods

	void print(ostream&) const;

// -- Class methods

	static long julianToMagDate(long);
	static long dateToJulian(long);
	static long today();

// -- Friends

	friend long operator-(const MagDate& d1, const MagDate& d2)
		{ return (d1.julian_ - d2.julian_); }

//	friend long operator-(const MagDate& d1)
//		{ NOTIMP; return 0; }

	friend MagDate operator+(const MagDate& d1, const long n)
		{ return MagDate::julianToMagDate(d1.julian_ + n); }

	friend MagDate operator+(const long n, const MagDate& d1)
		{ return d1+n; }

	friend MagDate operator+(const MagDate& d1, const MagDate& d2)
		{ return MagDate::julianToMagDate(d1.julian_ + d2.julian_); }


	friend class DateTime;
};


class MagTime {

public:

// -- MagExceptions
	// None

// -- Contructors

	MagTime(long, long, long);
	MagTime(long seconds = 0);
	MagTime(const string&);


// -- Copy

	MagTime(const MagTime&);
	MagTime& operator=(const MagTime&);

// -- Destructor

	~MagTime();

// -- Convertors

	operator string() const;
	operator Second() const { return seconds_; }

// -- Operators

	bool operator==(const MagTime& other) const
		{ return seconds_ == other.seconds_; }

	bool operator!=(const MagTime& other) const
		{ return (seconds_ != other.seconds_); }

	bool operator>(const MagTime& other) const
		{ return (seconds_ > other.seconds_); }

	bool operator<(const MagTime& other) const
		{ return (seconds_ < other.seconds_); }

	bool operator>=(const MagTime& other) const
		{ return (seconds_ >= other.seconds_); }

	bool operator<=(const MagTime& other) const
		{ return (seconds_ <= other.seconds_); }

	Second operator-(const MagTime& other) const
		{ return seconds_ - other.seconds_; }

//	MagTime operator+(const MagTime& other) const
//		{ return seconds_ + other.seconds_; }

	MagTime& operator+=(const Second& sec)
		{ seconds_ += sec; return *this; }	

	MagTime& operator-=(const Second& sec)
		{ seconds_ -= sec; return *this; }	

// -- Methods
	long hours() const;
	long minutes() const;
	long seconds() const;
	long hhmmss() const;


// -- Class Methods

	static MagTime now();

protected:

// -- Methods

	void print(ostream&) const;

private:

// -- Members

	Second seconds_;

	friend ostream& operator<<(ostream& s,const MagTime& t)
		{ t.print(s); return s; }

};



class XmlNode;

class DateTime {
public:

// -- Contructors

	DateTime(time_t = ::time(0));
	DateTime(const MagDate&, const MagTime&);
	DateTime(const string&);
	string tostring(const string&) const;
	
	DateTime* clone() const { return new DateTime(date(), time()); }
	void set(const XmlNode&) { }
	void set(const map<string, string>&) { }
	 virtual void toxml(ostream&) const {
   		
    }   


// -- Destructor

	virtual ~DateTime() {}

// -- Operators

	bool operator<(const DateTime& other) const
		{ return (date_ == other.date_)
			?(time_ < other.time_)
			:(date_ < other.date_); }

	bool operator==(const DateTime& other) const
		{ return (date_ == other.date_) && (time_ == other.time_); }

	bool operator!=(const DateTime& other) const
		{ return (date_ != other.date_) || (time_ != other.time_); }

	bool operator>(const DateTime& other) const
		{ return (date_ == other.date_)
			?(time_ > other.time_)
			:(date_ > other.date_); }

	bool operator>=(const DateTime& other) const
		{ return !(*this < other); }

	bool operator<=(const DateTime& other) const
		{ return !(*this > other); }

	DateTime& operator=(const DateTime&);

	Second operator-(const DateTime&) const;
	DateTime operator+(const Second&) const;

	operator string() const;
    operator tm() const;
    
    operator double() const;

// -- Methods

	const MagDate& date() const { return date_; }
	const MagTime& time() const { return time_; }

	DateTime round(const Second& seconds) const;



protected:

// -- Members

	MagDate date_;
	MagTime time_;

// -- Methods
	// None

// -- Overridden methods
	// None

// -- Class members
	// None

// -- Class methods
	// None

private:

// -- Members
	// None

// -- Methods

	void print(ostream&) const;

// -- Class methods

// -- Friends

	friend ostream& operator<<(ostream& s,const DateTime& p)
		{ p.print(s); return s; }
};

}
#endif