 761a14e6e2
			
		
	
	
		761a14e6e2
		
			
		
	
	
	
	
		
			
			* Core: rename internal FlipperApplication to FlipperInternalApplication * FAP Loader: move load_name_and_icon to flipper_application library * Loader menu: rework api * View holder: move to gui service * Loader: simple "loading" worker * Loader: applications dialog * Loader: fapping * Update f18 api * Apps: remove fap_loader * Libs, flipper application: store args, rename thread allocation * Loader: error handling * Apps: use loader error handling * Loader: documentation * FBT: accomodate loader * Loader: do not raise gui error if loader is locked * Archive: accomodate loader * Loader: fix loading message * Flipper: drop some old dolphin legacy * Loader: generalize error construction Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python3
 | |
| 
 | |
| import os
 | |
| import posixpath
 | |
| 
 | |
| from flipper.app import App
 | |
| from flipper.storage import FlipperStorage, FlipperStorageOperations
 | |
| from flipper.utils.cdc import resolve_port
 | |
| 
 | |
| 
 | |
| class Main(App):
 | |
|     def init(self):
 | |
|         self.parser.add_argument("-p", "--port", help="CDC Port", default="auto")
 | |
|         self.parser.add_argument(
 | |
|             "-n",
 | |
|             "--no-launch",
 | |
|             dest="launch_app",
 | |
|             action="store_false",
 | |
|             help="Don't launch app",
 | |
|         )
 | |
| 
 | |
|         self.parser.add_argument("fap_src_path", help="App file to upload")
 | |
|         self.parser.add_argument(
 | |
|             "--fap_dst_dir", help="Upload path", default="/ext/apps", required=False
 | |
|         )
 | |
|         self.parser.set_defaults(func=self.install)
 | |
| 
 | |
|     def install(self):
 | |
|         if not (port := resolve_port(self.logger, self.args.port)):
 | |
|             return 1
 | |
| 
 | |
|         try:
 | |
|             with FlipperStorage(port) as storage:
 | |
|                 storage_ops = FlipperStorageOperations(storage)
 | |
|                 fap_local_path = self.args.fap_src_path
 | |
|                 self.args.fap_dst_dir = self.args.fap_dst_dir.rstrip("/\\")
 | |
| 
 | |
|                 if not os.path.isfile(fap_local_path):
 | |
|                     self.logger.error(
 | |
|                         f"Error: source .fap ({fap_local_path}) not found"
 | |
|                     )
 | |
|                     return 2
 | |
| 
 | |
|                 fap_dst_path = posixpath.join(
 | |
|                     self.args.fap_dst_dir, os.path.basename(fap_local_path)
 | |
|                 )
 | |
| 
 | |
|                 self.logger.info(f'Installing "{fap_local_path}" to {fap_dst_path}')
 | |
| 
 | |
|                 storage_ops.recursive_send(fap_dst_path, fap_local_path, False)
 | |
| 
 | |
|                 if not self.args.launch_app:
 | |
|                     return 0
 | |
| 
 | |
|                 storage.send_and_wait_eol(f"loader open {fap_dst_path}\r")
 | |
| 
 | |
|                 if len(result := storage.read.until(storage.CLI_EOL)):
 | |
|                     self.logger.error(f"Unexpected response: {result.decode('ascii')}")
 | |
|                     return 3
 | |
|                 return 0
 | |
| 
 | |
|         except Exception as e:
 | |
|             self.logger.error(f"Error: {e}")
 | |
|             # raise
 | |
|             return 4
 | |
| 
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     Main()()
 |