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:
parent
20c75e1103
commit
b6194e7b3d
6 changed files with 321 additions and 0 deletions
53
sqitch/deploy/nar_related_tables.sql
Normal file
53
sqitch/deploy/nar_related_tables.sql
Normal 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;
|
||||
12
sqitch/revert/nar_related_tables.sql
Normal file
12
sqitch/revert/nar_related_tables.sql
Normal 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;
|
||||
|
|
@ -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
|
||||
|
|
|
|||
7
sqitch/verify/nar_related_tables.sql
Normal file
7
sqitch/verify/nar_related_tables.sql
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-- Verify guix-data-service:nar_related_tables on pg
|
||||
|
||||
BEGIN;
|
||||
|
||||
-- XXX Add verifications here.
|
||||
|
||||
ROLLBACK;
|
||||
Loading…
Add table
Add a link
Reference in a new issue