Add script to rerun process on route and generate new logs (#22100)
	
		
	
				
					
				
			* add script to rerun process on route and generate new logs
* cleanup
* move to root
* newline
old-commit-hash: 3b13eb8c7d
			
			
				vw-mqb-aeb
			
			
		
							parent
							
								
									3150250f00
								
							
						
					
					
						commit
						503fe7421a
					
				
				 3 changed files with 41 additions and 1 deletions
			
			
		| @ -0,0 +1,31 @@ | ||||
| #!/usr/bin/env python3 | ||||
| 
 | ||||
| import argparse | ||||
| 
 | ||||
| from selfdrive.test.process_replay.compare_logs import save_log | ||||
| from selfdrive.test.process_replay.process_replay import CONFIGS, replay_process | ||||
| from tools.lib.logreader import MultiLogIterator | ||||
| from tools.lib.route import Route | ||||
| 
 | ||||
| if __name__ == "__main__": | ||||
|   parser = argparse.ArgumentParser(description="Run process on route and create new logs", | ||||
|                                    formatter_class=argparse.ArgumentDefaultsHelpFormatter) | ||||
|   parser.add_argument("route", help="The route name to use") | ||||
|   parser.add_argument("process", help="The process to run") | ||||
|   args = parser.parse_args() | ||||
| 
 | ||||
|   cfg = [c for c in CONFIGS if c.proc_name == args.process][0] | ||||
| 
 | ||||
|   route = Route(args.route) | ||||
|   lr = MultiLogIterator(route.log_paths(), wraparound=False) | ||||
|   inputs = list(lr) | ||||
| 
 | ||||
|   outputs = replay_process(cfg, inputs) | ||||
| 
 | ||||
|   # Remove message generated by the process under test and merge in the new messages | ||||
|   produces = set(o.which() for o in outputs) | ||||
|   inputs = [i for i in inputs if i.which() not in produces] | ||||
|   outputs = sorted(inputs + outputs, key=lambda x: x.logMonoTime) | ||||
| 
 | ||||
|   fn = f"{args.route}_{args.process}.bz2" | ||||
|   save_log(fn, outputs) | ||||
					Loading…
					
					
				
		Reference in new issue