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

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. /*
  34.  * CMS array functions.
  35.  *
  36.  * $Id: cmsarray.c,v 1.3 2000/06/21 18:12:02 chrisk%netscape.com Exp $
  37.  */
  38. #include "cmslocal.h"
  39. #include "secerr.h"
  40. /*
  41.  * ARRAY FUNCTIONS
  42.  *
  43.  * In NSS, arrays are rather primitive arrays of pointers.
  44.  * Makes it easy to walk the array, but hard to count elements
  45.  * and manage the storage.
  46.  *
  47.  * This is a feeble attempt to encapsulate the functionality
  48.  * and get rid of hundreds of lines of similar code
  49.  */
  50. /*
  51.  * NSS_CMSArray_Alloc - allocate an array in an arena
  52.  *
  53.  * This allocates space for the array of pointers
  54.  */
  55. void **
  56. NSS_CMSArray_Alloc(PRArenaPool *poolp, int n)
  57. {
  58.     return (void **)PORT_ArenaZAlloc(poolp, n * sizeof(void *));
  59. }
  60. /*
  61.  * NSS_CMSArray_Add - add an element to the end of an array
  62.  *
  63.  * The array of pointers is either created (if array was empty before) or grown.
  64.  */
  65. SECStatus
  66. NSS_CMSArray_Add(PRArenaPool *poolp, void ***array, void *obj)
  67. {
  68.     void **p;
  69.     int n;
  70.     void **dest;
  71.     PORT_Assert(array != NULL);
  72.     if (array == NULL)
  73. return SECFailure;
  74.     if (*array == NULL) {
  75. dest = (void **)PORT_ArenaAlloc(poolp, 2 * sizeof(void *));
  76. n = 0;
  77.     } else {
  78. n = 0; p = *array;
  79. while (*p++)
  80.     n++;
  81. dest = (void **)PORT_ArenaGrow (poolp, 
  82.       *array,
  83.       (n + 1) * sizeof(void *),
  84.       (n + 2) * sizeof(void *));
  85.     }
  86.     dest[n] = obj;
  87.     dest[n+1] = NULL;
  88.     *array = dest;
  89.     return SECSuccess;
  90. }
  91. /*
  92.  * NSS_CMSArray_IsEmpty - check if array is empty
  93.  */
  94. PRBool
  95. NSS_CMSArray_IsEmpty(void **array)
  96. {
  97.     return (array == NULL || array[0] == NULL);
  98. }
  99. /*
  100.  * NSS_CMSArray_Count - count number of elements in array
  101.  */
  102. int
  103. NSS_CMSArray_Count(void **array)
  104. {
  105.     int n = 0;
  106.     if (array == NULL)
  107. return 0;
  108.     while (*array++ != NULL)
  109. n++;
  110.     return n;
  111. }
  112. /*
  113.  * NSS_CMSArray_Sort - sort an array in place
  114.  *
  115.  * If "secondary" or "tertiary are not NULL, it must be arrays with the same
  116.  *  number of elements as "primary". The same reordering will get applied to it.
  117.  *
  118.  * "compare" is a function that returns 
  119.  *  < 0 when the first element is less than the second
  120.  *  = 0 when the first element is equal to the second
  121.  *  > 0 when the first element is greater than the second
  122.  * to acheive ascending ordering.
  123.  */
  124. void
  125. NSS_CMSArray_Sort(void **primary, int (*compare)(void *,void *), void **secondary, void **tertiary)
  126. {
  127.     int n, i, limit, lastxchg;
  128.     void *tmp;
  129.     n = NSS_CMSArray_Count(primary);
  130.     PORT_Assert(secondary == NULL || NSS_CMSArray_Count(secondary) == n);
  131.     PORT_Assert(tertiary == NULL || NSS_CMSArray_Count(tertiary) == n);
  132.     
  133.     if (n <= 1) /* ordering is fine */
  134. return;
  135.     
  136.     /* yes, ladies and gentlemen, it's BUBBLE SORT TIME! */
  137.     limit = n - 1;
  138.     while (1) {
  139. lastxchg = 0;
  140. for (i = 0; i < limit; i++) {
  141.     if ((*compare)(primary[i], primary[i+1]) > 0) {
  142. /* exchange the neighbours */
  143. tmp = primary[i+1];
  144. primary[i+1] = primary[i];
  145. primary[i] = tmp;
  146. if (secondary) { /* secondary array? */
  147.     tmp = secondary[i+1]; /* exchange there as well */
  148.     secondary[i+1] = secondary[i];
  149.     secondary[i] = tmp;
  150. }
  151. if (tertiary) { /* tertiary array? */
  152.     tmp = tertiary[i+1]; /* exchange there as well */
  153.     tertiary[i+1] = tertiary[i];
  154.     tertiary[i] = tmp;
  155. }
  156. lastxchg = i+1; /* index of the last element bubbled up */
  157.     }
  158. }
  159. if (lastxchg == 0) /* no exchanges, so array is sorted */
  160.     break; /* we're done */
  161. limit = lastxchg; /* array is sorted up to [limit] */
  162.     }
  163. }
  164. #if 0
  165. /* array iterator stuff... not used */
  166. typedef void **NSSCMSArrayIterator;
  167. /* iterator */
  168. NSSCMSArrayIterator
  169. NSS_CMSArray_First(void **array)
  170. {
  171.     if (array == NULL || array[0] == NULL)
  172. return NULL;
  173.     return (NSSCMSArrayIterator)&(array[0]);
  174. }
  175. void *
  176. NSS_CMSArray_Obj(NSSCMSArrayIterator iter)
  177. {
  178.     void **p = (void **)iter;
  179.     return *iter; /* which is NULL if we are at the end of the array */
  180. }
  181. NSSCMSArrayIterator
  182. NSS_CMSArray_Next(NSSCMSArrayIterator iter)
  183. {
  184.     void **p = (void **)iter;
  185.     return (NSSCMSArrayIterator)(p + 1);
  186. }
  187. #endif