exchange/src/exchangedb/exchange_do_batch_reserves_in_insert.sql

111 lines
2.8 KiB
MySQL
Raw Normal View History

2022-12-06 13:29:23 +01:00
--
-- This file is part of TALER
-- Copyright (C) 2014--2022 Taler Systems SA
--
-- TALER 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, or (at your option) any later version.
--
-- TALER 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
-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
--
2022-12-12 12:49:13 +01:00
CREATE OR REPLACE FUNCTION exchange_do_batch_reserves_in_insert(
2022-12-06 13:29:23 +01:00
IN in_reserve_pub BYTEA,
IN in_expiration_date INT8,
IN in_gc_date INT8,
IN in_wire_ref INT8,
IN in_credit_val INT8,
IN in_credit_frac INT4,
IN in_exchange_account_name VARCHAR,
IN in_exectution_date INT8,
IN in_wire_source_h_payto BYTEA, ---h_payto
IN in_payto_uri VARCHAR,
IN in_reserve_expiration INT8,
2022-12-12 12:49:13 +01:00
IN in_notify text,
2022-12-06 13:29:23 +01:00
OUT out_reserve_found BOOLEAN,
OUT transaction_duplicate BOOLEAN,
OUT ruuid INT8)
LANGUAGE plpgsql
AS $$
2023-01-06 17:05:05 +01:00
DECLARE
curs refcursor;
DECLARE
i RECORD;
2022-12-06 13:29:23 +01:00
BEGIN
2022-12-21 14:06:47 +01:00
ruuid= 0;
out_reserve_found = TRUE;
2023-01-04 13:31:08 +01:00
transaction_duplicate= TRUE;
2022-12-12 12:49:13 +01:00
--SIMPLE INSERT ON CONFLICT DO NOTHING
INSERT INTO wire_targets
(wire_target_h_payto
,payto_uri)
VALUES
(in_wire_source_h_payto
,in_payto_uri)
ON CONFLICT DO NOTHING;
2022-12-06 13:29:23 +01:00
2023-01-06 17:05:05 +01:00
OPEN curs FOR
WITH reserve_changes AS (
INSERT INTO reserves
(reserve_pub
,current_balance_val
,current_balance_frac
,expiration_date
,gc_date)
VALUES
(in_reserve_pub
,in_credit_val
,in_credit_frac
,in_expiration_date
,in_gc_date)
ON CONFLICT DO NOTHING
RETURNING reserve_uuid, reserve_pub)
SELECT * FROM reserve_changes;
FETCH FROM curs INTO i;
2022-12-06 13:29:23 +01:00
IF FOUND
THEN
-- We made a change, so the reserve did not previously exist.
2023-01-06 17:05:05 +01:00
IF in_reserve_pub = i.reserve_pub
THEN
out_reserve_found = FALSE;
ruuid = i.reserve_uuid;
END IF;
2022-12-06 13:29:23 +01:00
END IF;
2023-01-06 17:05:05 +01:00
CLOSE curs;
2022-12-21 14:06:47 +01:00
PERFORM pg_notify(in_notify, NULL);
2022-12-06 13:29:23 +01:00
INSERT INTO reserves_in
(reserve_pub
,wire_reference
,credit_val
,credit_frac
,exchange_account_section
,wire_source_h_payto
,execution_date)
VALUES
(in_reserve_pub
,in_wire_ref
,in_credit_val
,in_credit_frac
,in_exchange_account_name
,in_wire_source_h_payto
2022-12-12 12:49:13 +01:00
,in_expiration_date)
ON CONFLICT DO NOTHING;
2022-12-06 13:29:23 +01:00
IF FOUND
THEN
2023-01-04 13:31:08 +01:00
-- HAPPY PATH THERE IS NO DUPLICATE TRANS
transaction_duplicate = FALSE;
2022-12-06 13:29:23 +01:00
ELSE
2023-01-04 13:31:08 +01:00
-- Unhappy...
2023-01-06 17:05:05 +01:00
RAISE EXCEPTION 'Reserve did not exist, but INSERT into reserves_in gave conflict';
2022-12-21 14:06:47 +01:00
transaction_duplicate = TRUE;
2023-01-06 12:16:52 +01:00
-- ROLLBACK;
2022-12-06 13:29:23 +01:00
END IF;
2022-12-21 14:06:47 +01:00
RETURN;
2022-12-06 13:29:23 +01:00
END $$;