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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: timeval.h,v 1.5.32.3 2004/07/09 01:48:01 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. #ifndef _TIMEVAL_H_
  50. #define _TIMEVAL_H_
  51. #include "hxtime.h"
  52. #define MILLISECOND                     1000
  53. #define SECOND                          1000000
  54. /*
  55.  * Because of conflicts between the use of winsock.h and winsock2.h
  56.  * we cannot derive the struct Timeval from struct timeval on WINDOWS
  57.  * platforms
  58.  */
  59. class Timeval: public HXTime {
  60. static void i2t(tv_sec_t& sec, tv_usec_t& usec, 
  61. long32 s, long32 us);
  62. public:
  63. Timeval(){}
  64. Timeval(long32 sec, long32 usec);
  65. Timeval(long32 usec);
  66. #if __MWERKS__ && !defined(_CARBON)
  67. // I added this to make Timeval t = sendperiod compile
  68. Timeval(time_t sec);
  69. #endif
  70. #if !(defined _UNIX && (defined _LONG_IS_64 || defined _VXWORKS))
  71. Timeval(int sec, int usec);
  72. Timeval(int usec);
  73. #endif
  74. Timeval(float t);
  75. Timeval(double t);
  76. Timeval& operator +=(const int b);
  77. Timeval& operator -=(const int b);
  78. Timeval& operator +=(const Timeval& b);
  79. Timeval& operator -=(const Timeval& b);
  80. };
  81. #if __MWERKS__ && !defined(_CARBON)
  82. // I added this to make Timeval t = sendperiod compile
  83. inline Timeval::Timeval(time_t t) {
  84. tv_sec = (tv_sec_t)t;
  85. tv_usec = (tv_usec_t)0;
  86. }
  87. #endif
  88. inline Timeval::Timeval(float t) {
  89. tv_sec = (tv_sec_t)t;
  90. tv_usec = (tv_usec_t)((t-tv_sec)*SECOND);
  91. }
  92. inline Timeval::Timeval(double t) {
  93. tv_sec = (tv_sec_t)t;
  94. tv_usec = (tv_usec_t)((t-tv_sec)*SECOND);
  95. }
  96. inline void Timeval::i2t(tv_sec_t& sec, tv_usec_t& usec,
  97.                          long32 s, long32 us) {
  98. sec = s;
  99. if (us >= SECOND) {
  100. sec +=  us / SECOND;
  101. usec = us % SECOND;
  102. } else {
  103. usec = us;
  104. }
  105. }
  106. inline Timeval::Timeval(long32 s, long32 us) {
  107. Timeval::i2t((tv_sec_t&)tv_sec, (tv_usec_t&)tv_usec, s, us);
  108. }
  109. inline Timeval::Timeval(long32 us) {
  110. Timeval::i2t((tv_sec_t&)tv_sec, (tv_usec_t&)tv_usec, 0L, us);
  111. }
  112. #if !(defined _UNIX && (defined _LONG_IS_64 || defined _VXWORKS))
  113. inline Timeval::Timeval(int s, int us) {
  114. Timeval::i2t((tv_sec_t&)tv_sec, (tv_usec_t&)tv_usec, s, us);
  115. }
  116. inline Timeval::Timeval(int us) {
  117. Timeval::i2t((tv_sec_t&)tv_sec, (tv_usec_t&)tv_usec, 0L, us);
  118. }
  119. #endif
  120. inline Timeval& Timeval::operator +=(const int b) {
  121. tv_usec += b;
  122. if (tv_usec >= SECOND) {
  123. tv_sec += tv_usec / SECOND;
  124. tv_usec %= SECOND;
  125. }
  126. return *this;
  127. }
  128. inline Timeval& Timeval::operator -=(const int b) {
  129. tv_usec -= b;
  130. if (tv_usec < 0) {
  131. tv_sec += tv_usec / SECOND;
  132. tv_usec %= SECOND;
  133. if (tv_usec < 0) {
  134. tv_sec--;
  135. tv_usec += SECOND;
  136. }
  137. }
  138. return *this;
  139. }
  140. /*
  141.  * The following functions don't always work for negative 'a' or 'b'
  142.  */
  143. inline Timeval& Timeval::operator +=(const Timeval& b) {
  144. tv_sec += b.tv_sec;
  145. tv_usec += b.tv_usec;
  146. while (tv_usec >= SECOND) {
  147. tv_sec++;
  148. tv_usec -= SECOND;
  149. }
  150. return *this;
  151. }
  152. inline Timeval& Timeval::operator -=(const Timeval& b) {
  153. #ifdef __hpux
  154. // tv_sec is u_long on HPUX
  155. // HP just has to do everything different doesn't it? :-(
  156. if (tv_sec < b.tv_sec)
  157. {
  158.     tv_sec = 0;
  159.     tv_usec = 0;
  160.     return *this;
  161. }
  162. if ((tv_sec == b.tv_sec) && (tv_usec < b.tv_usec))
  163. {
  164.     tv_sec = 0;
  165.     tv_usec = 0;
  166.     return *this;
  167. }
  168. #endif
  169. tv_sec -= b.tv_sec;
  170. tv_usec -= b.tv_usec;
  171. while (tv_usec < 0) {
  172. tv_sec--;
  173. tv_usec += SECOND;
  174. }
  175. return *this;
  176. }
  177. inline Timeval operator +(const Timeval& a, const Timeval& b) {
  178. Timeval c;
  179. c.tv_sec = a.tv_sec + b.tv_sec;
  180. c.tv_usec = a.tv_usec + b.tv_usec;
  181. while (c.tv_usec >= SECOND) {
  182. c.tv_sec++;
  183. c.tv_usec -= SECOND;
  184. }
  185. return c;
  186. }
  187. inline Timeval operator -(const Timeval& a, const Timeval& b) {
  188. Timeval c;
  189. #ifdef __hpux
  190. // tv_sec is u_long on HPUX
  191. // HP just has to do everything different doesn't it? :-(
  192. if (a.tv_sec < b.tv_sec)
  193. return (Timeval(0,0));
  194. if ((a.tv_sec == b.tv_sec) && (a.tv_usec < b.tv_usec))
  195. return (Timeval(0,0));
  196. #endif
  197. c.tv_sec = a.tv_sec - b.tv_sec;
  198. c.tv_usec = a.tv_usec - b.tv_usec;
  199. while (c.tv_usec < 0) {
  200. c.tv_sec--;
  201. c.tv_usec += SECOND;
  202. }
  203. return c;
  204. }
  205. inline int operator ==(const Timeval& a, const Timeval& b) {
  206. return a.tv_usec == b.tv_usec && a.tv_sec == b.tv_sec;
  207. }
  208. inline int operator !=(const Timeval& a, const Timeval& b) {
  209. return a.tv_usec != b.tv_usec || a.tv_sec != b.tv_sec;
  210. }
  211. inline int operator <=(const Timeval& a, const Timeval& b) {
  212. return a.tv_sec < b.tv_sec ||
  213.        (a.tv_sec == b.tv_sec && a.tv_usec <= b.tv_usec);
  214. }
  215. inline int operator >=(const Timeval& a, const Timeval& b) {
  216. return a.tv_sec > b.tv_sec ||
  217.        (a.tv_sec == b.tv_sec && a.tv_usec >= b.tv_usec);
  218. }
  219. inline int operator <(const Timeval& a, const Timeval& b) {
  220. return a.tv_sec < b.tv_sec ||
  221.        (a.tv_sec == b.tv_sec && a.tv_usec < b.tv_usec);
  222. }
  223. inline int operator >(const Timeval& a, const Timeval& b) {
  224. return a.tv_sec > b.tv_sec ||
  225.        (a.tv_sec == b.tv_sec && a.tv_usec > b.tv_usec);
  226. }
  227. #endif/*_TIMEVAL_H_*/