whatnspr.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* 
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifdef DEBUG
  34. static const char CVS_ID[] = "@(#) $RCSfile: whatnspr.c,v $ $Revision: 1.1 $ $Date: 2000/05/17 20:19:24 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #ifndef BASE_H
  37. #include "base.h"
  38. #endif /* BASE_H */
  39. /*
  40.  * This file isolates us from differences in NSPR versions.
  41.  * We have to detect the library with which we're running at
  42.  * runtime, and switch behaviours there.  This lets us do
  43.  * stuff like load cryptoki modules in Communicator.
  44.  *
  45.  * Hey, it's the PORT layer all over again!
  46.  */
  47. static int whatnspr = 0;
  48. static int
  49. set_whatnspr
  50. (
  51.   void
  52. )
  53. {
  54.   /*
  55.    * The only runtime difference I could find was the
  56.    * return value of PR_dtoa.  We can't just look for
  57.    * a symbol in NSPR >=2, because it'll always be
  58.    * found (because we compile against NSPR >=2).
  59.    * Maybe we could look for a symbol merely in NSPR 1?
  60.    *
  61.    */
  62.   char buffer[64];
  63.   int decpt = 0, sign = 0;
  64.   char *rve = (char *)0;
  65.   /* extern int PR_dtoa(double, int, int, int *, int *, char **, char *, int); */
  66.   int r = (int)PR_dtoa((double)1.0, 0, 5, &decpt, &sign, &rve, 
  67.                        buffer, sizeof(buffer));
  68.   switch( r ) {
  69.   case 0:
  70.   case -1:
  71.     whatnspr = 2;
  72.     /*
  73.      * If we needed to, *now* we could look up "libVersionPoint"
  74.      * and get more data there.. except all current NSPR's (up
  75.      * to NSPR 4.x at time of writing) still say 2 in their
  76.      * version structure.
  77.      */
  78.     break;
  79.   default:
  80.     whatnspr = 1;
  81.     break;
  82.   }
  83.   return whatnspr;
  84. }
  85. #define WHATNSPR (whatnspr ? whatnspr : set_whatnspr())
  86. NSS_IMPLEMENT PRStatus
  87. nss_NewThreadPrivateIndex
  88. (
  89.   PRUintn *ip
  90. )
  91. {
  92.   switch( WHATNSPR ) {
  93.   case 1:
  94.     {
  95.       PRLibrary *l = (PRLibrary *)0;
  96.       void *f = PR_FindSymbolAndLibrary("PR_NewThreadPrivateID", &l);
  97.       typedef PRInt32 (*ntpt)(void);
  98.       ntpt ntp = (ntpt) f;
  99.       PR_ASSERT((void *)0 != f);
  100.       *ip = ntp();
  101.       return PR_SUCCESS;
  102.     }
  103.   case 2:
  104.   default:
  105.     return PR_NewThreadPrivateIndex(ip, NULL);
  106.   }
  107. }
  108. NSS_IMPLEMENT void *
  109. nss_GetThreadPrivate
  110. (
  111.   PRUintn i
  112. )
  113. {
  114.   switch( WHATNSPR ) {
  115.   case 1:
  116.     {
  117.       PRLibrary *l = (PRLibrary *)0;
  118.       void *f = PR_FindSymbolAndLibrary("PR_GetThreadPrivate", &l);
  119.       typedef void *(*gtpt)(PRThread *, PRInt32);
  120.       gtpt gtp = (gtpt) f;
  121.       PR_ASSERT((void *)0 != f);
  122.       return gtp(PR_CurrentThread(), i);
  123.     }
  124.   case 2:
  125.   default:
  126.     return PR_GetThreadPrivate(i);
  127.   }
  128. }
  129. NSS_IMPLEMENT void
  130. nss_SetThreadPrivate
  131. (
  132.   PRUintn i,
  133.   void *v
  134. )
  135. {
  136.   switch( WHATNSPR ) {
  137.   case 1:
  138.     {
  139.       PRLibrary *l = (PRLibrary *)0;
  140.       void *f = PR_FindSymbolAndLibrary("PR_SetThreadPrivate", &l);
  141.       typedef PRStatus (*stpt)(PRThread *, PRInt32, void *);
  142.       stpt stp = (stpt) f;
  143.       PR_ASSERT((void *)0 != f);
  144.       (void)stp(PR_CurrentThread(), i, v);
  145.       return;
  146.     }
  147.   case 2:
  148.   default:
  149.     (void)PR_SetThreadPrivate(i, v);
  150.     return;
  151.   }
  152. }