tparse.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hlxclib/time.h"
  36. #include "hlxclib/string.h"
  37. #include "hlxclib/stdlib.h"
  38. //#include "hlxclib/stdio.h"
  39. #include "safestring.h"
  40. #include "hxtypes.h"
  41. #include "tparse.h"
  42. #include "localrep.h"
  43. #include "hxheap.h"
  44. #ifdef _DEBUG
  45. #undef HX_THIS_FILE
  46. static const char HX_THIS_FILE[] = __FILE__;
  47. #endif  
  48. unsigned long TimeParse(const char *s) {
  49. int colons = 0;
  50. char *cat;
  51. const char *ts;
  52. unsigned long result = 0;
  53. /* Count colons */
  54. ts = s;
  55. while ((cat = strchr(ts, ':')) != 0) {
  56. colons++;
  57. ts = cat+1;
  58. }
  59. switch(colons) {
  60. /* We deliberately fall through. */
  61. case 3:
  62. /* Days */
  63. result += atol(s);
  64. s = strchr(s, ':') + 1;
  65. case 2:
  66. /* Hours */
  67. result *= 24;
  68. result += atol(s);
  69. s = strchr(s, ':') + 1;
  70. case 1:
  71. /* Minutes  */
  72. result *= 60;
  73. result += atol(s);
  74. s = strchr(s, ':') + 1;
  75. case 0:
  76. /* Seconds   */
  77. result *= 60;
  78. result += atol(s);
  79. result *= 10;
  80. cat = strchr(s, '.');
  81. if (cat) {
  82. /* GR 4/5/02 warning, this is easily fooled, like by $xxx.3 in a filename */
  83. s = cat+1;
  84. if (*s) {
  85. /* Quietly drop anything beyond tenths */
  86. char tenths[2]; /* Flawfinder: ignore */
  87. tenths[0] = *s;
  88. tenths[1] = '';
  89. result += atol(tenths);
  90. }
  91. }
  92. /* Finally break out */
  93. break;
  94. default:
  95. /* Invalid */
  96. return 0;
  97. }
  98. return result;
  99. }
  100. void TimeOutput(unsigned long value, char *buffer, INT32 nLocaleID)
  101. {
  102.     TimeOutputEx(value, buffer, 128, nLocaleID);
  103. }
  104. void TimeOutputEx(unsigned long value, char *buffer, UINT32 maxlen, INT32 nLocaleID) {
  105. unsigned long days, hours, minutes, seconds;
  106. char s[32]; /* Flawfinder: ignore */
  107. UINT32 currlen = 0;
  108. UINT32 seglen = 0;
  109. buffer[0] = '';
  110. days = value / 864000L;
  111. value -= days * 864000L;
  112. if (days) {
  113. seglen = SafeSprintf(s, sizeof(s), "%02d:", (int)days);
  114. if (seglen + currlen > maxlen)
  115.     return;
  116.                 strcat(buffer, s); /* Flawfinder: ignore */
  117. currlen += seglen;
  118. }
  119. hours = value / 36000L;
  120. value -= hours * 36000L;
  121. if (hours || days) {
  122. seglen = SafeSprintf(s, sizeof(s), "%02d:", (int)hours);
  123. // the minus 1 accounts for the separator
  124. if ((seglen - 1) + currlen > maxlen)
  125. {
  126.     buffer[currlen - 1] = 0;
  127.     return;
  128. }
  129.                 strcat(buffer, s); /* Flawfinder: ignore */
  130. currlen += seglen;
  131. }
  132. minutes = value / 600L;
  133. value -= minutes * 600L;
  134. seglen = SafeSprintf(s, sizeof(s), "%02d:", (int)minutes);
  135. // the minus 1 accounts for the separator
  136. if ((seglen - 1) + currlen > maxlen)
  137. {
  138.     buffer[currlen - 1] = 0;
  139.     return;
  140. }
  141.         strcat(buffer, s); /* Flawfinder: ignore */
  142. currlen += seglen;
  143. seconds = value / 10L;
  144. value -= seconds * 10L;
  145. seglen = SafeSprintf(s, sizeof(s), "%02d", (int)seconds);
  146. s[seglen++] = HXGetLocalDecimalPoint(nLocaleID);
  147.   s[seglen] = 0;
  148. // the minus 1 accounts for the separator
  149. if ((seglen - 1) + currlen > maxlen)
  150. {
  151.     buffer[currlen - 1] = 0;
  152.     return;
  153. }
  154.         strcat(buffer, s); /* Flawfinder: ignore */
  155. currlen += seglen;
  156. seglen = SafeSprintf(s, sizeof(s), "%d", (int)value);
  157. if (seglen + currlen > maxlen)
  158. {
  159.     buffer[currlen - 1] = 0;
  160.     return;
  161. }
  162. currlen += seglen;
  163.         strcat(buffer, s); /* Flawfinder: ignore */
  164. }