Line data Source code
1 : /*
2 : * SPDX-License-Identifier: MPL-2.0
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * Copyright 2024 MonetDB Foundation;
9 : * Copyright August 2008 - 2023 MonetDB B.V.;
10 : * Copyright 1997 - July 2008 CWI.
11 : */
12 :
13 : #include "monetdb_config.h"
14 : #include "res_table.h"
15 : #include "bat_utils.h"
16 : #include "sql_types.h"
17 :
18 : static void
19 276549 : bat_incref(bat bid)
20 : {
21 276549 : BBPretain(bid);
22 276552 : }
23 :
24 : static void
25 276548 : bat_decref(bat bid)
26 : {
27 276548 : BBPrelease(bid);
28 276538 : }
29 :
30 : res_table *
31 125912 : res_table_create(sql_trans *tr, int res_id, oid query_id, int nr_cols, mapi_query_t type, res_table *next)
32 : {
33 125912 : res_table *t = MNEW(res_table);
34 125915 : res_col *tcols = ZNEW_ARRAY(res_col, nr_cols);
35 :
36 125914 : (void) tr;
37 125914 : if (!t || !tcols) {
38 0 : _DELETE(t);
39 0 : _DELETE(tcols);
40 0 : return NULL;
41 : }
42 :
43 125914 : *t = (res_table) {
44 : .id = res_id,
45 : .query_id = query_id,
46 : .query_type = type,
47 : .cols = tcols,
48 : .nr_cols = nr_cols,
49 : .next = next,
50 : };
51 :
52 125914 : return t;
53 : }
54 :
55 : res_col *
56 345194 : res_col_create(sql_trans *tr, res_table *t, const char *tn, const char *name, const char *typename, int digits, int scale, bool isbat, char mtype, void *val, bool cached)
57 : {
58 345194 : res_col *c = t->cols + t->cur_col;
59 345194 : BAT *b;
60 :
61 345194 : if (!sql_find_subtype(&c->type, typename, digits, scale))
62 343 : sql_init_subtype(&c->type, sql_trans_bind_type(tr, NULL, typename), digits, scale);
63 345194 : c->tn = _STRDUP(tn);
64 345195 : c->name = _STRDUP(name);
65 345195 : if (c->tn == NULL || c->name == NULL) {
66 0 : _DELETE(c->tn);
67 0 : _DELETE(c->name);
68 0 : return NULL;
69 : }
70 345195 : c->b = 0;
71 345195 : c->p = NULL;
72 345195 : c->mtype = mtype;
73 345195 : if (isbat) {
74 283790 : b = (BAT*)val;
75 283790 : if (b && t->cur_col == 0)
76 65196 : t->nr_rows = BATcount(b);
77 : } else { // wrap scalar values in BATs for result consistency
78 61405 : b = COLnew(0, mtype, 1, TRANSIENT);
79 61404 : if (b == NULL) {
80 0 : _DELETE(c->tn);
81 0 : _DELETE(c->name);
82 0 : return NULL;
83 : }
84 61404 : if (BUNappend(b, val, false) != GDK_SUCCEED) {
85 0 : BBPreclaim(b);
86 0 : _DELETE(c->tn);
87 0 : _DELETE(c->name);
88 0 : return NULL;
89 : }
90 61400 : if (t->cur_col == 0)
91 60708 : t->nr_rows = 1;
92 : cached = true; /* simply keep memory pointer for this small bat */
93 : }
94 345190 : c->b = b->batCacheid;
95 345190 : c->cached = cached;
96 345190 : if (cached)
97 68641 : c->p = (void*)b;
98 : else
99 276549 : bat_incref(c->b);
100 345193 : t->cur_col++;
101 345193 : assert(t->cur_col <= t->nr_cols);
102 : return c;
103 : }
104 :
105 : static void
106 345184 : res_col_destroy(res_col *c)
107 : {
108 345184 : if (c->b && !c->cached) {
109 276548 : bat_decref(c->b);
110 68636 : } else if (c->b) {
111 68636 : bat_destroy((BAT*)c->p);
112 : } else {
113 0 : _DELETE(c->p);
114 : }
115 345158 : _DELETE(c->name);
116 345202 : _DELETE(c->tn);
117 345203 : }
118 :
119 : void
120 125855 : res_table_destroy(res_table *t)
121 : {
122 125855 : int i;
123 :
124 471100 : for (i = 0; i < t->nr_cols; i++) {
125 345188 : res_col *c = t->cols + i;
126 :
127 345188 : if (c)
128 345188 : res_col_destroy(c);
129 : }
130 125912 : _DELETE(t->cols);
131 125912 : _DELETE(t);
132 125915 : }
133 :
134 : res_table *
135 123325 : res_tables_remove(res_table *results, res_table *t)
136 : {
137 123325 : res_table *r = results;
138 :
139 123325 : if (r == t) {
140 123325 : results = t->next;
141 : } else {
142 0 : for (; r; r = r->next) {
143 0 : if (r->next == t) {
144 0 : r->next = t->next;
145 0 : break;
146 : }
147 : }
148 : }
149 123325 : res_table_destroy(t);
150 123369 : return results;
151 : }
152 :
153 : void
154 37413 : res_tables_destroy(res_table *tab)
155 : {
156 37413 : if (tab) {
157 174 : res_table *r = tab, *t;
158 :
159 174 : for (t = r; t; t = r) {
160 145 : r = t->next;
161 145 : res_table_destroy(t);
162 : }
163 : }
164 37413 : }
165 :
166 : res_table *
167 253386 : res_tables_find(res_table *results, int res_id)
168 : {
169 253386 : res_table *r = results;
170 :
171 267152 : for (; r; r = r->next) {
172 263176 : if (r->id == res_id)
173 249410 : return r;
174 : }
175 : return NULL;
176 : }
|