OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Basic / Atomizer.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*
24  * $XConsortium: Atomizer.cc /main/3 1996/06/11 16:17:33 cde-hal $
25  *
26  * Copyright (c) 1992 HaL Computer Systems, Inc.  All rights reserved.
27  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
28  * States.  Use of a copyright notice is precautionary only and does not
29  * imply publication or disclosure.
30  * 
31  * This software contains confidential information and trade secrets of HaL
32  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
33  * without the prior express written permission of HaL Computer Systems, Inc.
34  * 
35  *                         RESTRICTED RIGHTS LEGEND
36  * Use, duplication, or disclosure by the Government is subject to
37  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
38  * Technical Data and Computer Software clause at DFARS 252.227-7013.
39  *                        HaL Computer Systems, Inc.
40  *                  1315 Dell Avenue, Campbell, CA  95008
41  * 
42  */
43
44 #define C_Atomizer
45 #define L_Basic
46
47 #include "Prelude.h"
48
49 #include <string.h>
50
51 // Initial size is 10, grow by 10.
52 List Atomizer::f_pool (10, 10);
53
54 // /////////////////////////////////////////////////////////////////
55 // private string storage class
56 // /////////////////////////////////////////////////////////////////
57
58 class PoolString : public FolioObject
59 {
60 public: // functions
61   PoolString (const char *string)
62     {
63       int len = strlen(string);
64       f_string = new char[len + 1];
65       *((char *) memcpy(f_string, string, len) + len) = '\0';
66     }
67         
68   ~PoolString ()
69     { delete [] f_string; }
70
71   int equals (const char *string)
72     { return (strcmp (string, f_string) == 0); }
73
74 public: // variables
75   char *f_string;
76 };
77
78 // /////////////////////////////////////////////////////////////////
79 // constructor
80 // /////////////////////////////////////////////////////////////////
81
82 Atomizer::Atomizer (const char *string)
83 {
84   // Try to find the string in the pool of strings
85   register unsigned int i;
86
87   for (i = 0; i < f_pool.length(); i++)
88     if (((PoolString *)f_pool[i])->equals (string))
89       break;
90
91   if (i < f_pool.length())
92     {
93       // We've found it.
94       f_value = ((PoolString *)f_pool[i])->f_string;
95     }
96   else
97     {
98       // Not there, so add it.
99       PoolString *ps = new PoolString (string);
100       f_value = ps->f_string;
101       f_pool.append (*ps);
102     }
103 }