Coverage Report

Created: 2025-08-26 06:48

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