@@ -652,12 +652,37 @@ REGISTER_PAYMENT_MODIFIER(blindedhints, blindedhints_cb);
652
652
653
653
654
654
/*****************************************************************************
655
- * compute_routes
655
+ * getroutes
656
656
*
657
- * Compute the payment routes.
657
+ * Call askrene-getroutes
658
658
*/
659
659
660
- static struct command_result * compute_routes_cb (struct payment * payment )
660
+ static struct command_result * getroutes_done (struct command * cmd ,
661
+ const char * method ,
662
+ const char * buf ,
663
+ const jsmntok_t * tok ,
664
+ struct payment * payment )
665
+ {
666
+ // FIXME: read the response, build the routes
667
+ return payment_continue (payment );
668
+ }
669
+
670
+ static struct command_result * getroutes_fail (struct command * cmd ,
671
+ const char * method ,
672
+ const char * buf ,
673
+ const jsmntok_t * tok ,
674
+ struct payment * payment )
675
+ {
676
+ // FIXME: read the response
677
+ // if can we do something about his failure:
678
+ // disable channels or add biases
679
+ // else:
680
+ // return payment_fail(payment, PAY_STOPPED_RETRYING, "getroutes
681
+ // failed to find a feasible solution %s", explain_error(buf, tok));
682
+ return payment_continue (payment );
683
+ }
684
+
685
+ static struct command_result * getroutes_cb (struct payment * payment )
661
686
{
662
687
assert (payment -> status == PAYMENT_PENDING );
663
688
struct routetracker * routetracker = payment -> routetracker ;
@@ -699,6 +724,57 @@ static struct command_result *compute_routes_cb(struct payment *payment)
699
724
return payment_continue (payment );
700
725
}
701
726
727
+ /* FIXME:
728
+ * call getroutes:
729
+ * input: source, destination, amount, maxfee, final_cltv,
730
+ * maxdelay, layers: [auto.localchans, auto.sourcefree,
731
+ * thispaymenthints, thispaymentexclude, renepayknowledge]
732
+ *
733
+ * possible outcomes:
734
+ * success: then continue
735
+ * fail with hint: try to fix and retry or fail payment
736
+ * */
737
+ struct command * cmd = payment_command (payment );
738
+ struct out_req * req = jsonrpc_request_start (cmd ,
739
+ "getroutes" , getroutes_done , getroutes_fail , payment );
740
+
741
+ // FIXME: add an algorithm selection in askrene such that we could
742
+ // retrieve a single path route if necessary, see issue 8042
743
+ // FIXME: register layers before using then:
744
+ // -> register RENEPAY_LAYER on plugin startup
745
+ // -> register payment->payment_layer when payment is created
746
+ // -> payment_layer should auto clean
747
+ // -> register payment->command_layer when the payment execution
748
+ // starts
749
+ // -> command_layer should auto clean
750
+
751
+ json_add_node_id (req -> js , "source" , & pay_plugin -> my_id );
752
+ json_add_node_id (req -> js , "destination" , payment -> routing_destination );
753
+ json_add_amount_msat (req -> js , "amount_msat" , remaining );
754
+ json_add_amount_msat (req -> js , "maxfee_msat" , feebudget );
755
+ json_add_u32 (req -> js , "final_cltv" , payment -> payment_info .final_cltv );
756
+ json_add_u32 (req -> js , "maxdelay" , payment -> payment_info .maxdelay );
757
+ json_array_start (req -> js , "layers" );
758
+ json_add_string (req -> js , NULL , "auto.localchans" );
759
+ json_add_string (req -> js , NULL , "auto.sourcefree" );
760
+ /* Global knowledge of the network comes here.
761
+ * eg. liquidity estimation for public channels, biases on bad
762
+ * channels/nodes. */
763
+ json_add_string (req -> js , NULL , RENEPAY_LAYER );
764
+ /* Knowledge that is only relevant to this payment comes here.
765
+ * eg. fake nodes/channels, private channel hints, biases on bad
766
+ * channels for this particular routing problem. */
767
+ json_add_string (req -> js , NULL , payment -> payment_layer );
768
+ /* Constraints that are only relevant to the last command invocation
769
+ * comes here.
770
+ * eg. manual node/channel exclusions. */
771
+ json_add_string (req -> js , NULL , payment -> command_layer );
772
+ json_array_end (req -> js );
773
+
774
+ return send_outreq (req );
775
+
776
+ // FIXME: remove from here below
777
+
702
778
enum jsonrpc_errcode errcode ;
703
779
const char * err_msg = NULL ;
704
780
@@ -749,7 +825,7 @@ static struct command_result *compute_routes_cb(struct payment *payment)
749
825
return payment_continue (payment );
750
826
}
751
827
752
- REGISTER_PAYMENT_MODIFIER (compute_routes , compute_routes_cb );
828
+ REGISTER_PAYMENT_MODIFIER (getroutes , getroutes_cb );
753
829
754
830
/*****************************************************************************
755
831
* send_routes
@@ -1258,7 +1334,7 @@ void *payment_virtual_program[] = {
1258
1334
/*16*/ OP_CALL , & pendingsendpays_pay_mod ,
1259
1335
/*18*/ OP_CALL , & checktimeout_pay_mod ,
1260
1336
/*20*/ OP_CALL , & refreshgossmap_pay_mod ,
1261
- /*22*/ OP_CALL , & compute_routes_pay_mod ,
1337
+ /*22*/ OP_CALL , & getroutes_pay_mod ,
1262
1338
/*24*/ OP_CALL , & send_routes_pay_mod ,
1263
1339
/*do*/
1264
1340
/*26*/ OP_CALL , & sleep_pay_mod ,
0 commit comments