Coverage Report

Created: 2025-07-01 06:08

/src/logging-log4cxx/src/main/cpp/timezone.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 * contributor license agreements.  See the NOTICE file distributed with
4
 * this work for additional information regarding copyright ownership.
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 * (the "License"); you may not use this file except in compliance with
7
 * the License.  You may obtain a copy of the License at
8
 *
9
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
18
#define __STDC_CONSTANT_MACROS
19
#include <log4cxx/logstring.h>
20
#include <log4cxx/helpers/timezone.h>
21
#include <stdlib.h>
22
23
#include <apr_time.h>
24
#include <apr_pools.h>
25
#include <apr_strings.h>
26
#include <log4cxx/helpers/exception.h>
27
#include <log4cxx/helpers/transcoder.h>
28
#include <log4cxx/helpers/stringhelper.h>
29
#include <log4cxx/helpers/pool.h>
30
#include <log4cxx/logger.h>
31
32
using namespace LOG4CXX_NS;
33
using namespace LOG4CXX_NS::helpers;
34
35
IMPLEMENT_LOG4CXX_OBJECT( TimeZone )
36
37
namespace LOG4CXX_NS
38
{
39
namespace helpers
40
{
41
namespace TimeZoneImpl
42
{
43
/** Time zone object that represents GMT. */
44
class GMTTimeZone : public TimeZone
45
{
46
  public:
47
    /** Class factory. */
48
    static const TimeZonePtr& getInstance()
49
936
    {
50
936
      static WideLife<TimeZonePtr> tz = std::make_shared<GMTTimeZone>();
51
936
      return tz;
52
936
    }
53
54
    /** Explode time to human readable form. */
55
    log4cxx_status_t explode( apr_time_exp_t* result, log4cxx_time_t input ) const
56
2.46k
    {
57
2.46k
      apr_status_t stat;
58
59
      //  APR 1.1 and early mishandles microseconds on dates
60
      //   before 1970, APR bug 32520
61
2.46k
      if (LOG4CXX_UNLIKELY(input < 0 && apr_time_usec(input) < 0))
62
0
      {
63
0
        apr_time_t floorTime = (apr_time_sec(input) - 1) * APR_USEC_PER_SEC;
64
0
        stat = apr_time_exp_gmt(result, floorTime);
65
0
        result->tm_usec = (int) (input - floorTime);
66
0
      }
67
2.46k
      else
68
2.46k
      {
69
2.46k
        stat = apr_time_exp_gmt( result, input );
70
2.46k
      }
71
72
2.46k
      return stat;
73
2.46k
    }
74
75
1
    GMTTimeZone() : TimeZone( LOG4CXX_STR("GMT") )
76
1
    {
77
1
    }
78
};
79
80
81
82
/** Time zone object that represents GMT. */
83
class LocalTimeZone : public TimeZone
84
{
85
  public:
86
    /** Class factory. */
87
    static const TimeZonePtr& getInstance()
88
2.45k
    {
89
2.45k
      static WideLife<TimeZonePtr> tz = std::make_shared<LocalTimeZone>();
90
2.45k
      return tz;
91
2.45k
    }
92
93
    /** Explode time to human readable form. */
94
    log4cxx_status_t explode( apr_time_exp_t* result, log4cxx_time_t input ) const
95
892
    {
96
892
      apr_status_t stat;
97
98
      //  APR 1.1 and early mishandles microseconds on dates
99
      //   before 1970, APR bug 32520
100
892
      if (LOG4CXX_UNLIKELY(input < 0 && apr_time_usec(input) < 0))
101
0
      {
102
0
        apr_time_t floorTime = (apr_time_sec(input) - 1) * APR_USEC_PER_SEC;
103
0
        stat = apr_time_exp_lt(result, floorTime);
104
0
        result->tm_usec = (int) (input - floorTime);
105
0
      }
106
892
      else
107
892
      {
108
892
        stat = apr_time_exp_lt( result, input );
109
892
      }
110
111
892
      return stat;
112
892
    }
113
114
115
1
    LocalTimeZone() : TimeZone( getTimeZoneName() )
116
1
    {
117
1
    }
118
119
  private:
120
    static const LogString getTimeZoneName()
121
1
    {
122
1
      const int MAX_TZ_LENGTH = 255;
123
1
      char tzName[MAX_TZ_LENGTH];
124
1
      apr_size_t tzLength;
125
1
      apr_time_exp_t tm;
126
1
      apr_time_exp_lt(&tm, 0);
127
1
      apr_strftime(tzName, &tzLength, MAX_TZ_LENGTH, "%Z", &tm);
128
129
1
      if (tzLength == 0)
130
0
      {
131
0
        apr_strftime(tzName, &tzLength, MAX_TZ_LENGTH, "%z", &tm);
132
0
      }
133
134
1
      tzName[tzLength] = 0;
135
1
      LogString retval;
136
1
      LOG4CXX_NS::helpers::Transcoder::decode(tzName, retval);
137
1
      return retval;
138
1
    }
139
140
};
141
142
143
144
/** Time zone object that represents a fixed offset from GMT. */
145
class FixedTimeZone : public TimeZone
146
{
147
  public:
148
257
    FixedTimeZone( const LogString& name, apr_int32_t offset1 ) : TimeZone( name ), offset( offset1 )
149
257
    {
150
257
    }
151
152
    /** Explode time to human readable form. */
153
    log4cxx_status_t explode( apr_time_exp_t* result, log4cxx_time_t input ) const
154
708
    {
155
708
      apr_status_t stat;
156
157
      //  APR 1.1 and early mishandles microseconds on dates
158
      //   before 1970, APR bug 32520
159
708
      if (LOG4CXX_UNLIKELY(input < 0 && apr_time_usec(input) < 0))
160
0
      {
161
0
        apr_time_t floorTime = (apr_time_sec(input) - 1) * APR_USEC_PER_SEC;
162
0
        stat = apr_time_exp_tz(result, floorTime, offset);
163
0
        result->tm_usec = (int) (input - floorTime);
164
0
      }
165
708
      else
166
708
      {
167
708
        stat = apr_time_exp_tz( result, input, offset );
168
708
      }
169
170
708
      return stat;
171
708
    }
172
173
174
  private:
175
    const apr_int32_t offset;
176
};
177
178
}
179
}
180
}
181
182
183
184
259
TimeZone::TimeZone( const LogString& id1 ) : id( id1 )
185
259
{
186
259
}
187
188
TimeZone::~TimeZone()
189
259
{
190
259
}
191
192
const TimeZonePtr& TimeZone::getDefault()
193
2.45k
{
194
2.45k
  return LOG4CXX_NS::helpers::TimeZoneImpl::LocalTimeZone::getInstance();
195
2.45k
}
196
197
const TimeZonePtr& TimeZone::getGMT()
198
935
{
199
935
  return LOG4CXX_NS::helpers::TimeZoneImpl::GMTTimeZone::getInstance();
200
935
}
201
202
const TimeZonePtr TimeZone::getTimeZone( const LogString& id )
203
1.49k
{
204
1.49k
  const logchar gmt[] = { 0x47, 0x4D, 0x54, 0 };
205
206
1.49k
  if ( id == gmt )
207
1
  {
208
1
    return LOG4CXX_NS::helpers::TimeZoneImpl::GMTTimeZone::getInstance();
209
1
  }
210
211
1.49k
  if ( id.length() >= 5 && id.substr( 0, 3 ) == gmt )
212
540
  {
213
540
    int hours = 0;
214
540
    int minutes = 0;
215
540
    int sign = 1;
216
217
540
    if (id[3] == 0x2D /* '-' */)
218
82
    {
219
82
      sign = -1;
220
82
    }
221
222
540
    LogString off( id.substr( 4 ) );
223
224
540
    if ( id.length() >= 7 )
225
308
    {
226
308
      size_t colonPos = off.find( 0x3A /* ':' */);
227
228
308
      if ( colonPos == LogString::npos )
229
159
      {
230
159
        minutes = StringHelper::toInt(off.substr(off.length() - 2));
231
159
        hours = StringHelper::toInt(off.substr(0, off.length() - 2));
232
159
      }
233
149
      else
234
149
      {
235
149
        minutes = StringHelper::toInt(off.substr(colonPos + 1));
236
149
        hours = StringHelper::toInt(off.substr(0, colonPos));
237
149
      }
238
308
    }
239
232
    else
240
232
    {
241
232
      hours = StringHelper::toInt(off);
242
232
    }
243
244
    // Make sure that our offset can't be crazy
245
540
    if( hours < -12 || 14 < hours)
246
96
    {
247
96
      throw RuntimeException(LOG4CXX_STR("Hour offset must be in (-12..14)"));
248
96
    }
249
444
    if (minutes < 0 || 60 < minutes)
250
81
    {
251
81
      throw RuntimeException(LOG4CXX_STR("Minute offset must be in (0..60)"));
252
81
    }
253
254
363
    LogString s(gmt);
255
363
    Pool p;
256
363
    LogString hh;
257
363
    StringHelper::toString(hours, p, hh);
258
259
363
    if (sign > 0)
260
204
    {
261
204
      s.append(1, (logchar) 0x2B /* '+' */);
262
204
    }
263
159
    else
264
159
    {
265
159
      s.append(1, (logchar) 0x2D /* '-' */);
266
159
    }
267
268
363
    if (hh.length() == 1)
269
233
    {
270
233
      s.append(1, (logchar) 0x30 /* '0' */);
271
233
    }
272
273
363
    s.append(hh);
274
363
    s.append(1, (logchar) 0x3A /*' :' */);
275
363
    LogString mm;
276
363
    StringHelper::toString(minutes, p, mm);
277
278
363
    if (mm.length() == 1)
279
235
    {
280
235
      s.append(1, (logchar) 0x30 /* '0' */);
281
235
    }
282
283
363
    s.append(mm);
284
363
    apr_int32_t offset = sign * (hours * 3600 + minutes * 60);
285
363
    return std::make_shared<helpers::TimeZoneImpl::FixedTimeZone>( s, offset );
286
444
  }
287
288
956
  const TimeZonePtr& ltz = getDefault();
289
290
956
  if ( ltz->getID() == id )
291
21
  {
292
21
    return ltz;
293
21
  }
294
295
935
  return getGMT();
296
956
}
297