Begin to add support for importing narinfo files

This commit adds the tables, as well as code to support extracting data from
narinfo files.
This commit is contained in:
Christopher Baines 2019-11-30 10:51:58 +00:00
parent 20c75e1103
commit b6194e7b3d
6 changed files with 321 additions and 0 deletions

View file

@ -0,0 +1,53 @@
-- Deploy guix-data-service:nar_related_tables to pg
BEGIN;
CREATE TABLE nars (
id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
store_path varchar NOT NULL,
hash_algorithm varchar NOT NULL,
hash varchar NOT NULL,
size integer NOT NULL,
system varchar,
deriver varchar
);
CREATE TABLE nar_urls (
nar_id integer NOT NULL REFERENCES nars(id),
url varchar PRIMARY KEY,
compression varchar NOT NULL,
file_size integer NOT NULL
);
CREATE TABLE nar_references (
nar_id integer NOT NULL REFERENCES nars(id),
reference varchar NOT NULL
);
CREATE TABLE narinfo_signature_public_keys (
id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
sexp_json jsonb NOT NULL,
UNIQUE (sexp_json)
);
CREATE TABLE narinfo_signature_data (
id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
version integer NOT NULL,
host_name varchar NOT NULL,
data_hash varchar NOT NULL,
data_hash_algorithm varchar NOT NULL,
data_json jsonb NOT NULL,
sig_val_json jsonb NOT NULL,
narinfo_signature_public_key_id integer NOT NULL REFERENCES narinfo_signature_public_keys(id),
narinfo_body varchar NOT NULL,
narinfo_signature_line varchar NOT NULL,
UNIQUE (narinfo_signature_line)
);
CREATE TABLE narinfo_signatures (
nar_id integer NOT NULL REFERENCES nars(id),
narinfo_signature_data_id integer NOT NULL REFERENCES narinfo_signature_data(id),
UNIQUE (nar_id, narinfo_signature_data_id)
);
COMMIT;

View file

@ -0,0 +1,12 @@
-- Revert guix-data-service:nar_related_tables from pg
BEGIN;
DROP TABLE narinfo_signatures;
DROP TABLE narinfo_signature_data;
DROP TABLE narinfo_signature_public_keys;
DROP TABLE nar_references;
DROP TABLE nar_urls;
DROP TABLE nars;
COMMIT;

View file

@ -29,3 +29,4 @@ package_derivations_by_guix_revision_range 2019-11-09T19:09:48Z Christopher Bain
channel_news_tables 2019-11-15T07:32:07Z Christopher Baines <mail@cbaines.net> # Add tables to store channel news
build_server_token_seeds 2019-11-23T09:26:48Z Christopher Baines <mail@cbaines.net> # Add build_server_token_seeds table
rework_builds 2019-11-23T20:41:20Z Christopher Baines <mail@cbaines.net> # Rework the build tables
nar_related_tables 2019-11-29T20:28:19Z Christopher Baines <mail@cbaines.net> # Add nar related tables

View file

@ -0,0 +1,7 @@
-- Verify guix-data-service:nar_related_tables on pg
BEGIN;
-- XXX Add verifications here.
ROLLBACK;