diff options
author | John Estabrook <jestabro@vyos.io> | 2025-03-30 15:30:39 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-03-31 00:50:30 -0500 |
commit | 56b05dc3b8d04de25489b4510ba25efc584ebc7a (patch) | |
tree | e70327dc233daaf9bca548ba036045cae7e29f9e /src/session.ml | |
parent | bed066dbf1b6cf9d606c0f1f827cce30f4dcc430 (diff) | |
download | vyconf-56b05dc3b8d04de25489b4510ba25efc584ebc7a.tar.gz vyconf-56b05dc3b8d04de25489b4510ba25efc584ebc7a.zip |
T7272: add commit processing of commitd response
Diffstat (limited to 'src/session.ml')
-rw-r--r-- | src/session.ml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/session.ml b/src/session.ml index 567f999..9e78be3 100644 --- a/src/session.ml +++ b/src/session.ml @@ -1,6 +1,8 @@ module CT = Vyos1x.Config_tree module VT = Vyos1x.Vytree module RT = Vyos1x.Reference_tree +module CC = Commitd_client.Commit +module VC = Commitd_client.Vycall_client module D = Directories exception Session_error of string @@ -88,6 +90,21 @@ let delete w s path = let config = apply_cfg_op op s.proposed_config in {s with proposed_config=config; changeset=(op :: s.changeset)} +let commit w s t = + let at = w.running_config in + let wt = s.proposed_config in + let rt = w.reference_tree in + let commit_data = CC.make_commit_data rt at wt t in + let received_commit_data = VC.do_commit commit_data in + let result_commit_data = + try + CC.commit_update received_commit_data + with CC.Commit_error e -> + raise (Session_error (Printf.sprintf "Commit internal error: %s" e)) + in + w.running_config <- result_commit_data.config_result; + result_commit_data.result.success, result_commit_data.result.out + let get_value w s path = if not (VT.exists s.proposed_config path) then raise (Session_error ("Config path does not exist")) |