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

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 "hxtypes.h"
  36. #include "hxtime.h"
  37. #include "hxassert.h"
  38. #include <limits.h>
  39. #ifndef _MAC_MACHO
  40. #include <Timer.h>
  41. #endif
  42. #include <time.h>
  43. #define kMaxMicroSecondComponent ULONG_MAX
  44. #define kLoMicroSecondsPerSecond 1000000
  45. #define kSecondsPerHiMicroSecond ( kMaxMicroSecondComponent / kLoMicroSecondsPerSecond )
  46. #define kLoMicroSecondsRoundOff ( kMaxMicroSecondComponent % kLoMicroSecondsPerSecond )
  47. static BOOL gHasCalculatedReferenceTime = FALSE;
  48. static time_t gReferenceTime;
  49. static UnsignedWide gReferenceMicroSeconds;
  50. int gettimeofday(HXTime* pTime, void* unused)
  51. {
  52. // (?) Warning: Overflow not currently checked.
  53. if ( !gHasCalculatedReferenceTime )
  54. {
  55.      // convert to Windows time ( secs since 1/1/70 )
  56.      struct tm the1970Time = { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  57.      the1970Time.tm_year = 70;
  58.      the1970Time.tm_mday = 1;
  59.      the1970Time.tm_mon  = 0;
  60.      time_t theWinTime = mktime( &the1970Time );
  61.         time_t theMacTime;
  62.         
  63.         UnsignedWide theRefMicroSecs1, theRefMicroSecs2;
  64.         Microseconds( &theRefMicroSecs1 );
  65.         time( &theMacTime ); // mac time in secs since 1/1/00
  66.         Microseconds( &theRefMicroSecs2 );
  67. /* Calculate the average of theRefMicroSecs1 and theRefMicroSecs2
  68.    to correspond with the time calculated with time(). */
  69.      gReferenceTime = theMacTime - theWinTime;
  70.      gReferenceMicroSeconds.lo =     ( theRefMicroSecs1.lo >> 1 ) + ( theRefMicroSecs2.lo >> 1 ) +
  71.      ( ( ( theRefMicroSecs1.lo  & 1 ) + ( theRefMicroSecs2.lo  & 1 ) ) >> 1 );
  72.      gReferenceMicroSeconds.hi =     ( theRefMicroSecs1.hi >> 1 ) + ( theRefMicroSecs2.hi >> 1 ) +
  73.      ( ( ( theRefMicroSecs1.hi  & 1 ) + ( theRefMicroSecs2.hi  & 1 ) ) >> 1 );
  74.     
  75.      pTime->tv_sec  = gReferenceTime;
  76.      pTime->tv_usec = 0;
  77.     
  78.      gHasCalculatedReferenceTime = TRUE;
  79.     }
  80.     else
  81.     {
  82.      UnsignedWide theCurrentMicroSecs, theDifferenceMicroSecs;
  83.      Microseconds( &theCurrentMicroSecs );
  84.      HX_ASSERT(   ( theCurrentMicroSecs.hi >  gReferenceMicroSeconds.hi ) ||
  85.         ( ( theCurrentMicroSecs.hi == gReferenceMicroSeconds.hi ) &&
  86.           ( theCurrentMicroSecs.lo >= gReferenceMicroSeconds.lo ) ) );
  87.     
  88.      // Calculate theDifferenceMicroSecs = theCurrentMicroSecs - gReferenceMicroSeconds;
  89.      BOOL hasLoComponentRolledOver;
  90.      if ( theCurrentMicroSecs.lo >= gReferenceMicroSeconds.lo )
  91.      {
  92.      theDifferenceMicroSecs.lo = theCurrentMicroSecs.lo - gReferenceMicroSeconds.lo;
  93.      hasLoComponentRolledOver = FALSE;
  94.      }
  95.      else
  96.      {
  97.      theDifferenceMicroSecs.lo = kMaxMicroSecondComponent - gReferenceMicroSeconds.lo + theCurrentMicroSecs.lo;
  98.      hasLoComponentRolledOver = TRUE;
  99.      }
  100.      theDifferenceMicroSecs.hi = theCurrentMicroSecs.hi - gReferenceMicroSeconds.hi;
  101.      if ( hasLoComponentRolledOver )
  102.      {
  103.      theDifferenceMicroSecs.hi--;
  104.      }
  105.     
  106.      // Return Seconds and Microseconds portions of theDifferenceMicroSecs added to the gReferenceTime.
  107.      pTime->tv_sec  = gReferenceTime + ( theDifferenceMicroSecs.lo / kLoMicroSecondsPerSecond );
  108.      pTime->tv_usec = theDifferenceMicroSecs.lo % kLoMicroSecondsPerSecond;
  109. if ( theDifferenceMicroSecs.hi > 0 )
  110. {
  111. ULONG32 theMicroSecondRoundOff = theDifferenceMicroSecs.hi * kLoMicroSecondsRoundOff;
  112. pTime->tv_sec  += theDifferenceMicroSecs.hi * kSecondsPerHiMicroSecond;
  113. pTime->tv_sec  += theMicroSecondRoundOff / kLoMicroSecondsPerSecond;
  114. pTime->tv_usec += theMicroSecondRoundOff % kLoMicroSecondsPerSecond;
  115. pTime->tv_sec  += pTime->tv_usec / kLoMicroSecondsPerSecond;
  116. pTime->tv_usec %= kLoMicroSecondsPerSecond;
  117. }
  118.     }
  119. return 0;
  120. }
  121. time_t WinToMacTime(time_t timeT)
  122. {
  123.     // convert to Mac time (secs since 1/1/04)
  124.     struct tm t1970 = {0,0,0,0,0,0,0,0,0};
  125.     t1970.tm_year=70;
  126.     t1970.tm_mday=1;
  127.     t1970.tm_mon=0;
  128.     time_t macT = mktime(&t1970);
  129.     return (macT+timeT);
  130. }
  131. time_t MacToWinTime(time_t timeT)
  132. {
  133.     // convert to Win time (secs since 1/1/70)
  134.     struct tm t1970 = {0,0,0,0,0,0,0,0,0};
  135.     t1970.tm_year=70;
  136.     t1970.tm_mday=1;
  137.     t1970.tm_mon=0;
  138.     time_t winT = mktime(&t1970);
  139.     return (timeT-winT);
  140. }