ntptime.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

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/stdio.h"
  36. #include "hlxclib/stdlib.h"
  37. #include "hxtypes.h"
  38. #include "hxstring.h"
  39. #include "hxtime.h"
  40. #include "timeval.h"
  41. #include "ntptime.h"
  42. #ifdef _DEBUG
  43. #undef HX_THIS_FILE
  44. static const char HX_THIS_FILE[] = __FILE__;
  45. #endif
  46. NTPTime::NTPTime()
  47. {
  48.     // default to now
  49.     Timeval now;
  50.     gettimeofday(&now, 0);
  51.     fromTimeval(now);
  52. }
  53. NTPTime::NTPTime(UINT32 ulSec, UINT32 ulFrac):
  54.     m_ulSecond(ulSec),
  55.     m_ulFraction(ulFrac)
  56. {
  57. }
  58. NTPTime::NTPTime(UINT32 mSec)
  59. {
  60.     fromMSec(mSec);
  61. }
  62. NTPTime::NTPTime(Timeval tv)
  63. {
  64.     fromTimeval(tv);
  65. }
  66. NTPTime::NTPTime(const NTPTime& lhs)
  67. {
  68.     m_ulSecond = lhs.m_ulSecond;
  69.     m_ulFraction = lhs.m_ulFraction;
  70. }
  71. NTPTime&
  72. NTPTime::operator=(const NTPTime& lhs)
  73. {
  74.     m_ulSecond = lhs.m_ulSecond;
  75.     m_ulFraction = lhs.m_ulFraction;
  76.     return *this;
  77. }
  78. INT32
  79. NTPTime::compare(const NTPTime& lhs) const
  80. {
  81.     // I'm sure there's a better way to do this...
  82.     if(m_ulSecond > lhs.m_ulSecond)
  83.     {
  84. return 1;
  85.     }
  86.     else if(m_ulSecond == lhs.m_ulSecond)
  87.     {
  88. return (INT32) ((m_ulFraction >> 1) - (lhs.m_ulFraction >> 1));
  89.     }
  90.     return -1;
  91. }
  92. UINT32
  93. NTPTime::toMSec()
  94. {
  95.     // no checking for overflow
  96.     double ms = (m_ulSecond * 1000.0);
  97.     ms += ((double) m_ulFraction / (double) MAX_UINT32) * 1000.0;
  98.     return (UINT32) ms;
  99. }
  100. void
  101. NTPTime::fromMSec(INT32 mSec)
  102. {
  103.     Timeval tv;
  104.     tv.tv_sec = mSec / 1000;
  105.     tv.tv_usec = (mSec % 1000) * 1000;
  106.     fromTimeval(tv);
  107. }
  108. NTPTime::operator UINT32()
  109. {
  110.     return toMSec();
  111. }
  112. NTPTime&
  113. NTPTime::operator+=(const NTPTime& lhs)
  114. {
  115.     m_ulSecond += lhs.m_ulSecond;
  116.     if ((MAX_UINT32 - m_ulFraction + 1) <= lhs.m_ulFraction)
  117.     {
  118. // No overflow checking
  119. m_ulSecond++;
  120. m_ulFraction = lhs.m_ulFraction - (MAX_UINT32 - m_ulFraction + 1);
  121.     }
  122.     else
  123.     {
  124. m_ulFraction += lhs.m_ulFraction;
  125.     }
  126.     
  127.     return *this;
  128. NTPTime&
  129. NTPTime::operator-=(const NTPTime& lhs)
  130. {
  131.     m_ulSecond -= lhs.m_ulSecond;
  132.     if (m_ulFraction < lhs.m_ulFraction)
  133.     {
  134. // No underflow checking
  135. m_ulSecond--;
  136.     }
  137.     m_ulFraction = m_ulFraction - lhs.m_ulFraction;
  138.     
  139.     return *this;
  140. }
  141. NTPTime
  142. NTPTime::operator+(const NTPTime& lhs)
  143. {
  144.     NTPTime tmpTime(*this);
  145.     tmpTime += lhs;
  146.     return tmpTime;
  147. }
  148. NTPTime
  149. NTPTime::operator-(const NTPTime& lhs)
  150. {
  151.     NTPTime tmpTime(*this);
  152.     tmpTime -= lhs;
  153.     return tmpTime;
  154. }