Client/Baking: use wallet lock

This commit is contained in:
Mathias 2018-05-22 15:25:41 +02:00 committed by Grégoire Henry
parent c0a47a5b6f
commit c4549650b5

View File

@ -10,7 +10,6 @@
open Proto_alpha open Proto_alpha
open Alpha_context open Alpha_context
(* TODO locking... *)
type t = (Block_hash.t * Nonce.t) list type t = (Block_hash.t * Nonce.t) list
@ -28,29 +27,36 @@ let load (wallet : #Client_context.wallet) =
wallet#load ~default:[] name encoding wallet#load ~default:[] name encoding
let save (wallet : #Client_context.wallet) list = let save (wallet : #Client_context.wallet) list =
wallet#write name list encoding wallet#with_lock (fun () ->
wallet#write name list encoding)
let mem (wallet : #Client_context.wallet) block_hash = let mem (wallet : #Client_context.wallet) block_hash =
wallet#with_lock (fun () ->
load wallet >>|? fun data -> load wallet >>|? fun data ->
List.mem_assoc block_hash data List.mem_assoc block_hash data)
let find wallet block_hash = let find (wallet : #Client_context.wallet) block_hash =
wallet#with_lock ( fun () ->
load wallet >>|? fun data -> load wallet >>|? fun data ->
try Some (List.assoc block_hash data) try Some (List.assoc block_hash data)
with Not_found -> None with Not_found -> None)
let add wallet block_hash nonce =
let add (wallet : #Client_context.wallet) block_hash nonce =
wallet#with_lock ( fun () ->
load wallet >>=? fun data -> load wallet >>=? fun data ->
save wallet ((block_hash, nonce) :: save wallet ((block_hash, nonce) ::
List.remove_assoc block_hash data) List.remove_assoc block_hash data))
let del wallet block_hash = let del (wallet : #Client_context.wallet) block_hash =
wallet#with_lock ( fun () ->
load wallet >>=? fun data -> load wallet >>=? fun data ->
save wallet (List.remove_assoc block_hash data) save wallet (List.remove_assoc block_hash data))
let dels wallet hashes = let dels (wallet : #Client_context.wallet) hashes =
wallet#with_lock ( fun () ->
load wallet >>=? fun data -> load wallet >>=? fun data ->
save wallet @@ save wallet @@
List.fold_left List.fold_left
(fun data hash -> List.remove_assoc hash data) (fun data hash -> List.remove_assoc hash data)
data hashes data hashes)