This file is indexed.

/usr/include/libpwiz/pwiz/utility/misc/DateTime.hpp is in libpwiz-dev 3.0.9393-1+b2.

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
//
// $Id: DateTime.hpp 2616 2011-04-07 22:26:33Z chambm $
//
//
// Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
//
// Copyright 2008 Vanderbilt University - Nashville, TN 37232
//
// Licensed under the Apache License, Version 2.0 (the "License"); 
// you may not use this file except in compliance with the License. 
// You may obtain a copy of the License at 
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software 
// distributed under the License is distributed on an "AS IS" BASIS, 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
// See the License for the specific language governing permissions and 
// limitations under the License.
//

#ifndef _DATETIME_HPP_
#define _DATETIME_HPP_

#include <boost/date_time/local_time/local_time.hpp>
#include <boost/math/special_functions/modf.hpp>

namespace bdt = boost::date_time;
namespace bpt = boost::posix_time;
namespace blt = boost::local_time;

using bpt::from_time_t;

#ifdef WIN32
using bpt::from_ftime;
#endif

using boost::gregorian::date;


namespace boost {
namespace date_time {

//! Create a time object from an OLE automation date value.
/*! Create a time object from an OLE automation date value.
 * An OLE automation date is implemented as a floating-point number *
 * whose value is the number of days from midnight, 30 December 1899.
 */
template<class time_type>
inline
time_type time_from_OADATE(double oa_date)
{
    typedef typename time_type::date_type date_type;
    typedef typename time_type::date_duration_type date_duration_type;
    typedef typename time_type::time_duration_type time_duration_type;
    using boost::math::modf;

    static const date_type base_date(1899, Dec, 30);
    static const time_type base_time(base_date, time_duration_type(0,0,0));

    int dayOffset, hourOffset, minuteOffset, secondOffset;
    double fraction = fabs(modf(oa_date, &dayOffset)) * 24; // fraction = hours
    fraction = modf(fraction, &hourOffset) * 60; // fraction = minutes
    fraction = modf(fraction, &minuteOffset) * 60; // fraction = seconds
    modf(fraction, &secondOffset);
    time_type t(base_time);
    t += time_duration_type(hourOffset, minuteOffset, secondOffset);
    t += date_duration_type(dayOffset);
    return t;
}

}
}


namespace pwiz {
namespace util {


/// formats a boost ptime according to a custom format string
inline std::string format_date_time(const std::string& format, const bpt::ptime& t)
{
    bpt::time_facet* output_facet = new bpt::time_facet;
    output_facet->format(format.c_str());
    std::ostringstream ss;
    ss.imbue(std::locale(std::locale::classic(), output_facet));
    return static_cast<std::ostringstream&>(ss << t).str();
}


/// formats a boost local_date_time according to a custom format string
inline std::string format_date_time(const std::string& format, const blt::local_date_time& t)
{
    blt::local_time_facet* output_facet = new blt::local_time_facet;
    output_facet->format(format.c_str());
    std::ostringstream ss;
    ss.imbue(std::locale(std::locale::classic(), output_facet));
    return static_cast<std::ostringstream&>(ss << t).str();
}


/// formats a boost time duration according to a custom format string
inline std::string format_date_time(const std::string& format, const bpt::time_duration& t)
{
    bpt::time_facet* output_facet = new bpt::time_facet;
    output_facet->format(format.c_str());
    std::ostringstream ss;
    ss.imbue(std::locale(std::locale::classic(), output_facet));
    return static_cast<std::ostringstream&>(ss << t).str();
}


/// converts a custom formatted datetime string to a boost local_date_time
inline blt::local_date_time parse_date_time(const std::string& format, const std::string& t)
{
    blt::local_time_input_facet* input_facet = new blt::local_time_input_facet;
    input_facet->format(format.c_str());
    std::istringstream ss(t);
    ss.imbue(std::locale(std::locale::classic(), input_facet));

    blt::local_date_time result(bdt::not_a_date_time);
    ss >> result;
    return result;
}


/// returns a string representation suitable for an xsd:datetime attribute;
/// input is assumed to be UTC time;
/// output string is UTC time (as denoted by the 'Z' suffix)
inline std::string encode_xml_datetime(const bpt::ptime& t)
{
    // 2007-06-27T15:23:45Z
    return format_date_time("%Y-%m-%dT%H:%M:%SZ", t);
}


/// returns a string representation suitable for an xsd:datetime attribute;
/// time zone is assumed to be correct;
/// output string is UTC time (as denoted by the 'Z' suffix)
inline std::string encode_xml_datetime(const blt::local_date_time& t)
{
    // 2007-06-27T15:23:45Z
    return encode_xml_datetime(t.utc_time());
}


/// converts an xsd:datetime attribute to a local_date_time
inline blt::local_date_time decode_xml_datetime(const std::string& t)
{
    blt::local_time_input_facet* input_facet = new blt::local_time_input_facet;
    input_facet->format("%Y-%m-%dT%H:%M:%SZ");
    std::stringstream ss(t);
    ss.imbue(std::locale(std::locale::classic(), input_facet));
    blt::local_date_time result(bdt::not_a_date_time);
    ss >> result;
    return blt::local_date_time(result.utc_time(), blt::time_zone_ptr());
}


} // namespace util
} // namespace pwiz


#endif // _DATETIME_HPP_