summaryrefslogtreecommitdiffstats
path: root/libmsi/alter.c
blob: 0c7a21ce854c3ca1e7ded42fecc594603b04db10 (plain)
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
/*
 * Implementation of the Microsoft Installer (msi.dll)
 *
 * Copyright 2006 Mike McCormack
 *
 * This library 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; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include <stdarg.h>

#include "debug.h"
#include "libmsi.h"
#include "msipriv.h"

#include "query.h"


typedef struct _LibmsiAlterView
{
    LibmsiView        view;
    LibmsiDatabase   *db;
    LibmsiView       *table;
    column_info   *colinfo;
    int hold;
} LibmsiAlterView;

static unsigned alter_view_fetch_int( LibmsiView *view, unsigned row, unsigned col, unsigned *val )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p %d %d %p\n", av, row, col, val );

    return LIBMSI_RESULT_FUNCTION_FAILED;
}

static unsigned alter_view_fetch_stream( LibmsiView *view, unsigned row, unsigned col, GsfInput **stm)
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p %d %d %p\n", av, row, col, stm );

    return LIBMSI_RESULT_FUNCTION_FAILED;
}

static unsigned alter_view_get_row( LibmsiView *view, unsigned row, LibmsiRecord **rec )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p %d %p\n", av, row, rec );

    return av->table->ops->get_row(av->table, row, rec);
}

static unsigned count_iter(LibmsiRecord *row, void *param)
{
    (*(unsigned *)param)++;
    return LIBMSI_RESULT_SUCCESS;
}

static bool check_column_exists(LibmsiDatabase *db, const char *table, const char *column)
{
    LibmsiQuery *view;
    LibmsiRecord *rec;
    unsigned r;

    static const char query[] =
	    "SELECT * FROM `_Columns` WHERE `Table`='%s' AND `Name`='%s'";

    r = _libmsi_query_open(db, &view, query, table, column);
    if (r != LIBMSI_RESULT_SUCCESS)
        return false;

    r = _libmsi_query_execute(view, NULL);
    if (r != LIBMSI_RESULT_SUCCESS)
        goto done;

    r = _libmsi_query_fetch(view, &rec);
    if (r == LIBMSI_RESULT_SUCCESS)
        g_object_unref(rec);

done:
    g_object_unref(view);
    return (r == LIBMSI_RESULT_SUCCESS);
}

static unsigned alter_add_column(LibmsiAlterView *av)
{
    unsigned r, colnum = 1;
    LibmsiQuery *view;
    LibmsiView *columns;

    static const char szColumns[] = "_Columns";
    static const char query[] =
        "SELECT * FROM `_Columns` WHERE `Table`='%s' ORDER BY `Number`";

    r = table_view_create(av->db, szColumns, &columns);
    if (r != LIBMSI_RESULT_SUCCESS)
        return r;

    if (check_column_exists(av->db, av->colinfo->table, av->colinfo->column))
    {
        columns->ops->delete(columns);
        return LIBMSI_RESULT_BAD_QUERY_SYNTAX;
    }

    r = _libmsi_query_open(av->db, &view, query, av->colinfo->table);
    if (r == LIBMSI_RESULT_SUCCESS)
    {
        r = _libmsi_query_iterate_records(view, NULL, count_iter, &colnum);
        g_object_unref(view);
        if (r != LIBMSI_RESULT_SUCCESS)
        {
            columns->ops->delete(columns);
            return r;
        }
    }
    r = columns->ops->add_column(columns, av->colinfo->table,
                                 colnum, av->colinfo->column,
                                 av->colinfo->type, (av->hold == 1));

    columns->ops->delete(columns);
    return r;
}

static unsigned alter_view_execute( LibmsiView *view, LibmsiRecord *record )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;
    unsigned ref;

    TRACE("%p %p\n", av, record);

    if (av->hold == 1)
        av->table->ops->add_ref(av->table);
    else if (av->hold == -1)
    {
        ref = av->table->ops->release(av->table);
        if (ref == 0)
            av->table = NULL;
    }

    if (av->colinfo)
        return alter_add_column(av);

    return LIBMSI_RESULT_SUCCESS;
}

static unsigned alter_view_close( LibmsiView *view )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p\n", av );

    return LIBMSI_RESULT_SUCCESS;
}

static unsigned alter_view_get_dimensions( LibmsiView *view, unsigned *rows, unsigned *cols )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p %p %p\n", av, rows, cols );

    return LIBMSI_RESULT_FUNCTION_FAILED;
}

static unsigned alter_view_get_column_info( LibmsiView *view, unsigned n, const char **name,
                                   unsigned *type, bool *temporary, const char **table_name )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p %d %p %p %p %p\n", av, n, name, type, temporary, table_name );

    return LIBMSI_RESULT_FUNCTION_FAILED;
}

static unsigned alter_view_delete( LibmsiView *view )
{
    LibmsiAlterView *av = (LibmsiAlterView*)view;

    TRACE("%p\n", av );
    if (av->table)
        av->table->ops->delete( av->table );
    msi_free( av );

    return LIBMSI_RESULT_SUCCESS;
}

static unsigned alter_view_find_matching_rows( LibmsiView *view, unsigned col,
    unsigned val, unsigned *row, MSIITERHANDLE *handle )
{
    TRACE("%p, %d, %u, %p\n", view, col, val, *handle);

    return LIBMSI_RESULT_FUNCTION_FAILED;
}

static const LibmsiViewOps alter_ops =
{
    alter_view_fetch_int,
    alter_view_fetch_stream,
    alter_view_get_row,
    NULL,
    NULL,
    NULL,
    alter_view_execute,
    alter_view_close,
    alter_view_get_dimensions,
    alter_view_get_column_info,
    alter_view_delete,
    alter_view_find_matching_rows,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
};

unsigned alter_view_create( LibmsiDatabase *db, LibmsiView **view, const char *name, column_info *colinfo, int hold )
{
    LibmsiAlterView *av;
    unsigned r;

    TRACE("%p %p %s %d\n", view, colinfo, debugstr_a(name), hold );

    av = msi_alloc_zero( sizeof *av );
    if( !av )
        return LIBMSI_RESULT_FUNCTION_FAILED;

    r = table_view_create( db, name, &av->table );
    if (r != LIBMSI_RESULT_SUCCESS)
    {
        msi_free( av );
        return r;
    }

    if (colinfo)
        colinfo->table = name;

    /* fill the structure */
    av->view.ops = &alter_ops;
    av->db = db;
    av->hold = hold;
    av->colinfo = colinfo;

    *view = &av->view;

    return LIBMSI_RESULT_SUCCESS;
}