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
|
#include <stdarg.h>
#include "debug.h"
#include "libmsi.h"
#include "msipriv.h"
#include "query.h"
typedef struct _LibmsiDistinctSet
{
unsigned val;
unsigned count;
unsigned row;
struct _LibmsiDistinctSet *nextrow;
struct _LibmsiDistinctSet *nextcol;
} LibmsiDistinctSet;
typedef struct _LibmsiDistinctView
{
LibmsiView view;
LibmsiDatabase *db;
LibmsiView *table;
unsigned row_count;
unsigned *translation;
} LibmsiDistinctView;
static LibmsiDistinctSet ** distinct_insert( LibmsiDistinctSet **x, unsigned val, unsigned row )
{
while( *x )
{
if( (*x)->val == val )
{
(*x)->count++;
return x;
}
x = &(*x)->nextrow;
}
*x = msi_alloc( sizeof (LibmsiDistinctSet) );
if( *x )
{
(*x)->val = val;
(*x)->count = 1;
(*x)->row = row;
(*x)->nextrow = NULL;
(*x)->nextcol = NULL;
}
return x;
}
static void distinct_free( LibmsiDistinctSet *x )
{
while( x )
{
LibmsiDistinctSet *next = x->nextrow;
distinct_free( x->nextcol );
msi_free( x );
x = next;
}
}
static unsigned distinct_view_fetch_int( LibmsiView *view, unsigned row, unsigned col, unsigned *val )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
TRACE("%p %d %d %p\n", dv, row, col, val );
if( !dv->table )
return LIBMSI_RESULT_FUNCTION_FAILED;
if( row >= dv->row_count )
return LIBMSI_RESULT_INVALID_PARAMETER;
row = dv->translation[ row ];
return dv->table->ops->fetch_int( dv->table, row, col, val );
}
static unsigned distinct_view_execute( LibmsiView *view, LibmsiRecord *record )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
unsigned r, i, j, r_count, c_count;
LibmsiDistinctSet *rowset = NULL;
TRACE("%p %p\n", dv, record);
if( !dv->table )
return LIBMSI_RESULT_FUNCTION_FAILED;
r = dv->table->ops->execute( dv->table, record );
if( r != LIBMSI_RESULT_SUCCESS )
return r;
r = dv->table->ops->get_dimensions( dv->table, &r_count, &c_count );
if( r != LIBMSI_RESULT_SUCCESS )
return r;
dv->translation = msi_alloc( r_count*sizeof(unsigned) );
if( !dv->translation )
return LIBMSI_RESULT_FUNCTION_FAILED;
for( i=0; i<r_count; i++ )
{
LibmsiDistinctSet **x = &rowset;
for( j=1; j<=c_count; j++ )
{
unsigned val = 0;
r = dv->table->ops->fetch_int( dv->table, i, j, &val );
if( r != LIBMSI_RESULT_SUCCESS )
{
g_critical("Failed to fetch int at %d %d\n", i, j );
distinct_free( rowset );
return r;
}
x = distinct_insert( x, val, i );
if( !*x )
{
g_critical("Failed to insert at %d %d\n", i, j );
distinct_free( rowset );
return LIBMSI_RESULT_FUNCTION_FAILED;
}
if( j != c_count )
x = &(*x)->nextcol;
}
if( (*x)->row == i )
{
TRACE("Row %d -> %d\n", dv->row_count, i);
dv->translation[dv->row_count++] = i;
}
}
distinct_free( rowset );
return LIBMSI_RESULT_SUCCESS;
}
static unsigned distinct_view_close( LibmsiView *view )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
TRACE("%p\n", dv );
if( !dv->table )
return LIBMSI_RESULT_FUNCTION_FAILED;
msi_free( dv->translation );
dv->translation = NULL;
dv->row_count = 0;
return dv->table->ops->close( dv->table );
}
static unsigned distinct_view_get_dimensions( LibmsiView *view, unsigned *rows, unsigned *cols )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
TRACE("%p %p %p\n", dv, rows, cols );
if( !dv->table )
return LIBMSI_RESULT_FUNCTION_FAILED;
if( rows )
{
if( !dv->translation )
return LIBMSI_RESULT_FUNCTION_FAILED;
*rows = dv->row_count;
}
return dv->table->ops->get_dimensions( dv->table, NULL, cols );
}
static unsigned distinct_view_get_column_info( LibmsiView *view, unsigned n, const char **name,
unsigned *type, bool *temporary, const char **table_name )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
TRACE("%p %d %p %p %p %p\n", dv, n, name, type, temporary, table_name );
if( !dv->table )
return LIBMSI_RESULT_FUNCTION_FAILED;
return dv->table->ops->get_column_info( dv->table, n, name,
type, temporary, table_name );
}
static unsigned distinct_view_delete( LibmsiView *view )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
TRACE("%p\n", dv );
if( dv->table )
dv->table->ops->delete( dv->table );
msi_free( dv->translation );
g_object_unref(dv->db);
msi_free( dv );
return LIBMSI_RESULT_SUCCESS;
}
static unsigned distinct_view_find_matching_rows( LibmsiView *view, unsigned col,
unsigned val, unsigned *row, MSIITERHANDLE *handle )
{
LibmsiDistinctView *dv = (LibmsiDistinctView*)view;
unsigned r;
TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
if( !dv->table )
return LIBMSI_RESULT_FUNCTION_FAILED;
r = dv->table->ops->find_matching_rows( dv->table, col, val, row, handle );
if( *row > dv->row_count )
return NO_MORE_ITEMS;
*row = dv->translation[ *row ];
return r;
}
static const LibmsiViewOps distinct_ops =
{
distinct_view_fetch_int,
NULL,
NULL,
NULL,
NULL,
NULL,
distinct_view_execute,
distinct_view_close,
distinct_view_get_dimensions,
distinct_view_get_column_info,
distinct_view_delete,
distinct_view_find_matching_rows,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
};
unsigned distinct_view_create( LibmsiDatabase *db, LibmsiView **view, LibmsiView *table )
{
LibmsiDistinctView *dv = NULL;
unsigned count = 0, r;
TRACE("%p\n", dv );
r = table->ops->get_dimensions( table, NULL, &count );
if( r != LIBMSI_RESULT_SUCCESS )
{
g_critical("can't get table dimensions\n");
return r;
}
dv = msi_alloc_zero( sizeof *dv );
if( !dv )
return LIBMSI_RESULT_FUNCTION_FAILED;
dv->view.ops = &distinct_ops;
dv->db = g_object_ref(db);
dv->table = table;
dv->translation = NULL;
dv->row_count = 0;
*view = (LibmsiView*) dv;
return LIBMSI_RESULT_SUCCESS;
}
|