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
|
/*
* e-sorter-array.c
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/
#include "e-sorter-array.h"
#include <string.h>
#include "e-misc-utils.h"
/* Forward Declarations */
static void e_sorter_array_interface_init (ESorterInterface *iface);
G_DEFINE_TYPE_WITH_CODE (
ESorterArray,
e_sorter_array,
G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (
E_TYPE_SORTER,
e_sorter_array_interface_init))
static gint
esort_callback (gconstpointer data1,
gconstpointer data2,
gpointer user_data)
{
ESorterArray *sorter_array = user_data;
gint ret_val;
gint int1, int2;
int1 = *(gint *) data1;
int2 = *(gint *) data2;
ret_val = sorter_array->compare (
int1, int2,
sorter_array->cmp_cache,
sorter_array->closure);
if (ret_val != 0)
return ret_val;
if (int1 < int2)
return -1;
if (int1 > int2)
return 1;
return 0;
}
static void
sorter_array_sort (ESorterArray *sorter_array)
{
gint rows;
gint i;
if (sorter_array->sorted)
return;
rows = sorter_array->rows;
sorter_array->sorted = g_new (gint, rows);
for (i = 0; i < rows; i++)
sorter_array->sorted[i] = i;
if (sorter_array->compare) {
if (sorter_array->create_cmp_cache)
sorter_array->cmp_cache =
sorter_array->create_cmp_cache (
sorter_array->closure);
g_qsort_with_data (
sorter_array->sorted, rows, sizeof (gint),
esort_callback, sorter_array);
if (sorter_array->cmp_cache) {
g_hash_table_destroy (sorter_array->cmp_cache);
sorter_array->cmp_cache = NULL;
}
}
}
static void
sorter_array_backsort (ESorterArray *sorter_array)
{
gint i, rows;
if (sorter_array->backsorted)
return;
sorter_array_sort (sorter_array);
rows = sorter_array->rows;
sorter_array->backsorted = g_new0 (gint, rows);
for (i = 0; i < rows; i++)
sorter_array->backsorted[sorter_array->sorted[i]] = i;
}
static void
sorter_array_finalize (GObject *object)
{
ESorterArray *sorter_array = E_SORTER_ARRAY (object);
e_sorter_array_clean (sorter_array);
/* Chain up to parent's finalize() method. */
G_OBJECT_CLASS (e_sorter_array_parent_class)->finalize (object);
}
static gint
sorter_array_model_to_sorted (ESorter *sorter,
gint row)
{
ESorterArray *sorter_array = E_SORTER_ARRAY (sorter);
g_return_val_if_fail (row >= 0, -1);
g_return_val_if_fail (row < sorter_array->rows, -1);
if (e_sorter_needs_sorting (sorter))
sorter_array_backsort (sorter_array);
if (sorter_array->backsorted)
return sorter_array->backsorted[row];
else
return row;
}
static gint
sorter_array_sorted_to_model (ESorter *sorter,
gint row)
{
ESorterArray *sorter_array = E_SORTER_ARRAY (sorter);
g_return_val_if_fail (row >= 0, -1);
g_return_val_if_fail (row < sorter_array->rows, -1);
if (e_sorter_needs_sorting (sorter))
sorter_array_sort (sorter_array);
if (sorter_array->sorted)
return sorter_array->sorted[row];
else
return row;
}
static void
sorter_array_get_model_to_sorted_array (ESorter *sorter,
gint **array,
gint *count)
{
ESorterArray *sorter_array = E_SORTER_ARRAY (sorter);
if (array || count) {
sorter_array_backsort (sorter_array);
if (array)
*array = sorter_array->backsorted;
if (count)
*count = sorter_array->rows;
}
}
static void
sorter_array_get_sorted_to_model_array (ESorter *sorter,
gint **array,
gint *count)
{
ESorterArray *sorter_array = E_SORTER_ARRAY (sorter);
if (array || count) {
sorter_array_sort (sorter_array);
if (array)
*array = sorter_array->sorted;
if (count)
*count = sorter_array->rows;
}
}
static gboolean
sorter_array_needs_sorting (ESorter *sorter)
{
ESorterArray *sorter_array = E_SORTER_ARRAY (sorter);
return sorter_array->compare != NULL;
}
static void
e_sorter_array_class_init (ESorterArrayClass *class)
{
GObjectClass *object_class;
object_class = G_OBJECT_CLASS (class);
object_class->finalize = sorter_array_finalize;
}
static void
e_sorter_array_interface_init (ESorterInterface *iface)
{
iface->model_to_sorted = sorter_array_model_to_sorted;
iface->sorted_to_model = sorter_array_sorted_to_model;
iface->get_model_to_sorted_array = sorter_array_get_model_to_sorted_array;
iface->get_sorted_to_model_array = sorter_array_get_sorted_to_model_array;
iface->needs_sorting = sorter_array_needs_sorting;
}
static void
e_sorter_array_init (ESorterArray *sorter_array)
{
}
ESorterArray *
e_sorter_array_new (ECreateCmpCacheFunc create_cmp_cache,
ECompareRowsFunc compare,
gpointer closure)
{
ESorterArray *sorter_array;
sorter_array = g_object_new (E_TYPE_SORTER_ARRAY, NULL);
sorter_array->create_cmp_cache = create_cmp_cache;
sorter_array->compare = compare;
sorter_array->closure = closure;
return sorter_array;
}
void
e_sorter_array_clean (ESorterArray *sorter_array)
{
g_return_if_fail (E_IS_SORTER_ARRAY (sorter_array));
g_free (sorter_array->sorted);
sorter_array->sorted = NULL;
g_free (sorter_array->backsorted);
sorter_array->backsorted = NULL;
}
void
e_sorter_array_set_count (ESorterArray *sorter_array,
gint count)
{
g_return_if_fail (E_IS_SORTER_ARRAY (sorter_array));
e_sorter_array_clean (sorter_array);
sorter_array->rows = count;
}
void
e_sorter_array_append (ESorterArray *sorter_array,
gint count)
{
gint i;
g_return_if_fail (E_IS_SORTER_ARRAY (sorter_array));
g_free (sorter_array->backsorted);
sorter_array->backsorted = NULL;
if (sorter_array->sorted) {
sorter_array->sorted = g_renew (
gint, sorter_array->sorted,
sorter_array->rows + count);
for (i = 0; i < count; i++) {
gint value = sorter_array->rows;
gsize pos;
e_bsearch (
&value,
sorter_array->sorted,
sorter_array->rows,
sizeof (gint),
esort_callback,
sorter_array,
&pos, NULL);
memmove (
sorter_array->sorted + pos + 1,
sorter_array->sorted + pos,
sizeof (gint) * (sorter_array->rows - pos));
sorter_array->sorted[pos] = value;
sorter_array->rows++;
}
} else {
sorter_array->rows += count;
}
}
|