/src/logging-log4cxx/src/main/cpp/simpledateformat.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 |  | #include <log4cxx/logstring.h> | 
| 18 |  | #include <log4cxx/helpers/simpledateformat.h> | 
| 19 |  |  | 
| 20 |  | #include <apr_time.h> | 
| 21 |  | #include <apr_strings.h> | 
| 22 |  | #include <sstream> | 
| 23 |  | #include <log4cxx/helpers/transcoder.h> | 
| 24 |  | #include <log4cxx/helpers/stringhelper.h> | 
| 25 |  | #include <assert.h> | 
| 26 |  | #if !defined(LOG4CXX) | 
| 27 |  |   #define LOG4CXX 1 | 
| 28 |  | #endif | 
| 29 |  | #include <log4cxx/private/log4cxx_private.h> | 
| 30 |  | #include <log4cxx/helpers/pool.h> | 
| 31 |  |  | 
| 32 |  | using namespace LOG4CXX_NS; | 
| 33 |  | using namespace LOG4CXX_NS::helpers; | 
| 34 |  |  | 
| 35 |  | using namespace std; | 
| 36 |  |  | 
| 37 |  | #if LOG4CXX_HAS_STD_LOCALE | 
| 38 |  |   #include <locale> | 
| 39 |  | #endif | 
| 40 |  |  | 
| 41 |  | #if defined(_MSC_VER) && _MSC_VER < 1300 | 
| 42 |  |   #define HAS_FACET(locale, type) _HAS(locale, type) | 
| 43 |  |   #define USE_FACET(locale, type) _USE(locale, type) | 
| 44 |  |   #define PUT_FACET(facet, os, time, spec) facet.put(os, os, time, spec) | 
| 45 |  | #else | 
| 46 |  |   #if defined(_RWSTD_NO_TEMPLATE_ON_RETURN_TYPE) | 
| 47 |  |     #define HAS_FACET(locale, type) std::has_facet(locale, (type*) 0) | 
| 48 |  |     #define USE_FACET(locale, type) std::use_facet(locale, (type*) 0) | 
| 49 |  |   #else | 
| 50 | 0 |     #define HAS_FACET(locale, type) std::has_facet < type >(locale) | 
| 51 | 0 |     #define USE_FACET(locale, type) std::use_facet < type >(locale) | 
| 52 |  |   #endif | 
| 53 | 0 |   #define PUT_FACET(facet, os, time, spec) facet.put(os, os, os.fill(), time, spec) | 
| 54 |  | #endif | 
| 55 |  |  | 
| 56 |  | namespace LOG4CXX_NS | 
| 57 |  | { | 
| 58 |  | namespace helpers | 
| 59 |  | { | 
| 60 |  | namespace SimpleDateFormatImpl | 
| 61 |  | { | 
| 62 |  | typedef void (*incrementFunction)(tm& time, apr_time_exp_t& apr_time); | 
| 63 |  |  | 
| 64 |  | /** | 
| 65 |  |  * Abstract inner class representing one format token | 
| 66 |  |  * (one or more instances of a character). | 
| 67 |  |  */ | 
| 68 |  | class PatternToken | 
| 69 |  | { | 
| 70 |  |   public: | 
| 71 |  |     PatternToken() | 
| 72 | 21.0k |     { | 
| 73 | 21.0k |     } | 
| 74 |  |  | 
| 75 |  |     virtual ~PatternToken() | 
| 76 | 21.0k |     { | 
| 77 | 21.0k |     } | 
| 78 |  |  | 
| 79 |  |     /** | 
| 80 |  |      * Sets the time zone. | 
| 81 |  |      * @param zone new time zone. | 
| 82 |  |      */ | 
| 83 |  |     virtual void setTimeZone(const TimeZonePtr& zone) | 
| 84 | 21.0k |     { | 
| 85 | 21.0k |     } | 
| 86 |  |  | 
| 87 |  |     /** | 
| 88 |  |      * Appends the formatted content to the string. | 
| 89 |  |      * @param s string to which format contribution is appended. | 
| 90 |  |      * @param date exploded date/time. | 
| 91 |  |      * @param p memory pool. | 
| 92 |  |      */ | 
| 93 |  |     virtual void format(LogString& s, | 
| 94 |  |       const apr_time_exp_t& date, | 
| 95 |  |       LOG4CXX_NS::helpers::Pool& p) const = 0; | 
| 96 |  |  | 
| 97 |  |   protected: | 
| 98 |  |  | 
| 99 |  |     static void incrementMonth(tm& time, apr_time_exp_t& aprtime) | 
| 100 | 0 |     { | 
| 101 | 0 |       time.tm_mon++; | 
| 102 | 0 |       aprtime.tm_mon++; | 
| 103 | 0 |     } | 
| 104 |  |  | 
| 105 |  |     static void incrementDay(tm& time, apr_time_exp_t& aprtime) | 
| 106 | 0 |     { | 
| 107 | 0 |       time.tm_wday++; | 
| 108 | 0 |       aprtime.tm_wday++; | 
| 109 | 0 |     } | 
| 110 |  |  | 
| 111 |  |     static void incrementHalfDay(tm& time, apr_time_exp_t& aprtime) | 
| 112 | 0 |     { | 
| 113 | 0 |       time.tm_hour += 12; | 
| 114 | 0 |       aprtime.tm_hour += 12; | 
| 115 | 0 |     } | 
| 116 |  |  | 
| 117 |  |     static void renderFacet(const std::locale* locale, | 
| 118 |  |       incrementFunction inc, | 
| 119 |  |       char spec, | 
| 120 |  |       unsigned int wspec, | 
| 121 |  |       const char* aprspec, | 
| 122 |  |       std::vector<LogString>& values) | 
| 123 | 0 |     { | 
| 124 | 0 |       std::vector<LogString>::iterator valueIter = values.begin(); | 
| 125 | 0 |       tm time; | 
| 126 | 0 |       memset(&time, 0, sizeof(time)); | 
| 127 | 0 |       apr_time_exp_t aprtime; | 
| 128 | 0 |       memset(&aprtime, 0, sizeof(aprtime)); | 
| 129 | 0 | #if LOG4CXX_HAS_STD_LOCALE | 
| 130 |  | 
 | 
| 131 | 0 |       if (locale != NULL) | 
| 132 | 0 |       { | 
| 133 | 0 | #if LOG4CXX_WCHAR_T_API | 
| 134 |  | 
 | 
| 135 | 0 |         if (HAS_FACET(*locale, std::time_put<wchar_t>)) | 
| 136 | 0 |         { | 
| 137 | 0 |           const std::time_put<wchar_t>& facet = USE_FACET(*locale, std::time_put<wchar_t>); | 
| 138 | 0 |           size_t start = 0; | 
| 139 | 0 |           std::basic_ostringstream<wchar_t> os; | 
| 140 |  | 
 | 
| 141 | 0 |           for (; valueIter != values.end(); valueIter++) | 
| 142 | 0 |           { | 
| 143 | 0 |             PUT_FACET(facet, os, &time, (char)wspec); | 
| 144 | 0 |             Transcoder::decode(os.str().substr(start), *valueIter); | 
| 145 | 0 |             start = os.str().length(); | 
| 146 | 0 |             (*inc)(time, aprtime); | 
| 147 | 0 |           } | 
| 148 | 0 |         } | 
| 149 | 0 |         else | 
| 150 | 0 | #endif | 
| 151 | 0 |           if (HAS_FACET(*locale,  std::time_put<char>)) | 
| 152 | 0 |           { | 
| 153 | 0 |             const std::time_put<char>& facet = USE_FACET(*locale, std::time_put<char> ); | 
| 154 | 0 |             size_t start = 0; | 
| 155 | 0 |             std::ostringstream os; | 
| 156 |  | 
 | 
| 157 | 0 |             for (; valueIter != values.end(); valueIter++) | 
| 158 | 0 |             { | 
| 159 | 0 |               PUT_FACET(facet, os, &time, spec); | 
| 160 | 0 |               Transcoder::decode(os.str().substr(start), *valueIter); | 
| 161 | 0 |               start = os.str().length(); | 
| 162 | 0 |               (*inc)(time, aprtime); | 
| 163 | 0 |             } | 
| 164 | 0 |           } | 
| 165 | 0 |       } | 
| 166 |  | 
 | 
| 167 | 0 | #endif | 
| 168 | 0 |       const size_t BUFSIZE = 256; | 
| 169 | 0 |       char buf[BUFSIZE]; | 
| 170 | 0 |       memset(buf, 0, BUFSIZE); | 
| 171 | 0 |       apr_size_t retsize = 0; | 
| 172 |  | 
 | 
| 173 | 0 |       for (; valueIter != values.end(); valueIter++) | 
| 174 | 0 |       { | 
| 175 | 0 |         apr_status_t stat = apr_strftime(buf, &retsize, BUFSIZE, aprspec, &aprtime); | 
| 176 | 0 |         (*inc)(time, aprtime); | 
| 177 |  | 
 | 
| 178 | 0 |         if (stat == APR_SUCCESS) | 
| 179 | 0 |         { | 
| 180 | 0 |           Transcoder::decode(std::string(buf, retsize), *valueIter); | 
| 181 | 0 |         } | 
| 182 | 0 |         else | 
| 183 | 0 |         { | 
| 184 | 0 |           valueIter->append(1, (logchar) 0x3F); | 
| 185 | 0 |         } | 
| 186 | 0 |       } | 
| 187 | 0 |     } | 
| 188 |  |  | 
| 189 |  |   private: | 
| 190 |  |     /** | 
| 191 |  |      * Private copy constructor. | 
| 192 |  |      */ | 
| 193 |  |     PatternToken(const PatternToken&); | 
| 194 |  |  | 
| 195 |  |     /** | 
| 196 |  |      * Private assignment operator. | 
| 197 |  |      */ | 
| 198 |  |     PatternToken& operator=(const PatternToken&); | 
| 199 |  | }; | 
| 200 |  |  | 
| 201 |  |  | 
| 202 |  | class LiteralToken : public PatternToken | 
| 203 |  | { | 
| 204 |  |   public: | 
| 205 | 9.55k |     LiteralToken( logchar ch1, int count1 ) : ch( ch1 ), count( count1 ) | 
| 206 | 9.55k |     { | 
| 207 | 9.55k |     } | 
| 208 |  |  | 
| 209 |  |     void format( LogString& s, const apr_time_exp_t&, Pool& /* p */ ) const | 
| 210 | 19.1k |     { | 
| 211 | 19.1k |       s.append( count, ch ); | 
| 212 | 19.1k |     } | 
| 213 |  |  | 
| 214 |  |   private: | 
| 215 |  |     logchar ch; | 
| 216 |  |     int count; | 
| 217 |  | }; | 
| 218 |  |  | 
| 219 |  |  | 
| 220 |  |  | 
| 221 |  | class EraToken : public PatternToken | 
| 222 |  | { | 
| 223 |  |   public: | 
| 224 |  |     EraToken( int /* count */, const std::locale* /* locale */  ) | 
| 225 | 0 |     { | 
| 226 | 0 |     } | 
| 227 |  |  | 
| 228 |  |     void format(LogString& s, const apr_time_exp_t& /* tm */, Pool& /* p */ ) const | 
| 229 | 0 |     { | 
| 230 | 0 |       s.append(1, (logchar) 0x41 /* 'A' */); | 
| 231 | 0 |       s.append(1, (logchar) 0x44 /* 'D' */); | 
| 232 | 0 |     } | 
| 233 |  | }; | 
| 234 |  |  | 
| 235 |  |  | 
| 236 |  |  | 
| 237 |  | class NumericToken : public PatternToken | 
| 238 |  | { | 
| 239 |  |   public: | 
| 240 | 11.4k |     NumericToken( size_t width1 ) : width( width1 ) | 
| 241 | 11.4k |     { | 
| 242 | 11.4k |     } | 
| 243 |  |  | 
| 244 |  |     virtual int getField( const apr_time_exp_t& tm ) const = 0; | 
| 245 |  |  | 
| 246 |  |     void format( LogString& s, const apr_time_exp_t& tm, Pool& p ) const | 
| 247 | 22.9k |     { | 
| 248 | 22.9k |       size_t initialLength = s.length(); | 
| 249 |  |  | 
| 250 | 22.9k |       StringHelper::toString( getField( tm ), p, s ); | 
| 251 | 22.9k |       size_t finalLength = s.length(); | 
| 252 |  |  | 
| 253 | 22.9k |       if ( initialLength + width > finalLength ) | 
| 254 | 3.83k |       { | 
| 255 | 3.83k |         s.insert( initialLength, ( initialLength + width ) - finalLength, (logchar) 0x30 /* '0' */); | 
| 256 | 3.83k |       } | 
| 257 | 22.9k |     } | 
| 258 |  |  | 
| 259 |  |   private: | 
| 260 |  |     size_t width; | 
| 261 |  | }; | 
| 262 |  |  | 
| 263 |  |  | 
| 264 |  |  | 
| 265 |  | class YearToken : public NumericToken | 
| 266 |  | { | 
| 267 |  |   public: | 
| 268 | 1.91k |     YearToken( int width1 ) : NumericToken( width1 ) | 
| 269 | 1.91k |     { | 
| 270 | 1.91k |     } | 
| 271 |  |  | 
| 272 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 273 | 3.82k |     { | 
| 274 | 3.82k |       return 1900 + tm.tm_year; | 
| 275 | 3.82k |     } | 
| 276 |  | }; | 
| 277 |  |  | 
| 278 |  |  | 
| 279 |  |  | 
| 280 |  | class MonthToken : public NumericToken | 
| 281 |  | { | 
| 282 |  |   public: | 
| 283 | 1.91k |     MonthToken( int width1 ) : NumericToken( width1 ) | 
| 284 | 1.91k |     { | 
| 285 | 1.91k |     } | 
| 286 |  |  | 
| 287 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 288 | 3.82k |     { | 
| 289 | 3.82k |       return tm.tm_mon + 1; | 
| 290 | 3.82k |     } | 
| 291 |  | }; | 
| 292 |  |  | 
| 293 |  |  | 
| 294 |  |  | 
| 295 |  | class AbbreviatedMonthNameToken : public PatternToken | 
| 296 |  | { | 
| 297 |  |   public: | 
| 298 | 0 |     AbbreviatedMonthNameToken(int, const std::locale* locale) : names( 12 ) | 
| 299 | 0 |     { | 
| 300 | 0 |       renderFacet(locale, PatternToken::incrementMonth, 'b', 0x62, "%b", names); | 
| 301 | 0 |     } | 
| 302 |  |  | 
| 303 |  |     void format(LogString& s, const apr_time_exp_t& tm, Pool& /* p */ ) const | 
| 304 | 0 |     { | 
| 305 | 0 |       s.append( names[tm.tm_mon] ); | 
| 306 | 0 |     } | 
| 307 |  |  | 
| 308 |  |   private: | 
| 309 |  |     std::vector < LogString > names; | 
| 310 |  | }; | 
| 311 |  |  | 
| 312 |  |  | 
| 313 |  |  | 
| 314 |  | class FullMonthNameToken : public PatternToken | 
| 315 |  | { | 
| 316 |  |   public: | 
| 317 | 0 |     FullMonthNameToken( int width, const std::locale* locale) : names( 12 ) | 
| 318 | 0 |     { | 
| 319 | 0 |       renderFacet(locale, PatternToken::incrementMonth, 'B', 0x42, "%B", names); | 
| 320 | 0 |     } | 
| 321 |  |  | 
| 322 |  |     void format( LogString& s, const apr_time_exp_t& tm, Pool& /* p */ ) const | 
| 323 | 0 |     { | 
| 324 | 0 |       s.append( names[tm.tm_mon] ); | 
| 325 | 0 |     } | 
| 326 |  |  | 
| 327 |  |   private: | 
| 328 |  |     std::vector < LogString > names; | 
| 329 |  | }; | 
| 330 |  |  | 
| 331 |  |  | 
| 332 |  |  | 
| 333 |  | class WeekInYearToken : public NumericToken | 
| 334 |  | { | 
| 335 |  |   public: | 
| 336 | 0 |     WeekInYearToken( int width1 ) : NumericToken( width1 ) | 
| 337 | 0 |     { | 
| 338 | 0 |     } | 
| 339 |  |  | 
| 340 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 341 | 0 |     { | 
| 342 | 0 |       return tm.tm_yday / 7; | 
| 343 | 0 |     } | 
| 344 |  | }; | 
| 345 |  |  | 
| 346 |  |  | 
| 347 |  |  | 
| 348 |  | class WeekInMonthToken : public NumericToken | 
| 349 |  | { | 
| 350 |  |   public: | 
| 351 | 0 |     WeekInMonthToken( int width1 ) : NumericToken( width1 ) | 
| 352 | 0 |     { | 
| 353 | 0 |     } | 
| 354 |  |  | 
| 355 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 356 | 0 |     { | 
| 357 | 0 |       return tm.tm_mday / 7; | 
| 358 | 0 |     } | 
| 359 |  | }; | 
| 360 |  |  | 
| 361 |  |  | 
| 362 |  |  | 
| 363 |  | class DayInMonthToken : public NumericToken | 
| 364 |  | { | 
| 365 |  |   public: | 
| 366 | 1.91k |     DayInMonthToken( int width1 ) : NumericToken( width1 ) | 
| 367 | 1.91k |     { | 
| 368 | 1.91k |     } | 
| 369 |  |  | 
| 370 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 371 | 3.82k |     { | 
| 372 | 3.82k |       return tm.tm_mday; | 
| 373 | 3.82k |     } | 
| 374 |  | }; | 
| 375 |  |  | 
| 376 |  |  | 
| 377 |  |  | 
| 378 |  | class DayInYearToken : public NumericToken | 
| 379 |  | { | 
| 380 |  |   public: | 
| 381 | 0 |     DayInYearToken( int width1 ) : NumericToken( width1 ) | 
| 382 | 0 |     { | 
| 383 | 0 |     } | 
| 384 |  |  | 
| 385 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 386 | 0 |     { | 
| 387 | 0 |       return tm.tm_yday; | 
| 388 | 0 |     } | 
| 389 |  | }; | 
| 390 |  |  | 
| 391 |  |  | 
| 392 |  |  | 
| 393 |  | class DayOfWeekInMonthToken : public NumericToken | 
| 394 |  | { | 
| 395 |  |   public: | 
| 396 | 0 |     DayOfWeekInMonthToken( int width1 ) : NumericToken( width1 ) | 
| 397 | 0 |     { | 
| 398 | 0 |     } | 
| 399 |  |  | 
| 400 |  |     int getField( const apr_time_exp_t& /* tm */ ) const | 
| 401 | 0 |     { | 
| 402 | 0 |       return -1; | 
| 403 | 0 |     } | 
| 404 |  | }; | 
| 405 |  |  | 
| 406 |  |  | 
| 407 |  |  | 
| 408 |  | class AbbreviatedDayNameToken : public PatternToken | 
| 409 |  | { | 
| 410 |  |   public: | 
| 411 | 0 |     AbbreviatedDayNameToken( int width, const std::locale* locale) : names( 7 ) | 
| 412 | 0 |     { | 
| 413 | 0 |       renderFacet(locale, PatternToken::incrementDay, 'a', 0x61, "%a", names); | 
| 414 | 0 |     } | 
| 415 |  |  | 
| 416 |  |     void format( LogString& s, const apr_time_exp_t& tm, Pool& /* p */ ) const | 
| 417 | 0 |     { | 
| 418 | 0 |       s.append( names[tm.tm_wday] ); | 
| 419 | 0 |     } | 
| 420 |  |  | 
| 421 |  |   private: | 
| 422 |  |     std::vector < LogString > names; | 
| 423 |  |  | 
| 424 |  | }; | 
| 425 |  |  | 
| 426 |  |  | 
| 427 |  |  | 
| 428 |  | class FullDayNameToken : public PatternToken | 
| 429 |  | { | 
| 430 |  |   public: | 
| 431 | 0 |     FullDayNameToken( int width, const std::locale* locale) : names( 7 ) | 
| 432 | 0 |     { | 
| 433 | 0 |       renderFacet(locale, PatternToken::incrementDay, 'A', 0x41, "%A", names); | 
| 434 | 0 |     } | 
| 435 |  |  | 
| 436 |  |     void format( LogString& s, const apr_time_exp_t& tm, Pool& /* p */ ) const | 
| 437 | 0 |     { | 
| 438 | 0 |       s.append( names[tm.tm_wday] ); | 
| 439 | 0 |     } | 
| 440 |  |  | 
| 441 |  |   private: | 
| 442 |  |     std::vector < LogString > names; | 
| 443 |  |  | 
| 444 |  | }; | 
| 445 |  |  | 
| 446 |  |  | 
| 447 |  |  | 
| 448 |  | class MilitaryHourToken : public NumericToken | 
| 449 |  | { | 
| 450 |  |   public: | 
| 451 | 1.91k |     MilitaryHourToken( int width1, int offset1 ) : NumericToken( width1 ), offset( offset1 ) | 
| 452 | 1.91k |     { | 
| 453 | 1.91k |     } | 
| 454 |  |  | 
| 455 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 456 | 3.82k |     { | 
| 457 | 3.82k |       return tm.tm_hour + offset; | 
| 458 | 3.82k |     } | 
| 459 |  |  | 
| 460 |  |   private: | 
| 461 |  |     int offset; | 
| 462 |  | }; | 
| 463 |  |  | 
| 464 |  |  | 
| 465 |  |  | 
| 466 |  | class HourToken : public NumericToken | 
| 467 |  | { | 
| 468 |  |   public: | 
| 469 | 0 |     HourToken( int width1, int /* offset1 */ ) : NumericToken( width1 ), offset( 0 ) | 
| 470 | 0 |     { | 
| 471 | 0 |     } | 
| 472 |  |  | 
| 473 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 474 | 0 |     { | 
| 475 | 0 |       return ( ( tm.tm_hour + 12 - offset ) % 12 ) + offset; | 
| 476 | 0 |     } | 
| 477 |  |  | 
| 478 |  |   private: | 
| 479 |  |     int offset; | 
| 480 |  | }; | 
| 481 |  |  | 
| 482 |  |  | 
| 483 |  |  | 
| 484 |  | class MinuteToken : public NumericToken | 
| 485 |  | { | 
| 486 |  |   public: | 
| 487 | 1.91k |     MinuteToken( int width1 ) : NumericToken( width1 ) | 
| 488 | 1.91k |     { | 
| 489 | 1.91k |     } | 
| 490 |  |  | 
| 491 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 492 | 3.82k |     { | 
| 493 | 3.82k |       return tm.tm_min; | 
| 494 | 3.82k |     } | 
| 495 |  | }; | 
| 496 |  |  | 
| 497 |  |  | 
| 498 |  |  | 
| 499 |  | class SecondToken : public NumericToken | 
| 500 |  | { | 
| 501 |  |   public: | 
| 502 | 1.91k |     SecondToken( int width1 ) : NumericToken( width1 ) | 
| 503 | 1.91k |     { | 
| 504 | 1.91k |     } | 
| 505 |  |  | 
| 506 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 507 | 3.82k |     { | 
| 508 | 3.82k |       return tm.tm_sec; | 
| 509 | 3.82k |     } | 
| 510 |  | }; | 
| 511 |  |  | 
| 512 |  |  | 
| 513 |  |  | 
| 514 |  | class MillisecondToken : public NumericToken | 
| 515 |  | { | 
| 516 |  |   public: | 
| 517 | 0 |     MillisecondToken( int width1 ) : NumericToken( width1 ) | 
| 518 | 0 |     { | 
| 519 | 0 |     } | 
| 520 |  |  | 
| 521 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 522 | 0 |     { | 
| 523 | 0 |       return tm.tm_usec / 1000; | 
| 524 | 0 |     } | 
| 525 |  | }; | 
| 526 |  |  | 
| 527 |  |  | 
| 528 |  |  | 
| 529 |  | class MicrosecondToken : public NumericToken | 
| 530 |  | { | 
| 531 |  |   public: | 
| 532 | 0 |     MicrosecondToken( int width1 ) : NumericToken( width1 ) | 
| 533 | 0 |     { | 
| 534 | 0 |     } | 
| 535 |  |  | 
| 536 |  |     int getField( const apr_time_exp_t& tm ) const | 
| 537 | 0 |     { | 
| 538 | 0 |       return tm.tm_usec; | 
| 539 | 0 |     } | 
| 540 |  | }; | 
| 541 |  |  | 
| 542 |  |  | 
| 543 |  |  | 
| 544 |  | class AMPMToken : public PatternToken | 
| 545 |  | { | 
| 546 |  |   public: | 
| 547 | 0 |     AMPMToken( int width, const std::locale* locale) : names( 2 ) | 
| 548 | 0 |     { | 
| 549 | 0 |       renderFacet(locale, PatternToken::incrementHalfDay, 'p', 0x70, "%p", names); | 
| 550 | 0 |     } | 
| 551 |  |  | 
| 552 |  |     void format( LogString& s, const apr_time_exp_t& tm, Pool& /* p */ ) const | 
| 553 | 0 |     { | 
| 554 | 0 |       s.append( names[tm.tm_hour / 12] ); | 
| 555 | 0 |     } | 
| 556 |  |  | 
| 557 |  |   private: | 
| 558 |  |     std::vector < LogString > names; | 
| 559 |  | }; | 
| 560 |  |  | 
| 561 |  |  | 
| 562 |  |  | 
| 563 |  | class GeneralTimeZoneToken : public PatternToken | 
| 564 |  | { | 
| 565 |  |   public: | 
| 566 |  |     GeneralTimeZoneToken( int /* width */ ) | 
| 567 | 0 |     { | 
| 568 | 0 |     } | 
| 569 |  |  | 
| 570 |  |     void format( LogString& s, const apr_time_exp_t&, Pool& /* p */ ) const | 
| 571 | 0 |     { | 
| 572 | 0 |       s.append(timeZone->getID()); | 
| 573 | 0 |     } | 
| 574 |  |  | 
| 575 |  |     void setTimeZone( const TimeZonePtr& zone ) | 
| 576 | 0 |     { | 
| 577 | 0 |       timeZone = zone; | 
| 578 | 0 |     } | 
| 579 |  |  | 
| 580 |  |   private: | 
| 581 |  |     TimeZonePtr timeZone; | 
| 582 |  | }; | 
| 583 |  |  | 
| 584 |  |  | 
| 585 |  |  | 
| 586 |  | class RFC822TimeZoneToken : public PatternToken | 
| 587 |  | { | 
| 588 |  |   public: | 
| 589 |  |     RFC822TimeZoneToken( int /* width */ ) | 
| 590 | 0 |     { | 
| 591 | 0 |     } | 
| 592 |  |  | 
| 593 |  |     void format( LogString& s, const apr_time_exp_t& tm, Pool& p ) const | 
| 594 | 0 |     { | 
| 595 | 0 |       if ( tm.tm_gmtoff == 0 ) | 
| 596 | 0 |       { | 
| 597 | 0 |         s.append( 1, (logchar) 0x5A /* 'Z'  */ ); | 
| 598 | 0 |       } | 
| 599 | 0 |       else | 
| 600 | 0 |       { | 
| 601 | 0 |         apr_int32_t off = tm.tm_gmtoff; | 
| 602 | 0 |         s.reserve(s.length() + 5); | 
| 603 |  | 
 | 
| 604 | 0 |         if ( off < 0 ) | 
| 605 | 0 |         { | 
| 606 | 0 |           s.push_back( '-' ); | 
| 607 | 0 |           off = -off; | 
| 608 | 0 |         }else{ | 
| 609 | 0 |           s.push_back( '+' ); | 
| 610 | 0 |         } | 
| 611 |  | 
 | 
| 612 | 0 |         LogString hours; | 
| 613 | 0 |         StringHelper::toString( off / 3600, p, hours ); | 
| 614 | 0 |         if( hours.size() == 1 ){ | 
| 615 | 0 |           s.push_back( '0' ); | 
| 616 | 0 |         } | 
| 617 | 0 |         s.append(hours); | 
| 618 |  | 
 | 
| 619 | 0 |         LogString min; | 
| 620 | 0 |         StringHelper::toString( ( off % 3600 ) / 60, p, min ); | 
| 621 | 0 |         if( min.size() == 1 ){ | 
| 622 | 0 |           s.push_back( '0' ); | 
| 623 | 0 |         } | 
| 624 | 0 |         s.append(min); | 
| 625 | 0 |       } | 
| 626 | 0 |     } | 
| 627 |  | }; | 
| 628 |  |  | 
| 629 |  |  | 
| 630 |  |  | 
| 631 |  |  | 
| 632 |  | } | 
| 633 |  | } | 
| 634 |  | } | 
| 635 |  |  | 
| 636 |  |  | 
| 637 |  | using namespace LOG4CXX_NS::helpers::SimpleDateFormatImpl; | 
| 638 |  |  | 
| 639 |  | void SimpleDateFormat::addToken(const logchar spec, const int repeat, const std::locale* locale, | 
| 640 |  |   std::vector < PatternToken* >& pattern ) | 
| 641 | 21.0k | { | 
| 642 | 21.0k |   PatternToken* token = NULL; | 
| 643 |  |  | 
| 644 | 21.0k |   switch ( spec ) | 
| 645 | 21.0k |   { | 
| 646 | 0 |     case 0x47: // 'G' | 
| 647 | 0 |       token = ( new EraToken( repeat, locale ) ); | 
| 648 | 0 |       break; | 
| 649 |  |  | 
| 650 | 1.91k |     case 0x79: // 'y' | 
| 651 | 1.91k |       token = ( new YearToken( repeat ) ); | 
| 652 | 1.91k |       break; | 
| 653 |  |  | 
| 654 | 1.91k |     case 0x4D: // 'M' | 
| 655 | 1.91k |       if ( repeat <= 2 ) | 
| 656 | 1.91k |       { | 
| 657 | 1.91k |         token = ( new MonthToken( repeat ) ); | 
| 658 | 1.91k |       } | 
| 659 | 0 |       else if ( repeat <= 3 ) | 
| 660 | 0 |       { | 
| 661 | 0 |         token = ( new AbbreviatedMonthNameToken( repeat, locale ) ); | 
| 662 | 0 |       } | 
| 663 | 0 |       else | 
| 664 | 0 |       { | 
| 665 | 0 |         token = ( new FullMonthNameToken( repeat, locale ) ); | 
| 666 | 0 |       } | 
| 667 |  |  | 
| 668 | 1.91k |       break; | 
| 669 |  |  | 
| 670 | 0 |     case 0x77: // 'w' | 
| 671 | 0 |       token = ( new WeekInYearToken( repeat ) ); | 
| 672 | 0 |       break; | 
| 673 |  |  | 
| 674 | 0 |     case 0x57: // 'W' | 
| 675 | 0 |       token = ( new WeekInMonthToken( repeat ) ); | 
| 676 | 0 |       break; | 
| 677 |  |  | 
| 678 | 0 |     case 0x44: // 'D' | 
| 679 | 0 |       token = ( new DayInYearToken( repeat ) ); | 
| 680 | 0 |       break; | 
| 681 |  |  | 
| 682 | 1.91k |     case 0x64: // 'd' | 
| 683 | 1.91k |       token = ( new DayInMonthToken( repeat ) ); | 
| 684 | 1.91k |       break; | 
| 685 |  |  | 
| 686 | 0 |     case 0x46: // 'F' | 
| 687 | 0 |       token = ( new DayOfWeekInMonthToken( repeat ) ); | 
| 688 | 0 |       break; | 
| 689 |  |  | 
| 690 | 0 |     case 0x45: // 'E' | 
| 691 | 0 |       if ( repeat <= 3 ) | 
| 692 | 0 |       { | 
| 693 | 0 |         token = ( new AbbreviatedDayNameToken( repeat, locale ) ); | 
| 694 | 0 |       } | 
| 695 | 0 |       else | 
| 696 | 0 |       { | 
| 697 | 0 |         token = ( new FullDayNameToken( repeat, locale ) ); | 
| 698 | 0 |       } | 
| 699 |  | 
 | 
| 700 | 0 |       break; | 
| 701 |  |  | 
| 702 | 0 |     case 0x61: // 'a' | 
| 703 | 0 |       token = ( new AMPMToken( repeat, locale ) ); | 
| 704 | 0 |       break; | 
| 705 |  |  | 
| 706 | 1.91k |     case 0x48: // 'H' | 
| 707 | 1.91k |       token = ( new MilitaryHourToken( repeat, 0 ) ); | 
| 708 | 1.91k |       break; | 
| 709 |  |  | 
| 710 | 0 |     case 0x6B: // 'k' | 
| 711 | 0 |       token = ( new MilitaryHourToken( repeat, 1 ) ); | 
| 712 | 0 |       break; | 
| 713 |  |  | 
| 714 | 0 |     case 0x4B: // 'K' | 
| 715 | 0 |       token = ( new HourToken( repeat, 0 ) ); | 
| 716 | 0 |       break; | 
| 717 |  |  | 
| 718 | 0 |     case 0x68: // 'h' | 
| 719 | 0 |       token = ( new HourToken( repeat, 1 ) ); | 
| 720 | 0 |       break; | 
| 721 |  |  | 
| 722 | 1.91k |     case 0x6D: // 'm' | 
| 723 | 1.91k |       token = ( new MinuteToken( repeat ) ); | 
| 724 | 1.91k |       break; | 
| 725 |  |  | 
| 726 | 1.91k |     case 0x73: // 's' | 
| 727 | 1.91k |       token = ( new SecondToken( repeat ) ); | 
| 728 | 1.91k |       break; | 
| 729 |  |  | 
| 730 | 0 |     case 0x53: // 'S' | 
| 731 | 0 |       if ( repeat == 6 ) | 
| 732 | 0 |       { | 
| 733 | 0 |         token = ( new MicrosecondToken( repeat ) ); | 
| 734 | 0 |       } | 
| 735 | 0 |       else | 
| 736 | 0 |       { | 
| 737 |  |         // It would be nice to support patterns with arbitrary | 
| 738 |  |         // subsecond precision (like "s.S" or "s.SSSS"), but we | 
| 739 |  |         // don't; so this is a back-compatible default. | 
| 740 | 0 |         token = ( new MillisecondToken( repeat ) ); | 
| 741 | 0 |       } | 
| 742 |  | 
 | 
| 743 | 0 |       break; | 
| 744 |  |  | 
| 745 | 0 |     case 0x7A: // 'z' | 
| 746 | 0 |       token = ( new GeneralTimeZoneToken( repeat ) ); | 
| 747 | 0 |       break; | 
| 748 |  |  | 
| 749 | 0 |     case 0x5A: // 'Z' | 
| 750 | 0 |       token = ( new RFC822TimeZoneToken( repeat ) ); | 
| 751 | 0 |       break; | 
| 752 |  |  | 
| 753 | 9.55k |     default: | 
| 754 | 9.55k |       token = ( new LiteralToken( spec, repeat ) ); | 
| 755 | 21.0k |   } | 
| 756 |  |  | 
| 757 | 21.0k |   assert( token != NULL ); | 
| 758 | 21.0k |   pattern.push_back( token ); | 
| 759 | 21.0k | } | 
| 760 |  |  | 
| 761 |  |  | 
| 762 |  | void SimpleDateFormat::parsePattern( const LogString& fmt, const std::locale* locale, | 
| 763 |  |   std::vector < PatternToken* >& pattern ) | 
| 764 | 1.91k | { | 
| 765 | 1.91k |   if ( !fmt.empty() ) | 
| 766 | 1.91k |   { | 
| 767 | 1.91k |     LogString::const_iterator iter = fmt.begin(); | 
| 768 | 1.91k |     int repeat = 1; | 
| 769 | 1.91k |     logchar prevChar = * iter; | 
| 770 |  |  | 
| 771 | 36.2k |     for ( iter++; iter != fmt.end(); iter++ ) | 
| 772 | 34.3k |     { | 
| 773 | 34.3k |       if ( * iter == prevChar ) | 
| 774 | 15.2k |       { | 
| 775 | 15.2k |         repeat++; | 
| 776 | 15.2k |       } | 
| 777 | 19.1k |       else | 
| 778 | 19.1k |       { | 
| 779 | 19.1k |         addToken( prevChar, repeat, locale, pattern ); | 
| 780 | 19.1k |         prevChar = * iter; | 
| 781 | 19.1k |         repeat = 1; | 
| 782 | 19.1k |       } | 
| 783 | 34.3k |     } | 
| 784 |  |  | 
| 785 | 1.91k |     addToken( prevChar, repeat, locale, pattern ); | 
| 786 | 1.91k |   } | 
| 787 | 1.91k | } | 
| 788 |  |  | 
| 789 |  |  | 
| 790 |  | struct SimpleDateFormat::SimpleDateFormatPrivate{ | 
| 791 |  |   SimpleDateFormatPrivate() : | 
| 792 | 1.91k |     timeZone(TimeZone::getDefault()) | 
| 793 | 1.91k |   {} | 
| 794 |  |  | 
| 795 |  |   /** | 
| 796 |  |    * Time zone. | 
| 797 |  |    */ | 
| 798 |  |   TimeZonePtr timeZone; | 
| 799 |  |  | 
| 800 |  |   /** | 
| 801 |  |    * List of tokens. | 
| 802 |  |    */ | 
| 803 |  |   PatternTokenList pattern; | 
| 804 |  | }; | 
| 805 |  |  | 
| 806 | 1.91k | SimpleDateFormat::SimpleDateFormat( const LogString& fmt ) : m_priv(std::make_unique<SimpleDateFormatPrivate>()) | 
| 807 | 1.91k | { | 
| 808 | 1.91k | #if LOG4CXX_HAS_STD_LOCALE | 
| 809 | 1.91k |   std::locale defaultLocale; | 
| 810 | 1.91k |   parsePattern( fmt, & defaultLocale, m_priv->pattern ); | 
| 811 |  | #else | 
| 812 |  |   parsePattern( fmt, NULL, m_priv->pattern ); | 
| 813 |  | #endif | 
| 814 |  |  | 
| 815 | 1.91k |   for (auto const& item : m_priv->pattern) | 
| 816 | 21.0k |   { | 
| 817 | 21.0k |     item->setTimeZone( m_priv->timeZone ); | 
| 818 | 21.0k |   } | 
| 819 | 1.91k | } | 
| 820 |  |  | 
| 821 | 0 | SimpleDateFormat::SimpleDateFormat( const LogString& fmt, const std::locale* locale ) : m_priv(std::make_unique<SimpleDateFormatPrivate>()) | 
| 822 | 0 | { | 
| 823 | 0 |   parsePattern( fmt, locale, m_priv->pattern ); | 
| 824 |  | 
 | 
| 825 | 0 |   for (auto const& item : m_priv->pattern) | 
| 826 | 0 |   { | 
| 827 | 0 |     item->setTimeZone( m_priv->timeZone ); | 
| 828 | 0 |   } | 
| 829 | 0 | } | 
| 830 |  |  | 
| 831 |  |  | 
| 832 |  | SimpleDateFormat::~SimpleDateFormat() | 
| 833 | 1.91k | { | 
| 834 | 1.91k |   for (auto item : m_priv->pattern) | 
| 835 | 21.0k |   { | 
| 836 | 21.0k |     delete item; | 
| 837 | 21.0k |   } | 
| 838 | 1.91k | } | 
| 839 |  |  | 
| 840 |  |  | 
| 841 |  | void SimpleDateFormat::format( LogString& s, log4cxx_time_t time, Pool& p ) const | 
| 842 | 3.82k | { | 
| 843 | 3.82k |   apr_time_exp_t exploded; | 
| 844 | 3.82k |   apr_status_t stat = m_priv->timeZone->explode( & exploded, time ); | 
| 845 |  |  | 
| 846 | 3.82k |   if ( stat == APR_SUCCESS ) | 
| 847 | 3.82k |   { | 
| 848 | 45.8k |     for ( PatternTokenList::const_iterator iter = m_priv->pattern.begin(); iter != m_priv->pattern.end(); iter++ ) | 
| 849 | 42.0k |     { | 
| 850 | 42.0k |       ( * iter )->format( s, exploded, p ); | 
| 851 | 42.0k |     } | 
| 852 | 3.82k |   } | 
| 853 | 3.82k | } | 
| 854 |  |  | 
| 855 |  | void SimpleDateFormat::setTimeZone( const TimeZonePtr& zone ) | 
| 856 | 0 | { | 
| 857 | 0 |   m_priv->timeZone = zone; | 
| 858 | 0 | } |