Imported Upstream version 1.15.1
[deb_xorg-server.git] / dix / atom.c
CommitLineData
a09e091a
JB
1/***********************************************************
2
3Copyright 1987, 1998 The Open Group
4
5Permission to use, copy, modify, distribute, and sell this software and its
6documentation for any purpose is hereby granted without fee, provided that
7the above copyright notice appear in all copies and that both that
8copyright notice and this permission notice appear in supporting
9documentation.
10
11The above copyright notice and this permission notice shall be included in
12all copies or substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21Except as contained in this notice, the name of The Open Group shall not be
22used in advertising or otherwise to promote the sale, use or other dealings
23in this Software without prior written authorization from The Open Group.
24
25Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
26
27 All Rights Reserved
28
29Permission to use, copy, modify, and distribute this software and its
30documentation for any purpose and without fee is hereby granted,
31provided that the above copyright notice appear in all copies and that
32both that copyright notice and this permission notice appear in
33supporting documentation, and that the name of Digital not be
34used in advertising or publicity pertaining to distribution of the
35software without specific, written prior permission.
36
37DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43SOFTWARE.
44
45******************************************************************/
46
47#ifdef HAVE_DIX_CONFIG_H
48#include <dix-config.h>
49#endif
50
51#include <X11/X.h>
52#include <X11/Xatom.h>
53#include <stdio.h>
54#include <string.h>
55#include "misc.h"
56#include "resource.h"
57#include "dix.h"
58
59#define InitialTableSize 100
60
61typedef struct _Node {
62 struct _Node *left, *right;
63 Atom a;
64 unsigned int fingerPrint;
65 const char *string;
66} NodeRec, *NodePtr;
67
68static Atom lastAtom = None;
69static NodePtr atomRoot = NULL;
70static unsigned long tableLength;
71static NodePtr *nodeTable;
72
73void FreeAtom(NodePtr patom);
74
75Atom
76MakeAtom(const char *string, unsigned len, Bool makeit)
77{
78 NodePtr *np;
79 unsigned i;
80 int comp;
81 unsigned int fp = 0;
82
83 np = &atomRoot;
84 for (i = 0; i < (len + 1) / 2; i++) {
85 fp = fp * 27 + string[i];
86 fp = fp * 27 + string[len - 1 - i];
87 }
88 while (*np != NULL) {
89 if (fp < (*np)->fingerPrint)
90 np = &((*np)->left);
91 else if (fp > (*np)->fingerPrint)
92 np = &((*np)->right);
93 else { /* now start testing the strings */
94 comp = strncmp(string, (*np)->string, (int) len);
95 if ((comp < 0) || ((comp == 0) && (len < strlen((*np)->string))))
96 np = &((*np)->left);
97 else if (comp > 0)
98 np = &((*np)->right);
99 else
100 return (*np)->a;
101 }
102 }
103 if (makeit) {
104 NodePtr nd;
105
106 nd = malloc(sizeof(NodeRec));
107 if (!nd)
108 return BAD_RESOURCE;
109 if (lastAtom < XA_LAST_PREDEFINED) {
110 nd->string = string;
111 }
112 else {
113 nd->string = strndup(string, len);
114 if (!nd->string) {
115 free(nd);
116 return BAD_RESOURCE;
117 }
118 }
119 if ((lastAtom + 1) >= tableLength) {
120 NodePtr *table;
121
122 table = realloc(nodeTable, tableLength * (2 * sizeof(NodePtr)));
123 if (!table) {
124 if (nd->string != string) {
125 /* nd->string has been strdup'ed */
126 free((char *) nd->string);
127 }
128 free(nd);
129 return BAD_RESOURCE;
130 }
131 tableLength <<= 1;
132 nodeTable = table;
133 }
134 *np = nd;
135 nd->left = nd->right = NULL;
136 nd->fingerPrint = fp;
137 nd->a = ++lastAtom;
138 nodeTable[lastAtom] = nd;
139 return nd->a;
140 }
141 else
142 return None;
143}
144
145Bool
146ValidAtom(Atom atom)
147{
148 return (atom != None) && (atom <= lastAtom);
149}
150
151const char *
152NameForAtom(Atom atom)
153{
154 NodePtr node;
155
156 if (atom > lastAtom)
157 return 0;
158 if ((node = nodeTable[atom]) == NULL)
159 return 0;
160 return node->string;
161}
162
163void
164AtomError(void)
165{
166 FatalError("initializing atoms");
167}
168
169void
170FreeAtom(NodePtr patom)
171{
172 if (patom->left)
173 FreeAtom(patom->left);
174 if (patom->right)
175 FreeAtom(patom->right);
176 if (patom->a > XA_LAST_PREDEFINED) {
177 /*
178 * All strings above XA_LAST_PREDEFINED are strdup'ed, so it's safe to
179 * cast here
180 */
181 free((char *) patom->string);
182 }
183 free(patom);
184}
185
186void
187FreeAllAtoms(void)
188{
189 if (atomRoot == NULL)
190 return;
191 FreeAtom(atomRoot);
192 atomRoot = NULL;
193 free(nodeTable);
194 nodeTable = NULL;
195 lastAtom = None;
196}
197
198void
199InitAtoms(void)
200{
201 FreeAllAtoms();
202 tableLength = InitialTableSize;
203 nodeTable = malloc(InitialTableSize * sizeof(NodePtr));
204 if (!nodeTable)
205 AtomError();
206 nodeTable[None] = NULL;
207 MakePredeclaredAtoms();
208 if (lastAtom != XA_LAST_PREDEFINED)
209 AtomError();
210}