File: test_list.c

package info (click to toggle)
libabz 0.5.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 588 kB
  • ctags: 337
  • sloc: ansic: 3,089; makefile: 206; sh: 13
file content (299 lines) | stat: -rw-r--r-- 6,413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299

/*
 * Copyright (c) Abraham vd Merwe <abz@blio.com>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *	  notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *	  notice, this list of conditions and the following disclaimer in the
 *	  documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the author nor the names of other contributors
 *	  may be used to endorse or promote products derived from this software
 *	  without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdlib.h>
#include <string.h>

#include <debug/log.h>
#include <debug/memory.h>

#include <abz/typedefs.h>
#include <abz/error.h>
#include <abz/list.h>

struct key
{
   int key;
   struct list_head node;
};

static void key_init (struct list_head *list)
{
   INIT_LIST_HEAD (list);
}

static void key_destroy (struct list_head *list)
{
   struct list_head *ctr,*tmp;
   struct key *entry;

   list_for_each (ctr,tmp,list)
	 {
		entry = list_entry (ctr,struct key,node);
		list_del (&entry->node);
		mem_free (entry);
	 }
}

static struct key *key_new (int key)
{
   struct key *entry;

   abz_clear_error ();

   if ((entry = mem_alloc (sizeof (*entry))) == NULL)
	 {
		abz_set_error ("failed to allocate memory: %m");
		return (NULL);
	 }

   memset (entry,0L,sizeof (*entry));
   entry->key = key;

   return (entry);
}

static int key_add (struct list_head *list,int key)
{
   struct key *entry;

   if ((entry = key_new (key)) == NULL)
	 return (-1);

   list_add (&entry->node,list);
   return (0);
}

static int key_add_tail (struct list_head *list,int key)
{
   struct key *entry;

   if ((entry = key_new (key)) == NULL)
	 return (-1);

   list_add_tail (&entry->node,list);
   return (0);
}

static int key_find (struct list_head *list,int key)
{
   struct list_head *ctr,*tmp;
   struct key *entry;

   if (list_empty (list))
	 return (0);

   list_for_each (ctr,tmp,list)
	 {
		entry = list_entry (ctr,struct key,node);

		if (entry->key == key)
		  return (1);
	 }

   return (0);
}

static void key_print (const char *prefix,struct list_head *list)
{
   struct list_head *ctr,*tmp;
   struct key *entry;

   log_printf (LOG_NORMAL,"%s [next]:",prefix);

   list_for_each (ctr,tmp,list)
	 {
		entry = list_entry (ctr,struct key,node);
		log_printf (LOG_NORMAL," %d",entry->key);
	 }

   log_putc (LOG_NORMAL,'\n');

   log_printf (LOG_NORMAL,"%s [prev]:",prefix);

   list_for_each_prev (ctr,tmp,list)
	 {
		entry = list_entry (ctr,struct key,node);
		log_printf (LOG_NORMAL," %d",entry->key);
	 }

   log_putc (LOG_NORMAL,'\n');
}

static void test_queue (void)
{
   int i;
   struct list_head head;

   key_init (&head);

   for (i = 0; i < 5; i++)
	 if (key_add_tail (&head,i + 1))
	   {
		  log_printf (LOG_ERROR,"%s\n",abz_get_error ());
		  key_destroy (&head);
		  exit (EXIT_FAILURE);
	   }

   key_print ("queue (1 -> 5)",&head);
   key_destroy (&head);
}

static void test_stack (void)
{
   int i;
   struct list_head head;

   key_init (&head);

   for (i = 0; i < 5; i++)
	 if (key_add (&head,i + 1))
	   {
		  log_printf (LOG_ERROR,"%s\n",abz_get_error ());
		  key_destroy (&head);
		  exit (EXIT_FAILURE);
	   }

   key_print ("stack (1 -> 5)",&head);
   key_destroy (&head);
}

static void test_find (void)
{
   int i;
   struct list_head head;

   key_init (&head);

   if (key_find (&head,0))
	 {
		log_printf (LOG_ERROR,"found something in empty list\n");
		exit (EXIT_FAILURE);
	 }

   for (i = 0; i < 5; i++)
	 {
		if (key_add (&head,i + 1))
		  {
			 log_printf (LOG_ERROR,"%s\n",abz_get_error ());
			 key_destroy (&head);
			 exit (EXIT_FAILURE);
		  }

		if (!key_find (&head,i + 1))
		  {
			 log_printf (LOG_ERROR,"tail not found: %d\n",i);
			 key_destroy (&head);
			 exit (EXIT_FAILURE);
		  }

		if (!key_find (&head,1))
		  {
			 log_printf (LOG_ERROR,"head not found: %d\n",i);
			 key_destroy (&head);
			 exit (EXIT_FAILURE);
		  }
	 }

   for (i = 0; i < 5; i++)
	 if (!key_find (&head,i + 1))
	   {
		  log_printf (LOG_ERROR,"key not found: %d\n",i + 1);
		  key_destroy (&head);
		  exit (EXIT_FAILURE);
	   }

   key_destroy (&head);
}

static int compare (struct list_head *a,struct list_head *b)
{
   struct key *k1 = list_entry (a,struct key,node),*k2 = list_entry (b,struct key,node);

   return (k1->key - k2->key);
}

static void test_sort (void)
{
   int i,key[] = { 1, 5, 3, 2, 4 };
   struct list_head head;

   key_init (&head);

   for (i = 0; i < ARRAYSIZE (key); i++)
	 if (key_add (&head,key[i]))
	   {
		  log_printf (LOG_ERROR,"%s\n",abz_get_error ());
		  key_destroy (&head);
		  exit (EXIT_FAILURE);
	   }

   list_sort (&head,compare);
   key_print ("sort",&head);
   key_destroy (&head);
}

static void test_join (void)
{
   int i;
   struct list_head a,b;

   key_init (&a);
   key_init (&b);

   for (i = 0; i < 5; i++)
	 if (key_add_tail (&a,i + 1) || key_add_tail (&b,i + 6))
	   {
		  log_printf (LOG_ERROR,"%s\n",abz_get_error ());
		  key_destroy (&a);
		  key_destroy (&b);
		  exit (EXIT_FAILURE);
	   }

   list_join (&a,&b);
   key_print ("join (1 -> 10)",&b);
   key_destroy (&b);
}

int main (void)
{
   mem_open (NULL);
   log_open (NULL,LOG_NOISY,LOG_HAVE_COLORS | LOG_PRINT_FUNCTION);
   atexit (mem_close);
   atexit (log_close);

   test_queue ();
   test_stack ();
   test_find ();
   test_sort ();
   test_join ();

   exit (EXIT_SUCCESS);
}