home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / Xrm_Quarks.c < prev    next >
C/C++ Source or Header  |  1999-11-02  |  12KB  |  455 lines

  1. /* $XConsortium: Quarks.c /main/42 1996/09/28 16:34:14 rws $ */
  2.  
  3. /***********************************************************
  4. Copyright 1987, 1988, 1990 by Digital Equipment Corporation, Maynard,
  5.  
  6.                         All Rights Reserved
  7.  
  8. Permission to use, copy, modify, and distribute this software and its 
  9. documentation for any purpose and without fee is hereby granted, 
  10. provided that the above copyright notice appear in all copies and that
  11. both that copyright notice and this permission notice appear in 
  12. supporting documentation, and that the name Digital not be
  13. used in advertising or publicity pertaining to distribution of the
  14. software without specific, written prior permission.  
  15.  
  16. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  17. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  18. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  19. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22. SOFTWARE.
  23.  
  24. ******************************************************************/
  25. /*
  26.  
  27. Copyright (c) 1987, 1988, 1990  X Consortium
  28.  
  29. Permission is hereby granted, free of charge, to any person obtaining
  30. a copy of this software and associated documentation files (the
  31. "Software"), to deal in the Software without restriction, including
  32. without limitation the rights to use, copy, modify, merge, publish,
  33. distribute, sublicense, and/or sell copies of the Software, and to
  34. permit persons to whom the Software is furnished to do so, subject to
  35. the following conditions:
  36.  
  37. The above copyright notice and this permission notice shall be included
  38. in all copies or substantial portions of the Software.
  39.  
  40. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  41. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  42. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  43. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  44. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  45. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  46. OTHER DEALINGS IN THE SOFTWARE.
  47.  
  48. Except as contained in this notice, the name of the X Consortium shall
  49. not be used in advertising or otherwise to promote the sale, use or
  50. other dealings in this Software without prior written authorization
  51. from the X Consortium.
  52.  
  53. */
  54.  
  55. #include "Xlib_private.h"
  56. #include <X11/Xresource.h>
  57.  
  58. /* Not cost effective, at least for vanilla MIT clients */
  59. /* #define PERMQ */
  60.  
  61. typedef unsigned long Signature;
  62. typedef unsigned long Entry;
  63. #ifdef PERMQ
  64. typedef unsigned char Bits;
  65. #endif
  66.  
  67. static XrmQuark nextQuark = 1;    /* next available quark number */
  68. static unsigned long quarkMask = 0;
  69. static Entry zero = 0;
  70. static Entry *quarkTable = &zero; /* crock */
  71. static unsigned long quarkRehash;
  72. static XrmString **stringTable = NULL;
  73. #ifdef PERMQ
  74. static Bits **permTable = NULL;
  75. #endif
  76. static XrmQuark nextUniq = -1;    /* next quark from XrmUniqueQuark */
  77.  
  78. #define QUANTUMSHIFT    8
  79. #define QUANTUMMASK    ((1 << QUANTUMSHIFT) - 1)
  80. #define CHUNKPER    8
  81. #define CHUNKMASK    ((CHUNKPER << QUANTUMSHIFT) - 1)
  82.  
  83. #define LARGEQUARK    ((Entry)0x80000000L)
  84. #define QUARKSHIFT    18
  85. #define QUARKMASK    ((LARGEQUARK - 1) >> QUARKSHIFT)
  86. #define XSIGMASK    ((1L << QUARKSHIFT) - 1)
  87.  
  88. #define STRQUANTSIZE    (sizeof(XrmString) * (QUANTUMMASK + 1))
  89. #ifdef PERMQ
  90. #define QUANTSIZE    (STRQUANTSIZE + \
  91.              (sizeof(Bits) * ((QUANTUMMASK + 1) >> 3))
  92. #else
  93. #define QUANTSIZE    STRQUANTSIZE
  94. #endif
  95.  
  96. #define HASH(sig) ((sig) & quarkMask)
  97. #define REHASHVAL(sig) ((((sig) % quarkRehash) + 2) | 1)
  98. #define REHASH(idx,rehash) ((idx + rehash) & quarkMask)
  99. #define NAME(q) stringTable[(q) >> QUANTUMSHIFT][(q) & QUANTUMMASK]
  100. #ifdef PERMQ
  101. #define BYTEREF(q) permTable[(q) >> QUANTUMSHIFT][((q) & QUANTUMMASK) >> 3]
  102. #define ISPERM(q) (BYTEREF(q) & (1 << ((q) & 7)))
  103. #define SETPERM(q) BYTEREF(q) |= (1 << ((q) & 7))
  104. #define CLEARPERM(q) BYTEREF(q) &= ~(1 << ((q) & 7))
  105. #endif
  106.  
  107. /* Permanent memory allocation */
  108.  
  109. #define WALIGN sizeof(unsigned long)
  110. #define DALIGN sizeof(double)
  111.  
  112. #define NEVERFREETABLESIZE ((8192-12) & ~(DALIGN-1))
  113. static char *neverFreeTable = NULL;
  114. static int  neverFreeTableSize = 0;
  115.  
  116. static char *permalloc(length)
  117.     register unsigned int length;
  118. {
  119.     DBUG_ENTER("permalloc")
  120.     char *ret;
  121.  
  122.     if (neverFreeTableSize < length) {
  123.     if (length >= NEVERFREETABLESIZE) {
  124.         ret = Xmalloc(length);
  125.         DBUG_RETURN(ret);
  126.     }
  127.     if (! (ret = Xmalloc(NEVERFREETABLESIZE)))
  128.         DBUG_RETURN((char *) NULL);
  129.     neverFreeTableSize = NEVERFREETABLESIZE;
  130.     neverFreeTable = ret;
  131.     }
  132.     ret = neverFreeTable;
  133.     neverFreeTable += length;
  134.     neverFreeTableSize -= length;
  135.     DBUG_RETURN(ret);
  136. }
  137.  
  138. #ifndef WORD64
  139. typedef struct {char a; double b;} TestType1;
  140. typedef struct {char a; unsigned long b;} TestType2;
  141. #endif
  142.  
  143. #ifdef XTHREADS
  144. static char *_Xpermalloc();
  145.  
  146. char *Xpermalloc(length)
  147.     unsigned int length;
  148. {
  149.     DBUG_ENTER("Xpermalloc")
  150.     char *p;
  151.  
  152.     _XLockMutex(_Xglobal_lock);
  153.     p = _Xpermalloc(length);
  154.     _XUnlockMutex(_Xglobal_lock);
  155.     DBUG_RETURN(p);
  156. }
  157. #define Xpermalloc _Xpermalloc
  158.  
  159. static
  160. #endif /* XTHREADS */
  161. char *Xpermalloc(length)
  162.     unsigned int length;
  163. {
  164.     DBUG_ENTER("Xpermalloc")
  165.     int i;
  166.  
  167.     if (neverFreeTableSize && length < NEVERFREETABLESIZE) {
  168. #ifndef WORD64
  169.     if ((sizeof(TestType1) !=
  170.          (sizeof(TestType2) - sizeof(unsigned long) + sizeof(double))) &&
  171.         !(length & (DALIGN-1)) &&
  172.         (i = (NEVERFREETABLESIZE - neverFreeTableSize) & (DALIGN-1))) {
  173.         neverFreeTableSize -= DALIGN - i;
  174.         neverFreeTable += DALIGN - i;
  175.     } else
  176. #endif
  177.         if ((i = (NEVERFREETABLESIZE - neverFreeTableSize) & (WALIGN-1))) {
  178.         neverFreeTableSize -= WALIGN - i;
  179.         neverFreeTable += WALIGN - i;
  180.         }
  181.     }
  182.     {
  183.     char *result = permalloc(length);
  184.     DBUG_RETURN(result);
  185.     }
  186. }
  187.  
  188. static Bool
  189. ExpandQuarkTable()
  190. {
  191.     DBUG_ENTER("ExpandQuarkTable")
  192.     unsigned long oldmask, newmask;
  193.     register char c, *s;
  194.     register Entry *oldentries, *entries;
  195.     register Entry entry;
  196.     register int oldidx, newidx, rehash;
  197.     Signature sig;
  198.     XrmQuark q;
  199.  
  200.     oldentries = quarkTable;
  201.     if ((oldmask = quarkMask))
  202.     newmask = (oldmask << 1) + 1;
  203.     else {
  204.     if (!stringTable) {
  205.         stringTable = (XrmString **)Xmalloc(sizeof(XrmString *) *
  206.                         CHUNKPER);
  207.         if (!stringTable)
  208.         DBUG_RETURN(False);
  209.         stringTable[0] = (XrmString *)NULL;
  210.     }
  211. #ifdef PERMQ
  212.     if (!permTable)
  213.         permTable = (Bits **)Xmalloc(sizeof(Bits *) * CHUNKPER);
  214.     if (!permTable)
  215.         DBUG_RETURN(False);
  216. #endif
  217.     stringTable[0] = (XrmString *)Xpermalloc(QUANTSIZE);
  218.     if (!stringTable[0])
  219.         DBUG_RETURN(False);
  220. #ifdef PERMQ
  221.     permTable[0] = (Bits *)((char *)stringTable[0] + STRQUANTSIZE);
  222. #endif
  223.     newmask = 0x1ff;
  224.     }
  225.     entries = (Entry *)Xmalloc(sizeof(Entry) * (newmask + 1));
  226.     if (!entries)
  227.     DBUG_RETURN(False);
  228.     bzero((char *)entries, sizeof(Entry) * (newmask + 1));
  229.     quarkTable = entries;
  230.     quarkMask = newmask;
  231.     quarkRehash = quarkMask - 2;
  232.     for (oldidx = 0; oldidx <= oldmask; oldidx++) {
  233.     if ((entry = oldentries[oldidx])) {
  234.         if (entry & LARGEQUARK)
  235.         q = entry & (LARGEQUARK-1);
  236.         else
  237.         q = (entry >> QUARKSHIFT) & QUARKMASK;
  238.         for (sig = 0, (s = NAME(q)); (c = *s++); )
  239.         sig = (sig << 1) + c;
  240.         newidx = HASH(sig);
  241.         if (entries[newidx]) {
  242.         rehash = REHASHVAL(sig);
  243.         do {
  244.             newidx = REHASH(newidx, rehash);
  245.         } while (entries[newidx]);
  246.         }
  247.         entries[newidx] = entry;
  248.     }
  249.     }
  250.     if (oldmask)
  251.     Xfree((char *)oldentries);
  252.     DBUG_RETURN(True);
  253. }
  254.  
  255. #if NeedFunctionPrototypes
  256. XrmQuark _XrmInternalStringToQuark(
  257.     register _Xconst char *name, register int len, register Signature sig,
  258.     Bool permstring)
  259. #else
  260. XrmQuark _XrmInternalStringToQuark(name, len, sig, permstring)
  261.     register XrmString name;
  262.     register int len;
  263.     register Signature sig;
  264.     Bool permstring;
  265. #endif
  266. {
  267.     DBUG_ENTER("_XrmInternalStringToQuark")
  268.     register XrmQuark q;
  269.     register Entry entry;
  270.     register int idx, rehash;
  271.     register int i;
  272.     register char *s1, *s2;
  273.     char *new;
  274.  
  275.     rehash = 0;
  276.     idx = HASH(sig);
  277.     _XLockMutex(_Xglobal_lock);
  278.     while ((entry = quarkTable[idx])) {
  279.     if (entry & LARGEQUARK)
  280.         q = entry & (LARGEQUARK-1);
  281.     else {
  282.         if ((entry - sig) & XSIGMASK)
  283.         goto nomatch;
  284.         q = (entry >> QUARKSHIFT) & QUARKMASK;
  285.     }
  286.     for (i = len, s1 = (char *)name, s2 = NAME(q); --i >= 0; ) {
  287.         if (*s1++ != *s2++)
  288.         goto nomatch;
  289.     }
  290.     if (*s2) {
  291. nomatch:    if (!rehash)
  292.         rehash = REHASHVAL(sig);
  293.         idx = REHASH(idx, rehash);
  294.         continue;
  295.     }
  296. #ifdef PERMQ
  297.     if (permstring && !ISPERM(q)) {
  298.         Xfree(NAME(q));
  299.         NAME(q) = (char *)name;
  300.         SETPERM(q);
  301.     }
  302. #endif
  303.     _XUnlockMutex(_Xglobal_lock);
  304.     DBUG_RETURN(q);
  305.     }
  306.     if (nextUniq == nextQuark)
  307.     goto fail;
  308.     if ((nextQuark + (nextQuark >> 2)) > quarkMask) {
  309.     if (!ExpandQuarkTable())
  310.         goto fail;
  311.     _XUnlockMutex(_Xglobal_lock);
  312.     q = _XrmInternalStringToQuark(name, len, sig, permstring);
  313.     DBUG_RETURN(q);
  314.     }
  315.     q = nextQuark;
  316.     if (!(q & QUANTUMMASK)) {
  317.     if (!(q & CHUNKMASK)) {
  318.         if (!(new = Xrealloc((char *)stringTable,
  319.                  sizeof(XrmString *) *
  320.                  ((q >> QUANTUMSHIFT) + CHUNKPER))))
  321.         goto fail;
  322.         stringTable = (XrmString **)new;
  323. #ifdef PERMQ
  324.         if (!(new = Xrealloc((char *)permTable,
  325.                  sizeof(Bits *) *
  326.                  ((q >> QUANTUMSHIFT) + CHUNKPER))))
  327.         goto fail;
  328.         permTable = (Bits **)new;
  329. #endif
  330.     }
  331.     new = Xpermalloc(QUANTSIZE);
  332.     if (!new)
  333.         goto fail;
  334.     stringTable[q >> QUANTUMSHIFT] = (XrmString *)new;
  335. #ifdef PERMQ
  336.     permTable[q >> QUANTUMSHIFT] = (Bits *)(new + STRQUANTSIZE);
  337. #endif
  338.     }
  339.     if (!permstring) {
  340.     s2 = (char *)name;
  341. #ifdef PERMQ
  342.     name = Xmalloc(len+1);
  343. #else
  344.     name = permalloc(len+1);
  345. #endif
  346.     if (!name)
  347.         goto fail;
  348.     for (i = len, s1 = (char *)name; --i >= 0; )
  349.         *s1++ = *s2++;
  350.     *s1++ = '\0';
  351. #ifdef PERMQ
  352.     CLEARPERM(q);
  353.     }
  354.     else {
  355.     SETPERM(q);
  356. #endif
  357.     }
  358.     NAME(q) = (char *)name;
  359.     if (q <= QUARKMASK)
  360.     entry = (q << QUARKSHIFT) | (sig & XSIGMASK);
  361.     else
  362.     entry = q | LARGEQUARK;
  363.     quarkTable[idx] = entry;
  364.     nextQuark++;
  365.     _XUnlockMutex(_Xglobal_lock);
  366.     DBUG_RETURN(q);
  367.  fail:
  368.     _XUnlockMutex(_Xglobal_lock);
  369.     DBUG_RETURN(NULLQUARK);
  370. }
  371.  
  372. #if NeedFunctionPrototypes
  373. XrmQuark XrmStringToQuark(
  374.     _Xconst char *name)
  375. #else
  376. XrmQuark XrmStringToQuark(name)
  377.     XrmString name;
  378. #endif
  379. {
  380.     DBUG_ENTER("XrmStringToQuark")
  381.     register char c, *tname;
  382.     register Signature sig = 0;
  383.  
  384.     if (!name)
  385.     DBUG_RETURN(NULLQUARK);
  386.     
  387.     for (tname = (char *)name; (c = *tname++); )
  388.     sig = (sig << 1) + c;
  389.  
  390.     {
  391.     XrmQuark result = _XrmInternalStringToQuark(name, tname-(char *)name-1, sig, False);
  392.     DBUG_RETURN(result);
  393.     }
  394. }
  395.  
  396. #if NeedFunctionPrototypes
  397. XrmQuark XrmPermStringToQuark(
  398.     _Xconst char *name)
  399. #else
  400. XrmQuark XrmPermStringToQuark(name)
  401.     XrmString name;
  402. #endif
  403. {
  404.     DBUG_ENTER("XrmPermStringToQuark")
  405.     register char c, *tname;
  406.     register Signature sig = 0;
  407.  
  408.     if (!name)
  409.     DBUG_RETURN(NULLQUARK);
  410.  
  411.     for (tname = (char *)name; (c = *tname++); )
  412.     sig = (sig << 1) + c;
  413.  
  414.     {
  415.     XrmQuark result = _XrmInternalStringToQuark(name, tname-(char *)name-1, sig, True);
  416.     DBUG_RETURN(result);
  417.     }
  418. }
  419.  
  420. XrmQuark XrmUniqueQuark()
  421. {
  422.     DBUG_ENTER("XrmUniqueQuark")
  423.     XrmQuark q;
  424.  
  425.     _XLockMutex(_Xglobal_lock);
  426.     if (nextUniq == nextQuark)
  427.     q = NULLQUARK;
  428.     else
  429.     q = nextUniq--;
  430.     _XUnlockMutex(_Xglobal_lock);
  431.     DBUG_RETURN(q);
  432. }
  433.  
  434. XrmString XrmQuarkToString(quark)
  435.     register XrmQuark quark;
  436. {
  437.     DBUG_ENTER("XrmQuarkToString")
  438.     XrmString s;
  439.  
  440.     _XLockMutex(_Xglobal_lock);
  441.     if (quark <= 0 || quark >= nextQuark)
  442.         s = NULLSTRING;
  443.     else {
  444. #ifdef PERMQ
  445.     /* We have to mark the quark as permanent, since the caller might hold
  446.      * onto the string pointer forver.
  447.      */
  448.     SETPERM(quark);
  449. #endif
  450.     s = NAME(quark);
  451.     }
  452.     _XUnlockMutex(_Xglobal_lock);
  453.     DBUG_RETURN(s);
  454. }
  455.