You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					27 lines
				
				668 B
			
		
		
			
		
	
	
					27 lines
				
				668 B
			| 
								 
											6 years ago
										 
									 | 
							
								#!/usr/bin/env python3
							 | 
						||
| 
								 | 
							
								"""Script to fill up EON with fake data"""
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import os
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								from system.loggerd.config import ROOT, get_available_percent
							 | 
						||
| 
								 | 
							
								from system.loggerd.tests.loggerd_tests_common import create_random_file
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if __name__ == "__main__":
							 | 
						||
| 
								 | 
							
								  segment_idx = 0
							 | 
						||
| 
								 | 
							
								  while True:
							 | 
						||
| 
								 | 
							
								    seg_name = "1970-01-01--00-00-00--%d" % segment_idx
							 | 
						||
| 
								 | 
							
								    seg_path = os.path.join(ROOT, seg_name)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    print(seg_path)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    create_random_file(os.path.join(seg_path, 'fcamera.hevc'), 36)
							 | 
						||
| 
								 | 
							
								    create_random_file(os.path.join(seg_path, 'rlog.bz2'), 2)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    segment_idx += 1
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    # Fill up to 99 percent
							 | 
						||
| 
								 | 
							
								    available_percent = get_available_percent()
							 | 
						||
| 
								 | 
							
								    if available_percent < 1.0:
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								      break
							 |