Coverage Report

Created: 2026-09-01 07:26

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