Coverage Report

Created: 2026-04-12 06:23

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/logging-log4cxx/src/main/cpp/timezone.cpp
Line
Count
Source
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
985
    {
50
985
      static WideLife<TimeZonePtr> tz = std::make_shared<GMTTimeZone>();
51
985
      return tz;
52
985
    }
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.41k
    {
57
2.41k
      apr_status_t stat;
58
59
      //  APR 1.1 and early mishandles microseconds on dates
60
      //   before 1970, APR bug 32520
61
2.41k
      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.41k
      else
68
2.41k
      {
69
2.41k
        stat = apr_time_exp_gmt( result, input );
70
2.41k
      }
71
72
2.41k
      return stat;
73
2.41k
    }
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.53k
    {
89
2.53k
      static WideLife<TimeZonePtr> tz = std::make_shared<LocalTimeZone>();
90
2.53k
      return tz;
91
2.53k
    }
92
93
    /** Explode time to human readable form. */
94
    log4cxx_status_t explode( apr_time_exp_t* result, log4cxx_time_t input ) const
95
961
    {
96
961
      apr_status_t stat;
97
98
      //  APR 1.1 and early mishandles microseconds on dates
99
      //   before 1970, APR bug 32520
100
961
      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
961
      else
107
961
      {
108
961
        stat = apr_time_exp_lt( result, input );
109
961
      }
110
111
961
      return stat;
112
961
    }
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
222
    FixedTimeZone( const LogString& name, apr_int32_t offset1 ) : TimeZone( name ), offset( offset1 )
149
222
    {
150
222
    }
151
152
    /** Explode time to human readable form. */
153
    log4cxx_status_t explode( apr_time_exp_t* result, log4cxx_time_t input ) const
154
535
    {
155
535
      apr_status_t stat;
156
157
      //  APR 1.1 and early mishandles microseconds on dates
158
      //   before 1970, APR bug 32520
159
535
      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
535
      else
166
535
      {
167
535
        stat = apr_time_exp_tz( result, input, offset );
168
535
      }
169
170
535
      return stat;
171
535
    }
172
173
174
  private:
175
    const apr_int32_t offset;
176
};
177
178
}
179
}
180
}
181
182
183
184
224
TimeZone::TimeZone( const LogString& id1 ) : id( id1 )
185
224
{
186
224
}
187
188
TimeZone::~TimeZone()
189
224
{
190
224
}
191
192
const TimeZonePtr& TimeZone::getDefault()
193
2.53k
{
194
2.53k
  return LOG4CXX_NS::helpers::TimeZoneImpl::LocalTimeZone::getInstance();
195
2.53k
}
196
197
const TimeZonePtr& TimeZone::getGMT()
198
984
{
199
984
  return LOG4CXX_NS::helpers::TimeZoneImpl::GMTTimeZone::getInstance();
200
984
}
201
202
const TimeZonePtr TimeZone::getTimeZone( const LogString& id )
203
1.53k
{
204
1.53k
  const logchar gmt[] = { 0x47, 0x4D, 0x54, 0 };
205
206
1.53k
  if ( id == gmt )
207
1
  {
208
1
    return LOG4CXX_NS::helpers::TimeZoneImpl::GMTTimeZone::getInstance();
209
1
  }
210
211
1.53k
  if ( id.length() >= 5 && id.substr( 0, 3 ) == gmt )
212
529
  {
213
529
    int hours = 0;
214
529
    int minutes = 0;
215
529
    int sign = 1;
216
217
529
    if (id[3] == 0x2D /* '-' */)
218
124
    {
219
124
      sign = -1;
220
124
    }
221
222
529
    LogString off( id.substr( 4 ) );
223
224
529
    if ( id.length() >= 7 )
225
348
    {
226
348
      size_t colonPos = off.find( 0x3A /* ':' */);
227
228
348
      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
189
      else
234
189
      {
235
189
        minutes = StringHelper::toInt(off.substr(colonPos + 1));
236
189
        hours = StringHelper::toInt(off.substr(0, colonPos));
237
189
      }
238
348
    }
239
181
    else
240
181
    {
241
181
      hours = StringHelper::toInt(off);
242
181
    }
243
244
    // Make sure that our offset can't be crazy
245
529
    if( hours < -12 || 14 < hours)
246
91
    {
247
91
      throw RuntimeException(LOG4CXX_STR("Hour offset must be in (-12..14)"));
248
91
    }
249
438
    if (minutes < 0 || 60 < minutes)
250
89
    {
251
89
      throw RuntimeException(LOG4CXX_STR("Minute offset must be in (0..60)"));
252
89
    }
253
254
349
    LogString s(gmt);
255
349
    Pool p;
256
349
    LogString hh;
257
349
    StringHelper::toString(hours, p, hh);
258
259
349
    if (sign > 0)
260
142
    {
261
142
      s.append(1, (logchar) 0x2B /* '+' */);
262
142
    }
263
207
    else
264
207
    {
265
207
      s.append(1, (logchar) 0x2D /* '-' */);
266
207
    }
267
268
349
    if (hh.length() == 1)
269
194
    {
270
194
      s.append(1, (logchar) 0x30 /* '0' */);
271
194
    }
272
273
349
    s.append(hh);
274
349
    s.append(1, (logchar) 0x3A /*' :' */);
275
349
    LogString mm;
276
349
    StringHelper::toString(minutes, p, mm);
277
278
349
    if (mm.length() == 1)
279
196
    {
280
196
      s.append(1, (logchar) 0x30 /* '0' */);
281
196
    }
282
283
349
    s.append(mm);
284
349
    apr_int32_t offset = sign * (hours * 3600 + minutes * 60);
285
349
    return std::make_shared<helpers::TimeZoneImpl::FixedTimeZone>( s, offset );
286
438
  }
287
288
1.00k
  const TimeZonePtr& ltz = getDefault();
289
290
1.00k
  if ( ltz->getID() == id )
291
20
  {
292
20
    return ltz;
293
20
  }
294
295
984
  return getGMT();
296
1.00k
}
297