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
|
# dbarray.awk -- persistent array with sqlite database backend
# @load "bindarr"
BEGIN {
extension("./bindarr.so")
}
function _db_count(symbol, sq,
sth, ret, count)
{
sth = sq["sqlc"]
printf "SELECT count(col1) FROM %s;\n", sq["table"] |& sth
close(sth, "to")
ret = (sth |& getline count)
if (close(sth) != 0 || ret <= 0)
return -1
return count
}
function _db_exists(symbol, sq, subs,
sth, ret, row, qsubs)
{
if (! (subs in symbol)) {
sth = sq["sqlc"]
# double up single quotes
qsubs = gensub(/'/, "''", "g", subs)
printf "SELECT col2 FROM %s WHERE col1='%s';\n", sq["table"], qsubs |& sth
close(sth, "to")
ret = (sth |& getline row)
if (close(sth) != 0 || ret < 0)
return -1
if (ret == 0) # non-existent row
return 0
if (row == sq["null"])
symbol[subs] # install null string as value
else
symbol[subs] = row
}
return 0
}
function _db_lookup(symbol, sq, subs,
sth, ret, row, qsubs)
{
if (! (subs in symbol)) {
sth = sq["sqlc"]
# double up single quotes
qsubs = gensub(/'/, "''", "g", subs)
printf "SELECT col2 FROM %s WHERE col1='%s';\n", sq["table"], qsubs |& sth
close(sth, "to")
ret = (sth |& getline row)
if (close(sth) != 0 || ret < 0)
return -1
if (ret > 0) {
if (row == sq["null"])
symbol[subs] # install null string as value
else
symbol[subs] = row
} else {
# Not there, install it with NULL as value
printf "INSERT INTO %s (col1) VALUES('%s');\n", sq["table"], qsubs |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret < 0)
return -1
}
}
return 0
}
function _db_clear(symbol, sq,
sth, ret)
{
sth = sq["sqlc"]
printf "DELETE FROM %s;\n", sq["table"] |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret < 0)
return -1
return 0
}
function _db_delete(symbol, sq, subs,
sth, ret, qsubs)
{
sth = sq["sqlc"]
qsubs = gensub(/'/, "''", "g", subs)
printf "DELETE FROM %s WHERE col1='%s';\n", sq["table"], qsubs |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret < 0)
return -1
return 0
}
function _db_store(symbol, sq, subs,
sth, ret, qsubs, qval)
{
sth = sq["sqlc"]
qval = gensub(/'/, "''", "g", symbol[subs])
qsubs = gensub(/'/, "''", "g", subs)
printf "UPDATE %s SET col2='%s' WHERE col1='%s';\n", \
sq["table"], qval, qsubs |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret < 0)
return -1
return 0
}
function _db_fetchall(symbol, sq,
sth, ret, save_RS, save_FS)
{
sth = sq["sqlc2"]
if (! sq["loaded"]) {
printf "SELECT col1, col2 FROM %s;\n", sq["table"] |& sth
close(sth, "to")
save_RS = RS
save_FS = FS
RS = "\n\n"
FS = "\n"
while ((ret = (sth |& getline)) > 0) {
sub(/^ *col1 = /, "", $1)
sub(/^ *col2 = /, "", $2)
if ($2 == sq["null"])
symbol[$1] # install null string as value
else
symbol[$1] = $2
}
RS = save_RS
FS = save_FS
if (ret < 0 || close(sth) != 0)
return -1
sq["loaded"] = 1
}
}
function _db_init(symbol, sq,
sth, table, ret)
{
sth = sq["sqlc"]
table = sq["table"]
# check if table exists
printf ".tables %s\n", table |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret < 0)
return -1
if (ret > 0 && $0 == table) {
# verify schema
printf ".schema %s\n", table |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret <= 0)
return -1
if ($0 !~ /\(col1 TEXT PRIMARY KEY, col2 TEXT\)/) {
printf "table %s: Invalid column name or type(s)\n", table > "/dev/stderr"
return -1
}
} else {
# table does not exist, create it.
printf "CREATE TABLE %s (col1 TEXT PRIMARY KEY, col2 TEXT);\n", table |& sth
close(sth, "to")
ret = (sth |& getline)
if (close(sth) != 0 || ret < 0)
return -1
}
return 0
}
#function _db_fini(tie, a, subs) {}
function db_bind(arr, database, table, sq)
{
if (! database) {
print "db_bind: must specify a database name" > "/dev/stderr"
exit(1)
}
if (! table) {
print "db_bind: must specify a table name" > "/dev/stderr"
exit(1)
}
# string used by the sqlite3 client to represent NULL
sq["null"] = "(null)"
sq["sqlc"] = sprintf("sqlite3 -nullvalue '%s' %s", sq["null"], database)
# sqlite command used in _db_fetchall
sq["sqlc2"] = sprintf("sqlite3 -line -nullvalue '%s' %s", sq["null"], database)
sq["table"] = table
# register our array routines
sq["init"] = "_db_init"
sq["count"] = "_db_count"
sq["exists"] = "_db_exists"
sq["lookup"] = "_db_lookup"
sq["delete"] = "_db_delete"
sq["store"] = "_db_store"
sq["clear"] = "_db_clear"
sq["fetchall"] = "_db_fetchall"
# sq["fini"] = "_db_fini";
bind_array(arr, sq)
}
function db_unbind(arr)
{
unbind_array(arr)
}
|