Skip to content

Latest commit

 

History

History
195 lines (166 loc) · 5.45 KB

unique.c

File metadata and controls

195 lines (166 loc) · 5.45 KB
 
Jan 26, 2011
Jan 26, 2011
1
Jan 28, 2011
Jan 28, 2011
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
/******************************************************************************
** This file is part of profile-qt
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
**
** Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer. 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.
**
** Neither the name of Nokia Corporation nor the names of its 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 COPYRIGHT OWNER 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.
******************************************************************************/
Jan 26, 2011
Jan 26, 2011
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
#include "profiled_config.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "unique.h"
/* ========================================================================= *
* unique_t -- methods
* ========================================================================= */
/* ------------------------------------------------------------------------- *
* unique_ctor
* ------------------------------------------------------------------------- */
void
unique_ctor(unique_t *self)
{
self->un_count = 0;
self->un_alloc = 64;
self->un_string = malloc(self->un_alloc * sizeof *self->un_string);
*self->un_string = 0;
}
/* ------------------------------------------------------------------------- *
* unique_dtor
* ------------------------------------------------------------------------- */
void
unique_dtor(unique_t *self)
{
for( size_t i = 0; i < self->un_count; ++i )
{
free(self->un_string[i]);
}
free(self->un_string);
}
/* ------------------------------------------------------------------------- *
* unique_create
* ------------------------------------------------------------------------- */
unique_t *
unique_create(void)
{
unique_t *self = calloc(1, sizeof *self);
unique_ctor(self);
return self;
}
/* ------------------------------------------------------------------------- *
* unique_delete
* ------------------------------------------------------------------------- */
void
unique_delete(unique_t *self)
{
if( self != 0 )
{
unique_dtor(self);
free(self);
}
}
/* ------------------------------------------------------------------------- *
* unique_delete_cb
* ------------------------------------------------------------------------- */
void
unique_delete_cb(void *self)
{
unique_delete(self);
}
/* ------------------------------------------------------------------------- *
* unique_final
* ------------------------------------------------------------------------- */
char **
unique_final(unique_t *self, size_t *pcount)
{
auto int cmp(const void *a, const void *b);
auto int cmp(const void *a, const void *b)
{
return strcmp(*(const char **)a, *(const char **)b);
}
if( self->un_dirty != 0 )
{
qsort(self->un_string, self->un_count, sizeof *self->un_string, cmp);
size_t si = 0, di = 0;
char *prev = NULL;
while( si < self->un_count )
{
char *curr = self->un_string[si++];
if( prev == 0 || strcmp(prev, curr) )
{
self->un_string[di++] = prev = curr;
}
else
{
free(curr);
}
}
self->un_count = di;
self->un_dirty = 0;
self->un_string[self->un_count] = 0;
}
if( pcount != 0 )
{
*pcount = self->un_count;
}
return self->un_string;
}
/* ------------------------------------------------------------------------- *
* unique_steal
* ------------------------------------------------------------------------- */
char **
unique_steal(unique_t *self, size_t *pcount)
{
char **res = unique_final(self, pcount);
self->un_count = 0;
self->un_alloc = 0;
self->un_dirty = 0;
self->un_string = 0;
return res;
}
/* ------------------------------------------------------------------------- *
* unique_add
* ------------------------------------------------------------------------- */
void
unique_add(unique_t *self, const char *str)
{
if( self->un_count + 2 > self->un_alloc )
{
if( self->un_alloc == 0 )
{
self->un_alloc = 32;
}
else
{
self->un_alloc = self->un_alloc * 3 / 2;
}
self->un_string = realloc(self->un_string,
self->un_alloc * sizeof *self->un_string);
}
self->un_string[self->un_count++] = strdup(str ?: "");
self->un_string[self->un_count] = 0;
self->un_dirty = 1;
}