summaryrefslogtreecommitdiffstats
path: root/src/db.sh
blob: 944d7010364d13a9ce0411b99d5b58b9a82d6d03 (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
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
300
301
302
# pro-archman
# src/db.sh
# Functions for querying and modifying the database
#
# Copyright (C) 2013  Patrick McDermott
#
# This file is part of the ProteanOS Archive Manager.
#
# The ProteanOS Archive Manager is free software: you can redistribute
# it and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# The ProteanOS Archive Manager 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 General Public License
# along with the ProteanOS Archive Manager.  If not, see
# <http://www.gnu.org/licenses/>.

#
# Functions for the suites indices
#

db_get_srcver()
{
	local chan="${1}"
	local dist="${2}"
	local source="${3}"
	shift 3
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}"
	if [ -f "${dir}/srcver" ]; then
		cat -- "${dir}/srcver"
	fi

	return 0
}

db_set_srcver()
{
	local chan="${1}"
	local dist="${2}"
	local source="${3}"
	local srcver="${4}"
	shift 4
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}"
	mkdir -p -- "${dir}"
	printf '%s\n' "${srcver}" >"${dir}/srcver"

	return 0
}

db_del_srcver()
{
	local chan="${1}"
	local dist="${2}"
	local source="${3}"
	shift 3
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}"
	rm -f -- "${dir}/srcver"
	# Remove ".../.db/<hash>/<source>".
	rmdir -- "${dir}"
	# Try to remove ".../.db/<hash>" and ".../.db".
	for dir in "${dir%/*}" "${dir%/*/*}"; do
		try_rmdir "${dir}" || break
	done

	return 0
}

db_get_binver()
{
	local chan="${1}"
	local dist="${2}"
	local arch="${3}"
	local plat="${4}"
	local source="${5}"
	shift 5
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}/${arch}_${plat}"
	if [ -f "${dir}/binver" ]; then
		cat -- "${dir}/binver"
	fi

	return 0
}

db_set_binver()
{
	local chan="${1}"
	local dist="${2}"
	local arch="${3}"
	local plat="${4}"
	local source="${5}"
	local binver="${6}"
	shift 6
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}/${arch}_${plat}"
	mkdir -p -- "${dir}"
	printf '%s\n' "${binver}" >"${dir}/binver"

	return 0
}

db_del_binver()
{
	local chan="${1}"
	local dist="${2}"
	local arch="${3}"
	local plat="${4}"
	local source="${5}"
	shift 5
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}/${arch}_${plat}"
	rm -f -- "${dir}/binver"
	# Remove ".../.db/<hash>/<source>/<arch>_<plat>".
	rmdir -- "${dir}"

	return 0
}

db_foreach_source()
{
	local chan="${1}"
	local dist="${2}"
	local cb="${3}"
	shift 3
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	# For each hash:
	for dir in "${dir}/"*/; do
		if [ ! -d "${dir}" ]; then
			continue
		fi
		# For each source:
		for dir in "${dir}/"*/; do
			if [ ! -d "${dir}" ]; then
				continue
			fi
			dir="${dir%/}"
			dir="${dir##*/}"
			"${cb}" "${chan}" "${dist}" "${dir}" "${@}"
		done
	done

	return 0
}

db_get_archplats()
{
	local chan="${1}"
	local dist="${2}"
	local source="${3}"
	shift 3
	local dir=

	dir="${base_dir}/feeds/${chan}/${dist}/.db"
	dir="${dir}/$(hash_name "${source}")/${source}"
	for dir in "${dir}/"*_*/; do
		if [ ! -d "${dir}" ]; then
			continue
		fi
		dir="${dir%/}"
		dir="${dir##*/}"
		printf '%s %s\n' "${dir%%_*}" "${dir#*_}"
	done

	return 0
}

#
# Functions for the pool indices
#

db_get_packages()
{
	local arch="${1}"
	local plat="${2}"
	local source="${3}"
	local binver="${4}"
	shift 4
	local dir=

	dir="${base_dir}/pool/$(hash_name "${source}")/${source}/.db"
	dir="${dir}/${binver}_${arch}_${plat}"
	if [ -f "${dir}/packages" ]; then
		cat -- "${dir}/packages"
	fi

	return 0
}

db_add_package()
{
	local arch="${1}"
	local plat="${2}"
	local source="${3}"
	local binver="${4}"
	local size="${5}"
	local sect="${6}"
	local pkg="${7}"
	shift 7
	local dir=

	dir="${base_dir}/pool/$(hash_name "${source}")/${source}/.db"
	dir="${dir}/${binver}_${arch}_${plat}"
	mkdir -p -- "${dir}"
	printf '%s %s %s\n' "${size}" "${sect}" "${pkg}" >>"${dir}/packages"

	return 0
}

db_del_packages()
{
	local arch="${1}"
	local plat="${2}"
	local source="${3}"
	local binver="${4}"
	shift 4
	local dir=

	dir="${base_dir}/pool/$(hash_name "${source}")/${source}/.db"
	dir="${dir}/${binver}_${arch}_${plat}"
	rm -f -- "${dir}/packages"
	# Remove "pool/<hash>/<source>/.db/<binver>_<arch>_<plat>".
	rmdir -- "${dir}"
	# Try to remove "pool/<hash>/<source>/.db".
	try_rmdir "${dir%/*}" || :

	return 0
}

db_inc_references()
{
	local arch="${1}"
	local plat="${2}"
	local source="${3}"
	local binver="${4}"
	shift 4
	local dir=
	local refs=

	dir="${base_dir}/pool/$(hash_name "${source}")/${source}/.db"
	dir="${dir}/${binver}_${arch}_${plat}"
	if [ -f "${dir}/references" ]; then
		refs="$(cat -- "${dir}/references")"
		refs=$((${refs} + 1))
	else
		refs=1
		mkdir -p -- "${dir}"
	fi
	printf '%d\n' "${refs}" >"${dir}/references"
	printf '%d\n' "${refs}"

	return 0
}

db_dec_references()
{
	local arch="${1}"
	local plat="${2}"
	local source="${3}"
	local binver="${4}"
	shift 4
	local dir=
	local refs=

	dir="${base_dir}/pool/$(hash_name "${source}")/${source}/.db"
	dir="${dir}/${binver}_${arch}_${plat}"
	if [ -f "${dir}/references" ]; then
		refs="$(cat "${dir}/references")"
		refs=$((${refs} - 1))
	else
		refs=0
	fi
	if [ ${refs} -eq 0 ]; then
		rm -f -- "${dir}/references"
	else
		printf '%d\n' "${refs}" >"${dir}/references"
	fi
	printf '%d\n' "${refs}"

	return 0
}