add .gitignore
[tedtools.git] / psortex.c
1 /*
2  * Copyright (c) 2004 Teodor Sigaev <teodor@sigaev.ru>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *        notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *        notice, this list of conditions and the following disclaimer in the
12  *        documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *        may be used to endorse or promote products derived from this software
15  *        without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <stdio.h>
31 #include <stdlib.h>
32
33 #include "tlog.h"
34 #include "tmalloc.h"
35 #include "psort.h"
36
37 #define LENARR  (1<<10)
38 #define LIMIT   16
39
40 /*
41  * Example of struct
42  */
43 typedef struct {
44         int     id;
45         char    *value;
46 } EXMPL;
47
48 /*
49  * compare two struct
50  */
51 static int
52 exstr_cmp(const void *a, const void *b) {
53         return ((EXMPL*)a)->id - ((EXMPL*)b)->id;
54 }
55
56 /*
57  * free struct
58  */
59 static void
60 exstr_free( void *a ) {
61         if ( a ) {
62                 if ( ((EXMPL*)a)->value ) free( ((EXMPL*)a)->value );
63                 free( a );
64         }
65 }
66
67 int 
68 main(int argn, char *argv[]) {
69         int i;
70         EXMPL *ptr=NULL;
71         SORT    sobj;
72         int inserted=0;
73         EXMPL   **aptr;
74
75         opentlog( TL_OPEN_STDERR,  TL_DEBUG, NULL);
76
77         if ( PS_init( &sobj, LIMIT, exstr_cmp, exstr_free ) ) {
78                 fprintf(stderr,"No memory\n");
79                 return 1;
80         }
81         srandom(1);
82         printf("Test insert:\n");
83         for(i=0;i<LENARR;i++) {
84                 if ( ! ptr ) {
85                         ptr = (EXMPL*)tmalloc( sizeof(EXMPL) );
86                         ptr->value=(char*)tmalloc( 64 );
87                 }
88                 ptr->id = random() % LENARR;
89                 sprintf( ptr->value, "Value: %d, startnum: %d", ptr->id, i ); 
90
91                 if ( PS_insert( &sobj, (void*)ptr ) ) { 
92                         /* tuple has been inserted, in 
93                          other case we can reuse space :) */
94                         ptr = NULL;
95                         inserted++;
96                 }
97         }
98
99         PS_init_iterator( &sobj, 0 );
100         i=1;
101         while( (ptr=(EXMPL*)PS_getnext( &sobj )) != NULL ) {
102                 printf("%d: '%s'\n", i, ptr->value);
103                 i++;
104         }
105         printf("Stat: total %d; limit %d; inserted %d;\n", LENARR, PS_number(&sobj) , inserted); 
106         PS_reset( &sobj );
107
108         srandom(1);
109         printf("Test bulk insert:\n");
110         aptr = (EXMPL**)tmalloc( sizeof(EXMPL*) * LENARR );
111         for(i=0;i<LENARR;i++) {
112                 aptr[i] = (EXMPL*)tmalloc( sizeof(EXMPL) );
113                 aptr[i]->value = (char*)tmalloc( 64 );
114                 aptr[i]->id = random() % LENARR;
115                 sprintf( aptr[i]->value, "Value: %d, startnum: %d", aptr[i]->id, i ); 
116         }
117
118         PS_bulkinsert( &sobj, (void**)aptr, LENARR );
119
120         if ( PS_init_iterator( &sobj, 7 ) ) {
121                 printf("ERROR\n");
122         } else { 
123                 i=8;
124                 while( (ptr=(EXMPL*)PS_getnext( &sobj )) != NULL ) {
125                         printf("%d: '%s'\n", i, ptr->value);
126                         i++;
127                 }
128                 printf("Stat: total %d; limit %d;\n", LENARR, PS_number(&sobj));
129         } 
130         PS_clear( &sobj );
131
132
133         srandom(1);
134         printf("Test bulk plain insert:\n");
135
136         if ( PS_init( &sobj, LIMIT, exstr_cmp, NULL ) ) {
137                 fprintf(stderr,"No memory\n");
138                 return 1;
139         }
140         ptr = (EXMPL*)tmalloc( sizeof(EXMPL) * LENARR );
141
142         for(i=0;i<LENARR;i++) {
143                 ptr[i].value = (char*)tmalloc( 64 );
144                 ptr[i].id = random() % LENARR;
145                 sprintf( ptr[i].value, "Value: %d, startnum: %d", ptr[i].id, i ); 
146         }
147         PS_bulkplain( &sobj, (void*)ptr, sizeof(EXMPL), LENARR );
148         if ( PS_init_iterator( &sobj, 7 ) ) {
149                 printf("ERROR\n");
150         } else { 
151                 i=8;
152                 while( (ptr=(EXMPL*)PS_getnext( &sobj )) != NULL ) {
153                         printf("%d: '%s'\n", i, ptr->value);
154                         i++;
155                 }
156                 printf("Stat: total %d; limit %d;\n", LENARR, PS_number(&sobj));
157         } 
158         PS_clear( &sobj );
159
160         return 0;
161 }
162