 53435579b3
			
		
	
	
		53435579b3
		
			
		
	
	
	
	
		
			
			* fbt, faploader: minimal app module implementation * faploader, libs: moved API hashtable core to flipper_application * example: compound api * lib: flipper_application: naming fixes, doxygen comments * fbt: changed `requires` manifest field behavior for app extensions * examples: refactored plugin apps; faploader: changed new API naming; fbt: changed PLUGIN app type meaning * loader: dropped support for debug apps & plugin menus * moved applications/plugins -> applications/external * Restored x bit on chiplist_convert.py * git: fixed free-dap submodule path * pvs: updated submodule paths * examples: example_advanced_plugins.c: removed potential memory leak on errors * examples: example_plugins: refined requires * fbt: not deploying app modules for debug/sample apps; extra validation for .PLUGIN-type apps * apps: removed cdefines for external apps * fbt: moved ext app path definition * fbt: reworked fap_dist handling; f18: synced api_symbols.csv * fbt: removed resources_paths for extapps * scripts: reworked storage * scripts: reworked runfap.py & selfupdate.py to use new api * wip: fal runner * fbt: moved file packaging into separate module * scripts: storage: fixes * scripts: storage: minor fixes for new api * fbt: changed internal artifact storage details for external apps * scripts: storage: additional fixes and better error reporting; examples: using APP_DATA_PATH() * fbt, scripts: reworked launch_app to deploy plugins; moved old runfap.py to distfap.py * fbt: extra check for plugins descriptors * fbt: additional checks in emitter * fbt: better info message on SDK rebuild * scripts: removed requirements.txt * loader: removed remnants of plugins & debug menus * post-review fixes
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "composite_resolver.h"
 | |
| 
 | |
| #include <m-list.h>
 | |
| #include <m-algo.h>
 | |
| 
 | |
| LIST_DEF(ElfApiInterfaceList, const ElfApiInterface*, M_POD_OPLIST)
 | |
| #define M_OPL_ElfApiInterfaceList_t() LIST_OPLIST(ElfApiInterfaceList, M_POD_OPLIST)
 | |
| 
 | |
| struct CompositeApiResolver {
 | |
|     ElfApiInterface api_interface;
 | |
|     ElfApiInterfaceList_t interfaces;
 | |
| };
 | |
| 
 | |
| static bool composite_api_resolver_callback(
 | |
|     const ElfApiInterface* interface,
 | |
|     const char* name,
 | |
|     Elf32_Addr* address) {
 | |
|     CompositeApiResolver* resolver = (CompositeApiResolver*)interface;
 | |
|     for
 | |
|         M_EACH(interface, resolver->interfaces, ElfApiInterfaceList_t) {
 | |
|             if((*interface)->resolver_callback(*interface, name, address)) {
 | |
|                 return true;
 | |
|             }
 | |
|         }
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| CompositeApiResolver* composite_api_resolver_alloc() {
 | |
|     CompositeApiResolver* resolver = malloc(sizeof(CompositeApiResolver));
 | |
|     resolver->api_interface.api_version_major = 0;
 | |
|     resolver->api_interface.api_version_minor = 0;
 | |
|     resolver->api_interface.resolver_callback = &composite_api_resolver_callback;
 | |
|     ElfApiInterfaceList_init(resolver->interfaces);
 | |
|     return resolver;
 | |
| }
 | |
| 
 | |
| void composite_api_resolver_free(CompositeApiResolver* resolver) {
 | |
|     ElfApiInterfaceList_clear(resolver->interfaces);
 | |
|     free(resolver);
 | |
| }
 | |
| 
 | |
| void composite_api_resolver_add(CompositeApiResolver* resolver, const ElfApiInterface* interface) {
 | |
|     if(ElfApiInterfaceList_empty_p(resolver->interfaces)) {
 | |
|         resolver->api_interface.api_version_major = interface->api_version_major;
 | |
|         resolver->api_interface.api_version_minor = interface->api_version_minor;
 | |
|     }
 | |
|     ElfApiInterfaceList_push_back(resolver->interfaces, interface);
 | |
| }
 | |
| 
 | |
| const ElfApiInterface* composite_api_resolver_get(CompositeApiResolver* resolver) {
 | |
|     return &resolver->api_interface;
 | |
| }
 |