NtpTime.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const NtpTime_cxx_Version =
  51.     "$Id: NtpTime.cxx,v 1.17 2001/02/27 00:55:25 larryt Exp $";
  52. #include "NtpTime.hxx"
  53. #include <stdio.h>
  54. #include <iostream>
  55. #include <sys/types.h>
  56. #include "vtypes.h"
  57. #ifndef __vxworks
  58. #include <sys/time.h>
  59. #endif
  60. #include "VTime.hxx"
  61. #include <unistd.h>
  62. #include <assert.h>
  63. void NtpTime::print()
  64. {
  65.     fprintf (stderr, "%u.%010u", seconds, fractional);
  66. }
  67. // 2^32 = 4294,967,296
  68. NtpTime operator+( const NtpTime& lhs , const unsigned int msec)
  69. {
  70.     NtpTime result (0, 0);
  71.     u_int32_t delayFrac = (msec % 1000) * 4294967;
  72.     result.seconds = lhs.seconds + (msec / 1000);
  73.     result.fractional = lhs.fractional + delayFrac;
  74.     if ( (lhs.fractional > result.fractional) && (delayFrac > result.fractional) )
  75.         result.seconds++;
  76.     return result;
  77. }
  78. NtpTime operator-( const NtpTime& lhs , const unsigned int msec)
  79. {
  80.     NtpTime result (0, 0);
  81.     u_int32_t delayFrac = (msec % 1000) * 4294967;
  82.     if (lhs.seconds > (msec / 1000))
  83.     {
  84.         result.seconds = lhs.seconds - ( msec / 1000 );
  85.         result.fractional = lhs.fractional - delayFrac;
  86.         if ( delayFrac > lhs.fractional )
  87.         {
  88.             result.seconds--;
  89.         }
  90.     }
  91.     else
  92.     {
  93.         result.seconds = 0;
  94.         if ( delayFrac >= lhs.fractional )
  95.         {
  96.             result.fractional = 0;
  97.         }
  98.         else
  99.         {
  100.             result.fractional = lhs.fractional - delayFrac;
  101.         }
  102.     }
  103.     return result;
  104. }
  105. // It returns the difference in milisec between lhs and rhs
  106. int operator-( const NtpTime& lhs , const NtpTime& rhs )
  107. {
  108.     NtpTime result;
  109.     unsigned int msResult;
  110.     if (lhs == rhs) return 0;
  111.     if (lhs > rhs)
  112.     {
  113.         result.seconds = lhs.seconds - rhs.seconds;
  114.         if (lhs.fractional > rhs.fractional)
  115.         {
  116.             result.fractional = lhs.fractional - rhs.fractional;
  117.         }
  118.         else if (lhs.fractional < rhs.fractional)
  119.         {
  120.             result.seconds--;
  121.             result.fractional = lhs.fractional - rhs.fractional;
  122.         }
  123.         else
  124.         {
  125.             result.fractional = 0;
  126.         }
  127.         msResult = (result.getSeconds() * 1000)
  128.                    + (result.getFractional() / 4294967);
  129.     }
  130.     else
  131.     {
  132.         result.seconds = rhs.seconds - lhs.seconds;
  133.         if (rhs.fractional >= lhs.fractional)
  134.         {
  135.             result.fractional = rhs.fractional - lhs.fractional;
  136.         }
  137.         else if (rhs.fractional < lhs.fractional)
  138.         {
  139.             result.seconds--;
  140.             result.fractional = rhs.fractional - lhs.fractional;
  141.         }
  142.         else
  143.         {
  144.             result.fractional = 0;
  145.         }
  146.         msResult = -( (result.getSeconds() * 1000)
  147.                       + (result.getFractional() / 4294967));
  148.     }
  149.     return msResult;
  150. }
  151. bool operator==( const NtpTime& rhs , const NtpTime& lhs )
  152. {
  153.     return (rhs.seconds == lhs.seconds) ?
  154.            (rhs.fractional == lhs.fractional) : (rhs.seconds == lhs.seconds);
  155. }
  156. bool operator<( const NtpTime& rhs , const NtpTime& lhs )
  157. {
  158.     return (rhs.seconds == lhs.seconds) ?
  159.            (rhs.fractional < lhs.fractional) : (rhs.seconds < lhs.seconds);
  160. }
  161. bool operator>( const NtpTime& rhs , const NtpTime& lhs )
  162. {
  163.     return (rhs.seconds == lhs.seconds) ?
  164.            (rhs.fractional > lhs.fractional) : (rhs.seconds > lhs.seconds);
  165. }
  166. NtpTime getNtpTime()
  167. {
  168.     struct timeval now;
  169.     int err = gettimeofday(&now, NULL);
  170.     assert( !err );
  171.     NtpTime result ( now.tv_sec, now.tv_usec*4294);
  172.     return result;
  173. }