⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 y2ktmo.c

📁 Netscape NSPR库源码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- *//*  * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ *  * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. *  * The Original Code is the Netscape Portable Runtime (NSPR). *  * The Initial Developer of the Original Code is Netscape * Communications Corporation.  Portions created by Netscape are  * Copyright (C) 1999-2000 Netscape Communications Corporation.  All * Rights Reserved. *  * Contributor(s): *  * Alternatively, the contents of this file may be used under the * terms of the GNU General Public License Version 2 or later (the * "GPL"), in which case the provisions of the GPL are applicable  * instead of those above.  If you wish to allow use of your  * version of this file only under the terms of the GPL and not to * allow others to use your version of this file under the MPL, * indicate your decision by deleting the provisions above and * replace them with the notice and other provisions required by * the GPL.  If you do not delete the provisions above, a recipient * may use your version of this file under either the MPL or the * GPL. *//* * Test: y2ktmo * * Description: *   This test tests the interval time facilities in NSPR for Y2K *   compliance.  All the functions that take a timeout argument *   are tested: PR_Sleep, socket I/O (PR_Accept is taken as a *   representative), PR_Poll, PR_WaitCondVar, PR_Wait, and *   PR_CWait.  A thread of each thread scope (local, global, and *   global bound) is created to call each of these functions. *   The test should be started at the specified number of seconds *   (called the lead time) before a Y2K rollover test date.  The *   timeout values for these threads will span over the rollover *   date by at least the specified number of seconds.  For *   example, if the lead time is 5 seconds, the test should *   be started at time (D - 5), where D is a rollover date, and *   the threads will time out at or after time (D + 5).  The *   timeout values for the threads are spaced one second apart. * *   When a thread times out, it calls PR_IntervalNow() to verify *   that it did wait for the specified time.  In addition, it *   calls a platform-native function to verify the actual elapsed *   time again, to rule out the possibility that PR_IntervalNow() *   is broken.  We allow the actual elapsed time to deviate from *   the specified timeout by a certain tolerance (in milliseconds). */ #include "nspr.h"#include "plgetopt.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#if defined(XP_UNIX)#include <sys/time.h> /* for gettimeofday */#endif#if defined(WIN32)#include <sys/types.h>#include <sys/timeb.h>  /* for _ftime */#endif#define DEFAULT_LEAD_TIME_SECS 5#define DEFAULT_TOLERANCE_MSECS 500static PRBool debug_mode = PR_FALSE;static PRInt32 lead_time_secs = DEFAULT_LEAD_TIME_SECS;static PRInt32 tolerance_msecs = DEFAULT_TOLERANCE_MSECS;static PRIntervalTime start_time;static PRIntervalTime tolerance;#if defined(XP_UNIX)static struct timeval start_time_tv;#endif#if defined(WIN32)static struct _timeb start_time_tb;#endifstatic void SleepThread(void *arg){    PRIntervalTime timeout = (PRIntervalTime) arg;    PRIntervalTime elapsed;#if defined(XP_UNIX) || defined(WIN32)    PRInt32 timeout_msecs = PR_IntervalToMilliseconds(timeout);    PRInt32 elapsed_msecs;#endif#if defined(XP_UNIX)    struct timeval end_time_tv;#endif#if defined(WIN32)    struct _timeb end_time_tb;#endif    if (PR_Sleep(timeout) == PR_FAILURE) {        fprintf(stderr, "PR_Sleep failed\n");        exit(1);    }    elapsed = (PRIntervalTime)(PR_IntervalNow() - start_time);    if (elapsed + tolerance < timeout || elapsed > timeout + tolerance) {        fprintf(stderr, "timeout wrong\n");        exit(1);    }#if defined(XP_UNIX)    gettimeofday(&end_time_tv, NULL);    elapsed_msecs = 1000*(end_time_tv.tv_sec - start_time_tv.tv_sec)            + (end_time_tv.tv_usec - start_time_tv.tv_usec)/1000;#endif#if defined(WIN32)    _ftime(&end_time_tb);    elapsed_msecs = 1000*(end_time_tb.time - start_time_tb.time)            + (end_time_tb.millitm - start_time_tb.millitm);#endif#if defined(XP_UNIX) || defined(WIN32)    if (elapsed_msecs + tolerance_msecs < timeout_msecs            || elapsed_msecs > timeout_msecs + tolerance_msecs) {        fprintf(stderr, "timeout wrong\n");        exit(1);    }#endif    if (debug_mode) {        fprintf(stderr, "Sleep thread (scope %d) done\n",                PR_GetThreadScope(PR_GetCurrentThread()));    }}static void AcceptThread(void *arg){    PRIntervalTime timeout = (PRIntervalTime) arg;    PRIntervalTime elapsed;#if defined(XP_UNIX) || defined(WIN32)    PRInt32 timeout_msecs = PR_IntervalToMilliseconds(timeout);    PRInt32 elapsed_msecs;#endif#if defined(XP_UNIX)    struct timeval end_time_tv;#endif#if defined(WIN32)    struct _timeb end_time_tb;#endif    PRFileDesc *sock;    PRNetAddr addr;    PRFileDesc *accepted;    sock = PR_NewTCPSocket();    if (sock == NULL) {        fprintf(stderr, "PR_NewTCPSocket failed\n");        exit(1);    }    memset(&addr, 0, sizeof(addr));    addr.inet.family = PR_AF_INET;    addr.inet.port = 0;    addr.inet.ip = PR_htonl(PR_INADDR_ANY);    if (PR_Bind(sock, &addr) == PR_FAILURE) {        fprintf(stderr, "PR_Bind failed\n");        exit(1);    }    if (PR_Listen(sock, 5) == PR_FAILURE) {        fprintf(stderr, "PR_Listen failed\n");        exit(1);    }    accepted = PR_Accept(sock, NULL, timeout);    if (accepted != NULL || PR_GetError() != PR_IO_TIMEOUT_ERROR) {        fprintf(stderr, "PR_Accept did not time out\n");        exit(1);    }    elapsed = (PRIntervalTime)(PR_IntervalNow() - start_time);    if (elapsed + tolerance < timeout || elapsed > timeout + tolerance) {        fprintf(stderr, "timeout wrong\n");        exit(1);    }#if defined(XP_UNIX)    gettimeofday(&end_time_tv, NULL);    elapsed_msecs = 1000*(end_time_tv.tv_sec - start_time_tv.tv_sec)            + (end_time_tv.tv_usec - start_time_tv.tv_usec)/1000;#endif#if defined(WIN32)    _ftime(&end_time_tb);    elapsed_msecs = 1000*(end_time_tb.time - start_time_tb.time)            + (end_time_tb.millitm - start_time_tb.millitm);#endif#if defined(XP_UNIX) || defined(WIN32)    if (elapsed_msecs + tolerance_msecs < timeout_msecs            || elapsed_msecs > timeout_msecs + tolerance_msecs) {        fprintf(stderr, "timeout wrong\n");        exit(1);    }#endif    if (PR_Close(sock) == PR_FAILURE) {        fprintf(stderr, "PR_Close failed\n");        exit(1);    }    if (debug_mode) {        fprintf(stderr, "Accept thread (scope %d) done\n",                PR_GetThreadScope(PR_GetCurrentThread()));    }}static void PollThread(void *arg){    PRIntervalTime timeout = (PRIntervalTime) arg;    PRIntervalTime elapsed;#if defined(XP_UNIX) || defined(WIN32)    PRInt32 timeout_msecs = PR_IntervalToMilliseconds(timeout);    PRInt32 elapsed_msecs;#endif#if defined(XP_UNIX)    struct timeval end_time_tv;#endif#if defined(WIN32)    struct _timeb end_time_tb;#endif    PRFileDesc *sock;    PRNetAddr addr;    PRPollDesc pd;    PRIntn rv;    sock = PR_NewTCPSocket();    if (sock == NULL) {        fprintf(stderr, "PR_NewTCPSocket failed\n");        exit(1);    }    memset(&addr, 0, sizeof(addr));    addr.inet.family = PR_AF_INET;    addr.inet.port = 0;    addr.inet.ip = PR_htonl(PR_INADDR_ANY);    if (PR_Bind(sock, &addr) == PR_FAILURE) {        fprintf(stderr, "PR_Bind failed\n");        exit(1);    }    if (PR_Listen(sock, 5) == PR_FAILURE) {        fprintf(stderr, "PR_Listen failed\n");        exit(1);    }    pd.fd = sock;    pd.in_flags = PR_POLL_READ;    rv = PR_Poll(&pd, 1, timeout);    if (rv != 0) {        fprintf(stderr, "PR_Poll did not time out\n");        exit(1);    }    elapsed = (PRIntervalTime)(PR_IntervalNow() - start_time);    if (elapsed + tolerance < timeout || elapsed > timeout + tolerance) {        fprintf(stderr, "timeout wrong\n");        exit(1);    }#if defined(XP_UNIX)    gettimeofday(&end_time_tv, NULL);    elapsed_msecs = 1000*(end_time_tv.tv_sec - start_time_tv.tv_sec)            + (end_time_tv.tv_usec - start_time_tv.tv_usec)/1000;#endif#if defined(WIN32)    _ftime(&end_time_tb);    elapsed_msecs = 1000*(end_time_tb.time - start_time_tb.time)            + (end_time_tb.millitm - start_time_tb.millitm);#endif#if defined(XP_UNIX) || defined(WIN32)    if (elapsed_msecs + tolerance_msecs < timeout_msecs            || elapsed_msecs > timeout_msecs + tolerance_msecs) {        fprintf(stderr, "timeout wrong\n");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -