14
14
#include <common/gossmods_listpeerchannels.h>
15
15
#include <common/json_param.h>
16
16
#include <common/json_stream.h>
17
+ #include <common/memleak.h>
17
18
#include <common/route.h>
18
19
#include <errno.h>
19
20
#include <math.h>
@@ -623,6 +624,8 @@ static struct command_result *do_getroutes(struct command *cmd,
623
624
* info -> amount , * info -> maxfee , * info -> finalcltv ,
624
625
info -> layers , localmods , info -> local_layer ,
625
626
& routes , & amounts , info -> additional_costs , & probability );
627
+
628
+ // FIXME: add a special failure with hints to channels to blame
626
629
if (err )
627
630
return command_fail (cmd , PAY_ROUTE_NOT_FOUND , "%s" , err );
628
631
@@ -1060,6 +1063,27 @@ static struct command_result *json_askrene_disable_node(struct command *cmd,
1060
1063
return command_finished (cmd , response );
1061
1064
}
1062
1065
1066
+ static struct command_result * expire_layer_done (struct command * timer_cmd ,
1067
+ const char * method ,
1068
+ const char * buf ,
1069
+ const jsmntok_t * result ,
1070
+ void * unused )
1071
+ {
1072
+ return timer_complete (timer_cmd );
1073
+ }
1074
+
1075
+ static struct command_result * expire_layer (struct command * timer_cmd ,
1076
+ struct layer * l )
1077
+ {
1078
+ struct out_req * req ;
1079
+ req = jsonrpc_request_start (timer_cmd , "askrene-remove-layer" ,
1080
+ expire_layer_done , plugin_broken_cb , NULL );
1081
+ json_add_string (req -> js , "layer" , layer_name (l ));
1082
+ plugin_log (timer_cmd -> plugin , LOG_DBG , "removing expired layer '%s'" ,
1083
+ layer_name (l ));
1084
+ return send_outreq (req );
1085
+ }
1086
+
1063
1087
static struct command_result * json_askrene_create_layer (struct command * cmd ,
1064
1088
const char * buffer ,
1065
1089
const jsmntok_t * params )
@@ -1069,10 +1093,12 @@ static struct command_result *json_askrene_create_layer(struct command *cmd,
1069
1093
const char * layername ;
1070
1094
struct json_stream * response ;
1071
1095
bool * persistent ;
1096
+ u64 * expire_seconds ;
1072
1097
1073
1098
if (!param_check (cmd , buffer , params ,
1074
1099
p_req ("layer" , param_string , & layername ),
1075
1100
p_opt_def ("persistent" , param_bool , & persistent , false),
1101
+ p_opt ("expiration" , param_u64 , & expire_seconds ),
1076
1102
NULL ))
1077
1103
return command_param_failed ();
1078
1104
@@ -1093,6 +1119,11 @@ static struct command_result *json_askrene_create_layer(struct command *cmd,
1093
1119
if (!layer )
1094
1120
layer = new_layer (askrene , layername , * persistent );
1095
1121
1122
+ if (expire_seconds )
1123
+ notleak (global_timer (cmd -> plugin ,
1124
+ time_from_sec (* expire_seconds ),
1125
+ expire_layer , layer ));
1126
+
1096
1127
response = jsonrpc_stream_success (cmd );
1097
1128
json_add_layers (response , askrene , "layers" , layer );
1098
1129
return command_finished (cmd , response );
0 commit comments