Skip to content

Commit

Permalink
Merge pull request #293 from talex5/fix-call
Browse files Browse the repository at this point in the history
Fix type of Capability.call
  • Loading branch information
talex5 authored Nov 22, 2024
2 parents ff70ce4 + 510845f commit ae9c3e4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion capnp-rpc/capnp_rpc.mli
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ module Capability : sig
when you send a message, but you might need it if you decide to abort. *)
end

val call : 't t -> ('t, 'a, 'b) Capnp.RPC.MethodID.t -> 'a Request.t -> 'b StructRef.t
val call : 't t -> ('t, 'a, 'b StructStorage.reader_t) Capnp.RPC.MethodID.t -> 'a Request.t -> 'b StructRef.t
(** [call target m req] invokes [target#m req] and returns a promise for the result.
Messages may be sent to the capabilities that will be in the result
before the result arrives - they will be pipelined to the service
Expand Down
24 changes: 24 additions & 0 deletions test/test.ml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,29 @@ let test_calculator2 ~net =
Capability.dec_ref remote_mul;
Capability.dec_ref c

(* Like [Calc.getOperator t `Multiply], but using [Capability.call] to check that works. *)
let get_mul_direct t =
let module Api = Calculator.MakeRPC(Capnp_rpc) in
let open Api.Client.Calculator.GetOperator in
let req, p = Capability.Request.create ~message_size:200 Params.init_pointer in
Params.op_set p Api.Builder.Calculator.Operator.Multiply;
let q = Capability.call t method_id req in
let mul = Results.func_get_pipelined q in
Capnp_rpc.StructRef.dec_ref q;
mul

let test_calculator3 ~net =
Switch.run @@ fun sw ->
let service = Calc.local ~sw in
with_vats ~net ~service @@ fun cs ->
let c = get_bootstrap cs in
let remote_mul = get_mul_direct c in
let expr = Calc.Expr.(Call (remote_mul, [Float 4.; Float 6.])) in
let result = Calc.evaluate c expr |> Calc.Value.final_read in
Alcotest.check float "Result" 24.0 result;
Capability.dec_ref remote_mul;
Capability.dec_ref c

let test_indexing ~net =
Switch.run @@ fun sw ->
let registry_impl = Registry.local ~sw () in
Expand Down Expand Up @@ -731,6 +754,7 @@ let rpc_tests ~net ~dir =
run_eio "Registry" test_registry;
run_eio "Calculator" test_calculator;
run_eio "Calculator 2" test_calculator2;
run_eio "Calculator 3" test_calculator3;
run_eio "Cancel" test_cancel;
run_eio "Indexing" test_indexing;
run "Options" test_options;
Expand Down

0 comments on commit ae9c3e4

Please sign in to comment.