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

Symbian

开发平台:

Visual C++

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