Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / dtinfogen / infolib / etc / StringList.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 /* $XConsortium: StringList.cc /main/2 1996/07/18 15:19:21 drk $ */
24
25 /* exported interfaces... */
26 #include "StringList.h"
27
28 /* imported interfaces... */
29 #include <string.h>
30
31 StringList::StringList()
32 {
33   used = alloc = 0;
34   items = NULL;
35 }
36
37 StringList::~StringList()
38 {
39   reset();
40   delete items;
41 }
42
43 void StringList::grow(size_t total)
44 {
45   if(total + 1 > alloc){
46     char **born = new char*[alloc = total * 3 / 2 + 1];
47     
48     if(used > 0){
49       memcpy(born, items, used *sizeof(items[0]));
50       delete items;
51     }
52
53     items = born;
54   }
55 }
56
57
58 const char * StringList::append(const char *str)
59 {
60   char *p = new char[strlen(str)+1];
61   strcpy(p, str);
62   
63   grow(used);
64   
65   items[used++] = p;
66
67   return p;
68 }
69
70 void StringList::add(char *str)
71 {
72   grow(used);
73   
74   items[used++] = str;
75 }
76
77 void StringList::reset()
78 {
79   for(size_t i = 0; i < used; i++){
80     delete items[i]; 
81     items[i] = 0;     /* This is to prevent the item[i] from being deleted
82                        * again, ie free memory freed.
83                        */
84   }
85
86   used = 0;
87 }