nptime.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: nptime.cpp,v 1.6.28.3 2004/07/09 01:48:16 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "safestring.h"
  50. #include "hlxclib/stdlib.h"
  51. #include "hxtypes.h"
  52. #include "hxstring.h"
  53. #include "hxtime.h"
  54. #include "nptime.h"
  55. #ifdef _DEBUG
  56. #undef HX_THIS_FILE
  57. static const char HX_THIS_FILE[] = __FILE__;
  58. #endif
  59. const INT32 USECS_PER_SEC = 1000000;
  60. NPTime::NPTime()
  61. {
  62.     // default to now
  63.     HXTime now;
  64.     gettimeofday(&now, 0);
  65.     m_lSecond = now.tv_sec;
  66.     m_lMicroSecond = now.tv_usec; 
  67. }
  68. NPTime::NPTime(INT32 sec, INT32 uSec):
  69.     m_lSecond(sec),
  70.     m_lMicroSecond(uSec)
  71. {
  72. }
  73. NPTime::NPTime(INT32 mSec)
  74. {
  75.     fromMSec(mSec);
  76. }
  77. NPTime::NPTime(const char* pTimeString)
  78. {
  79.     fromString(pTimeString);
  80. }
  81. NPTime::NPTime(const char* pTimeString, BOOL bAllow_h_min_s_ms_units,
  82.        BOOL& bSucceeded)
  83. {
  84.     bSucceeded = TRUE;
  85.     if (!pTimeString)
  86.     {
  87. bSucceeded = FALSE;
  88.     }
  89.     else if(strchr(pTimeString, ':'))
  90.     {
  91. fromString(pTimeString);
  92.     }
  93.     // /Make sure it starts with a number:
  94.     else if ('.' == *pTimeString  ||
  95.     ('0' <= *pTimeString  &&  '9' >= *pTimeString))
  96.     {
  97. // /Try h|min|s|ms, e.g., "23min" or "55s", where "s" is the default
  98. // if there is nothing after the number:
  99. m_lSecond = m_lMicroSecond = 0;
  100. char* pEndPtr = 0;
  101. double dVal = strtod(pTimeString, &pEndPtr);
  102. UINT32 ulTimeValue = 0;
  103. // /NOTE: default is seconds, so "23s" and "23" are the same:
  104. if (!strlen(pEndPtr))
  105. {
  106.     ulTimeValue = (UINT32)(dVal * 1000.0);
  107. }
  108. else if (bAllow_h_min_s_ms_units)
  109. {
  110.     if(strcmp(pEndPtr, "h") == 0)
  111.     {
  112. ulTimeValue = (UINT32)(dVal * 60.0 * 60.0 * 1000.0);
  113.     }
  114.     else if(strcmp(pEndPtr, "min") == 0)
  115.     {
  116. ulTimeValue = (UINT32)(dVal * 60.0 * 1000.0);
  117.     }
  118.     else if(strcmp(pEndPtr, "s") == 0)
  119.     {
  120. ulTimeValue = (UINT32)(dVal * 1000.0);
  121.     }
  122.     else if(strcmp(pEndPtr, "ms") == 0)
  123.     {
  124. ulTimeValue = (UINT32)(dVal);
  125.     }
  126.     // /else something other than "h", "min", "s", "ms", or ""
  127.     // was specified:
  128.     else
  129.     {
  130. bSucceeded = FALSE;
  131.     }
  132. }
  133. if (bSucceeded)
  134. {
  135.     m_lSecond = ulTimeValue / 1000;
  136.     m_lMicroSecond = (ulTimeValue % 1000) * 1000;
  137. }
  138.     }
  139.     else
  140.     {
  141. bSucceeded = FALSE;
  142.     }
  143. }
  144. NPTime::NPTime(const NPTime& lhs)
  145. {
  146.     m_lSecond = lhs.m_lSecond;
  147.     m_lMicroSecond = lhs.m_lMicroSecond;
  148. }
  149. NPTime&
  150. NPTime::operator=(const NPTime& lhs)
  151. {
  152.     m_lSecond = lhs.m_lSecond;
  153.     m_lMicroSecond = lhs.m_lMicroSecond;
  154.     return *this;
  155. }
  156. void
  157. NPTime::normalize()
  158. {
  159.     while(m_lMicroSecond < 0)
  160.     {
  161. m_lSecond--;
  162. m_lMicroSecond += USECS_PER_SEC;
  163.     }
  164.     while(m_lMicroSecond >= USECS_PER_SEC)
  165.     {
  166. m_lSecond++;
  167. m_lMicroSecond -= USECS_PER_SEC;
  168.     }
  169. }
  170. INT32
  171. NPTime::compare(const NPTime& lhs) const
  172. {
  173.     // I'm sure there's a better way to do this...
  174.     if(m_lSecond > lhs.m_lSecond)
  175.     {
  176. return 1;
  177.     }
  178.     else if(m_lSecond == lhs.m_lSecond)
  179.     {
  180. return m_lMicroSecond - lhs.m_lMicroSecond;
  181.     }
  182.     return -1;
  183. }
  184. INT32
  185. NPTime::toMSec()
  186. {
  187.     // no checking for overflow
  188.     return (m_lSecond * 1000) + (m_lMicroSecond / 1000);
  189. }
  190. void
  191. NPTime::fromMSec(INT32 mSec)
  192. {
  193.     m_lSecond = mSec / 1000;
  194.     m_lMicroSecond = (mSec % 1000) * 1000;
  195.     normalize();
  196. }
  197. const char*
  198. NPTime::toString()
  199. {
  200.     char strBuf[80]; /* Flawfinder: ignore */
  201.     if(m_lMicroSecond > 0)
  202.     {
  203.         HX_ASSERT(m_lMicroSecond < USECS_PER_SEC);
  204.         SafeSprintf(strBuf, sizeof(strBuf), "%ld.%06d", m_lSecond, m_lMicroSecond);
  205.     }
  206.     else
  207.     {
  208. SafeSprintf(strBuf, sizeof(strBuf), "%ld", m_lSecond);
  209.     }
  210.     m_asString = strBuf;
  211.     return m_asString;
  212. }
  213. void
  214. NPTime::fromString(const char* pTimeString)
  215. {
  216.     // format is [dd:[hh:[mm:]]]ssss[.uuuuu]
  217.     double placeholder[4];
  218.     char* pTmp = new char[strlen(pTimeString)+1];
  219.     strcpy(pTmp, pTimeString); /* Flawfinder: ignore */
  220.     char* pTok = strtok(pTmp, ":");
  221.     int idx = 0;
  222.     if (!pTok)
  223.     {
  224. m_lSecond = 0;
  225. m_lMicroSecond = 0;
  226.     }
  227.     
  228.     while (pTok && (idx < 4))
  229.     {
  230. placeholder[idx++] = strtod(pTok, 0);
  231. pTok = strtok(NULL, ":");
  232.     }
  233.     if (pTok != NULL)
  234.     {
  235. m_lSecond = 0;
  236. m_lMicroSecond = 0;
  237.     }
  238.     else if (idx == 1)
  239.     {
  240. m_lSecond = (UINT32)placeholder[0];
  241. m_lMicroSecond = (UINT32)((placeholder[0] - (double)m_lSecond) *
  242.     USECS_PER_SEC);
  243.     }
  244.     else if (idx == 2)
  245.     {
  246. m_lSecond = (UINT32)placeholder[1];
  247. m_lMicroSecond = (UINT32)((placeholder[1] - (double)m_lSecond) *
  248.     USECS_PER_SEC);
  249. m_lSecond += (UINT32)(placeholder[0] * 60.0);
  250.     }
  251.     else if (idx == 3)
  252.     {
  253. m_lSecond = (UINT32)placeholder[2];
  254. m_lMicroSecond = (UINT32)((placeholder[2] - (double)m_lSecond) *
  255.     USECS_PER_SEC);
  256. m_lSecond += (UINT32)(placeholder[1] * 60.0);
  257. m_lSecond += (UINT32)(placeholder[0] * (60.0 * 60.0));
  258.     }
  259.     else if (idx == 4)
  260.     {
  261. m_lSecond = (UINT32)placeholder[3];
  262. m_lMicroSecond = (UINT32)((placeholder[3] - (double)m_lSecond) *
  263.     USECS_PER_SEC);
  264. m_lSecond += (UINT32)(placeholder[2] * 60.0);
  265. m_lSecond += (UINT32)(placeholder[1] * (60.0 * 60.0));
  266. m_lSecond += (UINT32)(placeholder[0] * ((60.0 * 60.0) * 24.0));
  267.     }
  268.     delete[] pTmp;
  269.     normalize();
  270. }
  271. NPTime::operator const char*()
  272. {
  273.     return toString();
  274. }
  275. NPTime::operator UINT32()
  276. {
  277.     return toMSec();
  278. }
  279. NPTime&
  280. NPTime::operator+=(const NPTime& lhs)
  281. {
  282.     m_lSecond += lhs.m_lSecond;
  283.     m_lMicroSecond += lhs.m_lSecond;
  284.     normalize();
  285.     return *this;
  286. NPTime&
  287. NPTime::operator-=(const NPTime& lhs)
  288. {
  289.     m_lSecond -= lhs.m_lSecond;
  290.     m_lMicroSecond -= lhs.m_lMicroSecond;
  291.     normalize();
  292.     return *this;
  293. }
  294. NPTime
  295. NPTime::operator+(const NPTime& lhs)
  296. {
  297.     NPTime tmpTime = *this;
  298.     tmpTime += lhs;
  299.     return tmpTime;
  300. }
  301. NPTime
  302. NPTime::operator-(const NPTime& lhs)
  303. {
  304.     NPTime tmpTime = *this;
  305.     tmpTime -= lhs;
  306.     return tmpTime;
  307. }