# 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
# .
#
# 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//