This file is indexed.

/usr/include/barry18/barry/tzwrapper.h is in libbarry-dev 0.18.5-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
///
/// \file	tzwrapper.h
///		Timezone adjustment class, wrapping the TZ environment
///		variable to make struct tm -> time_t conversions easier.
///

/*
    Copyright (C) 2010-2013, Chris Frey <cdfrey@foursquare.net>, To God be the glory
    Released to the public domain.
    Included in Barry and Barrified the namespace July 2010
*/

#ifndef __TZWRAPPER_H__
#define __TZWRAPPER_H__

#include "dll.h"
#include <string>
#include <time.h>
#include <stdlib.h>

namespace Barry { namespace Sync {

/// Parses ISO timestamp in the format of YYYYMMDDTHHMMSS[Z]
/// or YYYY-MM-DDTHH:MM:SS.uuu-HH:MM
/// and places broken down time in result.
/// The trailing Z is optional in the format.
/// If the Z exists, utc will be set to true, otherwise false.
/// If zoneminutes is not null, and if a timezone offset is
/// specified, it will be filled in and *zone set to true.
/// Otherwise, *zone will be set to false.
/// Returns NULL on error.
/// Thread-safe.
BXEXPORT struct tm* iso_to_tm(const char *timestamp,
				struct tm *result,
				bool &utc,
				bool *zone = 0,
				int *zoneminutes = 0);

/// Turns the struct tm into an ISO timestamp in the format
/// of YYYYMMDDTHHMMSS[Z].  The Z is appended if utc is true.
/// This function assumes that t contains sane values, and will
/// create the target string directly from its content.
/// Returns the ISO timestamp, or empty string on error.
/// If t contains sane values, this function should never fail.
/// Thread-safe.
BXEXPORT std::string tm_to_iso(const struct tm *t, bool utc);

/// utc_mktime() converts a struct tm that contains
/// broken down time in utc to a time_t.  This function uses
/// a brute-force method of conversion that does not require
/// the environment variable TZ to be changed at all, and is
/// therefore slightly more thread-safe in that regard.
///
/// The difference between mktime() and utc_mktime() is that
/// standard mktime() expects the struct tm to be in localtime,
/// according to the current TZ and system setting, while utc_mktime()
/// always assumes that the struct tm is in UTC, and converts it
/// to time_t regardless of what TZ is currently set.
///
/// The difference between utc_mktime() and TzWrapper::iso_mktime()
/// is that iso_mktime() will parse straight from an ISO string,
/// and if the ISO timestamp ends in a 'Z', it will behave like
/// utc_mktime() except it will alter the TZ environment variable
/// to do it.  If the ISO timestamp has no 'Z', then iso_mktime()
/// behaves like mktime().
///
BXEXPORT time_t utc_mktime(struct tm *utctime);

//
// class TzWrapper
//
/// Wrapper class for the TZ environment variable.  This class allows
/// setting TZ to any number of variables, and will restore the original
/// setting on destruction.
///
/// By default, TzWrapper does not change the environment at all, but
/// only saves it.  Alternately, you can use the timezone constructor
/// to save and set a new timezone on the fly.
///
/// Each Set() and Unset() function returns a reference to TzWrapper,
/// so that you can chain function calls like this:
///
///	time_t utc = TzWrapper("Canada/Pacific").mktime(&pacific_tm);
///
/// In addition, there are two static utility functions used to
/// convert ISO timestamps to struct tm* and time_t values.
///
/// Note: This class is not thread-safe, since it modifies the TZ
///       environment variable without locking.  If other threads
///       use time functions, this may interfere with their behaviour.
///
class BXEXPORT TzWrapper
{
	std::string m_orig_tz;
	bool m_tz_exists;
	bool m_dirty;

protected:
	void SaveTz()
	{
		char *ptz = getenv("TZ");
		if( ptz )
			m_orig_tz = ptz;
		m_tz_exists = ptz;
	}

	void RestoreTz()
	{
		if( m_dirty ) {
			if( m_tz_exists )
				Set(m_orig_tz.c_str());
			else
				Unset();

			m_dirty = false;
		}
	}

public:
	/// Does not change TZ, only saves current setting
	TzWrapper()
		: m_dirty(false)
	{
		SaveTz();
	}

	/// Saves current setting and sets TZ to new timezone value.
	/// If timezone is null, it is the same as calling Unset().
	explicit TzWrapper(const char *timezone)
		: m_dirty(false)
	{
		SaveTz();
		Set(timezone);
	}

	~TzWrapper()
	{
		RestoreTz();
	}

	/// Set TZ to a new value.  If timezone is null, it is the
	/// same as calling Unset().
	///
	/// If timezone is an empty or invalid timezone string, it
	/// is the same as calling SetUTC().
	TzWrapper& Set(const char *timezone)
	{
		if( timezone )
			setenv("TZ", timezone, 1);
		else
			unsetenv("TZ");
		tzset();
		m_dirty = true;
		return *this;
	}

	/// Deletes TZ from the environment, which has the same effect
	/// as calling SetSysLocal().  This is not a permanent
	/// condition, since TZ will be restored to original state
	/// upon destruction.
	TzWrapper& Unset()
	{
		unsetenv("TZ");
		tzset();
		m_dirty = true;
		return *this;
	}

	/// Set timezone to UTC
	TzWrapper& SetUTC()
	{
		return Set("");
	}

	/// Set timezone via offset in minutes
	/// Negative minutes goes west, positive goes east
	/// i.e. -05:00 is EST
	TzWrapper& SetOffset(int zoneminutes);

	/// Use system localtime.  This overrides any TZ value that the
	/// user may have set before running your program.
	TzWrapper& SetSysLocal()
	{
		return Unset();
	}

	/// Use the default TZ value that the user set before running
	/// this program.  In most cases, this will be the user's
	/// preferred local timezone.
	TzWrapper& SetDefault()
	{
		RestoreTz();
		return *this;
	}
	/// Same as SetDefault()
	TzWrapper& SetOrig()
	{
		return SetDefault();
	}

	//
	// C library wrappers, for calls like:
	//	time_t t = TzWrapper("Canada/Pacific").mktime(tm);
	//
	char* asctime(const struct tm *t) const { return ::asctime(t); }
	char* asctime_r(const struct tm *t, char *buf) const
		{ return ::asctime_r(t, buf); }
	char* ctime(const time_t *t) const { return ::ctime(t); }
	char* ctime_r(const time_t *t, char *buf) const
		{ return ::ctime_r(t, buf); }
	struct tm* gmtime(const time_t *t) const { return ::gmtime(t); }
	struct tm* gmtime_r(const time_t *t, struct tm *result) const
		{ return ::gmtime_r(t, result); }
	struct tm* localtime(const time_t *t) const { return ::localtime(t); }
	struct tm* localtime_r(const time_t *t, struct tm *result) const
		{ return ::localtime_r(t, result); }
	time_t mktime(struct tm *t) { return ::mktime(t); }

	//
	// Additional utility functions
	//

	/// Converts an ISO timestamp (YYYYMMDDTHHMMWW[Z]) into a
	/// unix time_t.  If the 'Z' UTC flag is not specified, then
	/// the timestamp will be assumed to be in the current
	/// default timezone.  Otherwise, SetUTC() will be used for the
	/// conversion.
	///
	/// This function uses an internal TzWrapper to adjust TZ
	/// if necessary, which is why it is a static function
	/// of TzWrapper, instead of a standalone function.
	///
	static time_t iso_mktime(const char *timestamp);
};

}} // namespace Barry::Sync

#endif