@@ -10,10 +10,16 @@ use clap::Parser;
10
10
use log:: LevelFilter ;
11
11
use sim_lib:: {
12
12
cln:: ClnNode , lnd:: LndNode , ActivityDefinition , LightningError , LightningNode , NodeConnection ,
13
- NodeId , SimParams , Simulation ,
13
+ NodeId , PrintResults , SimParams , Simulation ,
14
14
} ;
15
15
use simple_logger:: SimpleLogger ;
16
16
17
+ /// The default directory where the simulation files are stored and where the results will be written to.
18
+ pub const DEFAULT_DATA_DIR : & str = "." ;
19
+
20
+ /// The default simulation file to be used by the simulator.
21
+ pub const DEFAULT_SIM_FILE : & str = "sim.json" ;
22
+
17
23
/// The default expected payment amount for the simulation, around ~$10 at the time of writing.
18
24
pub const EXPECTED_PAYMENT_AMOUNT : u64 = 3_800_000 ;
19
25
@@ -42,9 +48,12 @@ fn deserialize_f64_greater_than_zero(x: String) -> Result<f64, String> {
42
48
#[ derive( Parser ) ]
43
49
#[ command( version, about) ]
44
50
struct Cli {
51
+ /// Path to a directory containing simulation files, and where simulation results will be stored
52
+ #[ clap( long, short, env = "SIM_LN_DATA_DIR" , default_value = DEFAULT_DATA_DIR ) ]
53
+ data_dir : PathBuf ,
45
54
/// Path to the simulation file to be used by the simulator
46
- #[ clap( index = 1 ) ]
47
- sim_file : PathBuf ,
55
+ #[ clap( long , short , default_value = DEFAULT_SIM_FILE ) ]
56
+ sim_file : String ,
48
57
/// Total time the simulator will be running
49
58
#[ clap( long, short) ]
50
59
total_time : Option < u32 > ,
@@ -77,8 +86,9 @@ async fn main() -> anyhow::Result<()> {
77
86
. init ( )
78
87
. unwrap ( ) ;
79
88
89
+ let sim_path = read_sim_path ( cli. data_dir . clone ( ) , cli. sim_file ) . await ?;
80
90
let SimParams { nodes, activity } =
81
- serde_json:: from_str ( & std:: fs:: read_to_string ( cli . sim_file ) ?)
91
+ serde_json:: from_str ( & std:: fs:: read_to_string ( sim_path ) ?)
82
92
. map_err ( |e| anyhow ! ( "Could not deserialize node connection data or activity description from simulation file (line {}, col {})." , e. line( ) , e. column( ) ) ) ?;
83
93
84
94
let mut clients: HashMap < PublicKey , Arc < Mutex < dyn LightningNode + Send > > > = HashMap :: new ( ) ;
@@ -179,14 +189,22 @@ async fn main() -> anyhow::Result<()> {
179
189
} ) ;
180
190
}
181
191
192
+ let print_results = if !cli. no_results {
193
+ Some ( PrintResults {
194
+ results_dir : mkdir ( cli. data_dir . clone ( ) . join ( "results" ) ) . await ?,
195
+ batch_size : cli. print_batch_size ,
196
+ } )
197
+ } else {
198
+ None
199
+ } ;
200
+
182
201
let sim = Simulation :: new (
183
202
clients,
184
203
validated_activities,
185
204
cli. total_time ,
186
- cli. print_batch_size ,
187
205
cli. expected_pmt_amt ,
188
206
cli. capacity_multiplier ,
189
- cli . no_results ,
207
+ print_results ,
190
208
) ;
191
209
let sim2 = sim. clone ( ) ;
192
210
@@ -199,3 +217,47 @@ async fn main() -> anyhow::Result<()> {
199
217
200
218
Ok ( ( ) )
201
219
}
220
+
221
+ async fn read_sim_path ( data_dir : PathBuf , sim_file : String ) -> anyhow:: Result < PathBuf > {
222
+ let sim_path = data_dir. join ( sim_file) ;
223
+
224
+ let sim_path = if sim_path. extension ( ) . is_none ( ) {
225
+ sim_path. with_extension ( "json" )
226
+ } else {
227
+ sim_path
228
+ } ;
229
+
230
+ if sim_path. exists ( ) {
231
+ Ok ( sim_path)
232
+ } else {
233
+ let sim_files: Vec < String > = std:: fs:: read_dir ( data_dir. clone ( ) ) ?
234
+ . filter_map ( |f| {
235
+ f. ok ( ) . and_then ( |f| {
236
+ if f. path ( ) . extension ( ) ?. to_str ( ) ? == "json" {
237
+ return f. file_name ( ) . into_string ( ) . ok ( ) ;
238
+ }
239
+ None
240
+ } )
241
+ } )
242
+ . collect :: < Vec < _ > > ( ) ;
243
+
244
+ if sim_files. is_empty ( ) {
245
+ anyhow:: bail!( "no simulation files found in {:?}." , data_dir) ;
246
+ }
247
+
248
+ let selection = dialoguer:: Select :: new ( )
249
+ . with_prompt ( "Select a simulation file" )
250
+ . items ( & sim_files)
251
+ . default ( 0 )
252
+ . interact ( ) ?;
253
+
254
+ Ok ( data_dir. join ( sim_files[ selection] . clone ( ) ) )
255
+ }
256
+ }
257
+
258
+ async fn mkdir ( dir : PathBuf ) -> anyhow:: Result < PathBuf > {
259
+ if !dir. exists ( ) {
260
+ tokio:: fs:: create_dir ( & dir) . await ?;
261
+ }
262
+ Ok ( dir)
263
+ }
0 commit comments