 274c12fc56
			
		
	
	
		274c12fc56
		
			
		
	
	
	
	
		
			
			* Streams: string stream * String stream: updated insert/delete api * Streams: generic stream interface and string stream implementation * Streams: helpers for insert and delete_and_insert * FFF: now compatible with streams * MinUnit: introduced tests with arguments * FFF: stream access violation * Streams: copy data between streams * Streams: file stream * FFF: documentation * FFStream: documentation * FFF: alloc as file * MinUnit: support for nested tests * Streams: changed delete_and_insert, now it returns success flag. Added ability dump stream inner parameters and data to cout. * FFF: simplified file open function * Streams: unit tests * FFF: tests * Streams: declare cache_size constant as define, to allow variable modified arrays * FFF: lib moved to a separate folder * iButton: new FFF * RFID: new FFF * Animations: new FFF * IR: new FFF * NFC: new FFF * Flipper file format: delete lib * U2F: new FFF * Subghz: new FFF and streams * Streams: read line * Streams: split * FuriCore: implement memset with extra asserts * FuriCore: implement extra heap asserts without inventing memset * Scene manager: protected access to the scene id stack with a size check * NFC worker: dirty fix for issue where hal_nfc was busy on app start * Furi: update allocator to erase memory on allocation. Replace furi_alloc with malloc. * FuriCore: cleanup memmgr code. * Furi HAL: furi_hal_init is split into critical and non-critical parts. The critical part is currently clock and console. * Memmgr: added ability to track allocations and deallocations through console. * FFStream: some speedup * Streams, FF: minor fixes * Tests: restore * File stream: a slightly more thread-safe version of file_stream_delete_and_insert Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			337 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			337 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| #include "subghz_parser.h"
 | |
| #include "protocols/subghz_protocol_came.h"
 | |
| #include "protocols/subghz_protocol_came_twee.h"
 | |
| #include "protocols/subghz_protocol_came_atomo.h"
 | |
| #include "protocols/subghz_protocol_cfm.h"
 | |
| #include "protocols/subghz_protocol_keeloq.h"
 | |
| #include "protocols/subghz_protocol_nice_flo.h"
 | |
| #include "protocols/subghz_protocol_nice_flor_s.h"
 | |
| #include "protocols/subghz_protocol_princeton.h"
 | |
| #include "protocols/subghz_protocol_gate_tx.h"
 | |
| #include "protocols/subghz_protocol_ido.h"
 | |
| #include "protocols/subghz_protocol_faac_slh.h"
 | |
| #include "protocols/subghz_protocol_nero_sketch.h"
 | |
| #include "protocols/subghz_protocol_star_line.h"
 | |
| #include "protocols/subghz_protocol_nero_radio.h"
 | |
| #include "protocols/subghz_protocol_scher_khan.h"
 | |
| #include "protocols/subghz_protocol_kia.h"
 | |
| #include "protocols/subghz_protocol_raw.h"
 | |
| #include "protocols/subghz_protocol_hormann.h"
 | |
| #include "protocols/subghz_protocol_somfy_telis.h"
 | |
| #include "protocols/subghz_protocol_somfy_keytis.h"
 | |
| 
 | |
| #include "subghz_keystore.h"
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <m-string.h>
 | |
| 
 | |
| #define SUBGHZ_PARSER_TAG "SubGhzParser"
 | |
| 
 | |
| typedef enum {
 | |
|     SubGhzProtocolTypeCame,
 | |
|     SubGhzProtocolTypeCameTwee,
 | |
|     SubGhzProtocolTypeCameAtomo,
 | |
|     SubGhzProtocolTypeKeeloq,
 | |
|     SubGhzProtocolTypeNiceFlo,
 | |
|     SubGhzProtocolTypeNiceFlorS,
 | |
|     SubGhzProtocolTypePrinceton,
 | |
|     SubGhzProtocolTypeGateTX,
 | |
|     SubGhzProtocolTypeIDo,
 | |
|     SubGhzProtocolTypeFaacSLH,
 | |
|     SubGhzProtocolTypeNeroSketch,
 | |
|     SubGhzProtocolTypeStarLine,
 | |
|     SubGhzProtocolTypeNeroRadio,
 | |
|     SubGhzProtocolTypeScherKhan,
 | |
|     SubGhzProtocolTypeKIA,
 | |
|     SubGhzProtocolTypeRAW,
 | |
|     SubGhzProtocolTypeHormann,
 | |
|     SubGhzProtocolTypeSomfyTelis,
 | |
|     SubGhzProtocolTypeSomfyKeytis,
 | |
| 
 | |
|     SubGhzProtocolTypeMax,
 | |
| } SubGhzProtocolType;
 | |
| 
 | |
| struct SubGhzParser {
 | |
|     SubGhzKeystore* keystore;
 | |
| 
 | |
|     SubGhzProtocolCommon* protocols[SubGhzProtocolTypeMax];
 | |
| 
 | |
|     SubGhzProtocolTextCallback text_callback;
 | |
|     void* text_callback_context;
 | |
|     SubGhzProtocolCommonCallbackDump parser_callback;
 | |
|     void* parser_callback_context;
 | |
| };
 | |
| 
 | |
| static void subghz_parser_text_rx_callback(SubGhzProtocolCommon* parser, void* context) {
 | |
|     SubGhzParser* instance = context;
 | |
| 
 | |
|     string_t output;
 | |
|     string_init(output);
 | |
|     subghz_protocol_common_to_str((SubGhzProtocolCommon*)parser, output);
 | |
|     if(instance->text_callback) {
 | |
|         instance->text_callback(output, instance->text_callback_context);
 | |
|     } else {
 | |
|         printf("%s", string_get_cstr(output));
 | |
|     }
 | |
|     string_clear(output);
 | |
| }
 | |
| 
 | |
| static void subghz_parser_parser_rx_callback(SubGhzProtocolCommon* parser, void* context) {
 | |
|     SubGhzParser* instance = context;
 | |
|     if(instance->parser_callback) {
 | |
|         instance->parser_callback(parser, instance->parser_callback_context);
 | |
|     }
 | |
| }
 | |
| 
 | |
| SubGhzParser* subghz_parser_alloc() {
 | |
|     SubGhzParser* instance = malloc(sizeof(SubGhzParser));
 | |
| 
 | |
|     instance->keystore = subghz_keystore_alloc();
 | |
| 
 | |
|     instance->protocols[SubGhzProtocolTypeCame] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_came_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeCameTwee] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_came_twee_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeCameAtomo] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_came_atomo_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeKeeloq] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_keeloq_alloc(instance->keystore);
 | |
|     instance->protocols[SubGhzProtocolTypePrinceton] =
 | |
|         (SubGhzProtocolCommon*)subghz_decoder_princeton_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeNiceFlo] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_nice_flo_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeNiceFlorS] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_nice_flor_s_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeGateTX] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_gate_tx_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeIDo] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_ido_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeFaacSLH] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_faac_slh_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeNeroSketch] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_nero_sketch_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeStarLine] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_star_line_alloc(instance->keystore);
 | |
|     instance->protocols[SubGhzProtocolTypeNeroRadio] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_nero_radio_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeScherKhan] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_scher_khan_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeKIA] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_kia_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeRAW] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_raw_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeHormann] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_hormann_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeSomfyTelis] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_somfy_telis_alloc();
 | |
|     instance->protocols[SubGhzProtocolTypeSomfyKeytis] =
 | |
|         (SubGhzProtocolCommon*)subghz_protocol_somfy_keytis_alloc();
 | |
| 
 | |
|     return instance;
 | |
| }
 | |
| 
 | |
| void subghz_parser_free(SubGhzParser* instance) {
 | |
|     furi_assert(instance);
 | |
| 
 | |
|     subghz_protocol_came_free((SubGhzProtocolCame*)instance->protocols[SubGhzProtocolTypeCame]);
 | |
|     subghz_protocol_came_twee_free(
 | |
|         (SubGhzProtocolCameTwee*)instance->protocols[SubGhzProtocolTypeCameTwee]);
 | |
|     subghz_protocol_came_atomo_free(
 | |
|         (SubGhzProtocolCameAtomo*)instance->protocols[SubGhzProtocolTypeCameAtomo]);
 | |
|     subghz_protocol_keeloq_free(
 | |
|         (SubGhzProtocolKeeloq*)instance->protocols[SubGhzProtocolTypeKeeloq]);
 | |
|     subghz_decoder_princeton_free(
 | |
|         (SubGhzDecoderPrinceton*)instance->protocols[SubGhzProtocolTypePrinceton]);
 | |
|     subghz_protocol_nice_flo_free(
 | |
|         (SubGhzProtocolNiceFlo*)instance->protocols[SubGhzProtocolTypeNiceFlo]);
 | |
|     subghz_protocol_nice_flor_s_free(
 | |
|         (SubGhzProtocolNiceFlorS*)instance->protocols[SubGhzProtocolTypeNiceFlorS]);
 | |
|     subghz_protocol_gate_tx_free(
 | |
|         (SubGhzProtocolGateTX*)instance->protocols[SubGhzProtocolTypeGateTX]);
 | |
|     subghz_protocol_ido_free((SubGhzProtocolIDo*)instance->protocols[SubGhzProtocolTypeIDo]);
 | |
|     subghz_protocol_faac_slh_free(
 | |
|         (SubGhzProtocolFaacSLH*)instance->protocols[SubGhzProtocolTypeFaacSLH]);
 | |
|     subghz_protocol_nero_sketch_free(
 | |
|         (SubGhzProtocolNeroSketch*)instance->protocols[SubGhzProtocolTypeNeroSketch]);
 | |
|     subghz_protocol_star_line_free(
 | |
|         (SubGhzProtocolStarLine*)instance->protocols[SubGhzProtocolTypeStarLine]);
 | |
|     subghz_protocol_nero_radio_free(
 | |
|         (SubGhzProtocolNeroRadio*)instance->protocols[SubGhzProtocolTypeNeroRadio]);
 | |
|     subghz_protocol_scher_khan_free(
 | |
|         (SubGhzProtocolScherKhan*)instance->protocols[SubGhzProtocolTypeScherKhan]);
 | |
|     subghz_protocol_kia_free((SubGhzProtocolKIA*)instance->protocols[SubGhzProtocolTypeKIA]);
 | |
|     subghz_protocol_raw_free((SubGhzProtocolRAW*)instance->protocols[SubGhzProtocolTypeRAW]);
 | |
|     subghz_protocol_hormann_free(
 | |
|         (SubGhzProtocolHormann*)instance->protocols[SubGhzProtocolTypeHormann]);
 | |
|     subghz_protocol_somfy_telis_free(
 | |
|         (SubGhzProtocolSomfyTelis*)instance->protocols[SubGhzProtocolTypeSomfyTelis]);
 | |
|     subghz_protocol_somfy_keytis_free(
 | |
|         (SubGhzProtocolSomfyKeytis*)instance->protocols[SubGhzProtocolTypeSomfyKeytis]);
 | |
| 
 | |
|     subghz_keystore_free(instance->keystore);
 | |
| 
 | |
|     free(instance);
 | |
| }
 | |
| 
 | |
| SubGhzProtocolCommon* subghz_parser_get_by_name(SubGhzParser* instance, const char* name) {
 | |
|     SubGhzProtocolCommon* result = NULL;
 | |
| 
 | |
|     for(size_t i = 0; i < SubGhzProtocolTypeMax; i++) {
 | |
|         if(strcmp(instance->protocols[i]->name, name) == 0) {
 | |
|             result = instance->protocols[i];
 | |
|             break;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| void subghz_parser_enable_dump_text(
 | |
|     SubGhzParser* instance,
 | |
|     SubGhzProtocolTextCallback callback,
 | |
|     void* context) {
 | |
|     furi_assert(instance);
 | |
| 
 | |
|     for(size_t i = 0; i < SubGhzProtocolTypeMax; i++) {
 | |
|         subghz_protocol_common_set_callback(
 | |
|             instance->protocols[i], subghz_parser_text_rx_callback, instance);
 | |
|     }
 | |
| 
 | |
|     instance->text_callback = callback;
 | |
|     instance->text_callback_context = context;
 | |
| }
 | |
| 
 | |
| void subghz_parser_enable_dump(
 | |
|     SubGhzParser* instance,
 | |
|     SubGhzProtocolCommonCallbackDump callback,
 | |
|     void* context) {
 | |
|     furi_assert(instance);
 | |
| 
 | |
|     for(size_t i = 0; i < SubGhzProtocolTypeMax; i++) {
 | |
|         subghz_protocol_common_set_callback(
 | |
|             instance->protocols[i], subghz_parser_parser_rx_callback, instance);
 | |
|     }
 | |
| 
 | |
|     instance->parser_callback = callback;
 | |
|     instance->parser_callback_context = context;
 | |
| }
 | |
| 
 | |
| void subghz_parser_load_nice_flor_s_file(SubGhzParser* instance, const char* file_name) {
 | |
|     subghz_protocol_nice_flor_s_name_file(
 | |
|         (SubGhzProtocolNiceFlorS*)instance->protocols[SubGhzProtocolTypeNiceFlorS], file_name);
 | |
| }
 | |
| 
 | |
| void subghz_parser_load_came_atomo_file(SubGhzParser* instance, const char* file_name) {
 | |
|     subghz_protocol_came_atomo_name_file(
 | |
|         (SubGhzProtocolCameAtomo*)instance->protocols[SubGhzProtocolTypeCameAtomo], file_name);
 | |
| }
 | |
| 
 | |
| bool subghz_parser_load_keeloq_file(SubGhzParser* instance, const char* file_name) {
 | |
|     bool ret = false;
 | |
|     if(subghz_keystore_load(instance->keystore, file_name)) {
 | |
|         FURI_LOG_I(SUBGHZ_PARSER_TAG, "Successfully loaded keeloq keys from %s", file_name);
 | |
|         ret = true;
 | |
|     } else {
 | |
|         FURI_LOG_W(SUBGHZ_PARSER_TAG, "Failed to load keeloq keysfrom %s", file_name);
 | |
|     }
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| void subghz_parser_reset(SubGhzParser* instance) {
 | |
|     subghz_protocol_came_reset((SubGhzProtocolCame*)instance->protocols[SubGhzProtocolTypeCame]);
 | |
|     subghz_protocol_came_twee_reset(
 | |
|         (SubGhzProtocolCameTwee*)instance->protocols[SubGhzProtocolTypeCameTwee]);
 | |
|     subghz_protocol_came_atomo_reset(
 | |
|         (SubGhzProtocolCameAtomo*)instance->protocols[SubGhzProtocolTypeCameAtomo]);
 | |
|     subghz_protocol_keeloq_reset(
 | |
|         (SubGhzProtocolKeeloq*)instance->protocols[SubGhzProtocolTypeKeeloq]);
 | |
|     subghz_decoder_princeton_reset(
 | |
|         (SubGhzDecoderPrinceton*)instance->protocols[SubGhzProtocolTypePrinceton]);
 | |
|     subghz_protocol_nice_flo_reset(
 | |
|         (SubGhzProtocolNiceFlo*)instance->protocols[SubGhzProtocolTypeNiceFlo]);
 | |
|     subghz_protocol_nice_flor_s_reset(
 | |
|         (SubGhzProtocolNiceFlorS*)instance->protocols[SubGhzProtocolTypeNiceFlorS]);
 | |
|     subghz_protocol_gate_tx_reset(
 | |
|         (SubGhzProtocolGateTX*)instance->protocols[SubGhzProtocolTypeGateTX]);
 | |
|     subghz_protocol_ido_reset((SubGhzProtocolIDo*)instance->protocols[SubGhzProtocolTypeIDo]);
 | |
|     subghz_protocol_faac_slh_reset(
 | |
|         (SubGhzProtocolFaacSLH*)instance->protocols[SubGhzProtocolTypeFaacSLH]);
 | |
|     subghz_protocol_nero_sketch_reset(
 | |
|         (SubGhzProtocolNeroSketch*)instance->protocols[SubGhzProtocolTypeNeroSketch]);
 | |
|     subghz_protocol_star_line_reset(
 | |
|         (SubGhzProtocolStarLine*)instance->protocols[SubGhzProtocolTypeStarLine]);
 | |
|     subghz_protocol_nero_radio_reset(
 | |
|         (SubGhzProtocolNeroRadio*)instance->protocols[SubGhzProtocolTypeNeroRadio]);
 | |
|     subghz_protocol_scher_khan_reset(
 | |
|         (SubGhzProtocolScherKhan*)instance->protocols[SubGhzProtocolTypeScherKhan]);
 | |
|     subghz_protocol_kia_reset((SubGhzProtocolKIA*)instance->protocols[SubGhzProtocolTypeKIA]);
 | |
|     subghz_protocol_raw_reset((SubGhzProtocolRAW*)instance->protocols[SubGhzProtocolTypeRAW]);
 | |
|     subghz_protocol_hormann_reset(
 | |
|         (SubGhzProtocolHormann*)instance->protocols[SubGhzProtocolTypeHormann]);
 | |
|     subghz_protocol_somfy_telis_reset(
 | |
|         (SubGhzProtocolSomfyTelis*)instance->protocols[SubGhzProtocolTypeSomfyTelis]);
 | |
|     subghz_protocol_somfy_keytis_reset(
 | |
|         (SubGhzProtocolSomfyKeytis*)instance->protocols[SubGhzProtocolTypeSomfyKeytis]);
 | |
| }
 | |
| 
 | |
| void subghz_parser_raw_parse(SubGhzParser* instance, bool level, uint32_t duration) {
 | |
|     subghz_protocol_raw_parse(
 | |
|         (SubGhzProtocolRAW*)instance->protocols[SubGhzProtocolTypeRAW], level, duration);
 | |
| }
 | |
| 
 | |
| void subghz_parser_parse(SubGhzParser* instance, bool level, uint32_t duration) {
 | |
|     subghz_protocol_came_parse(
 | |
|         (SubGhzProtocolCame*)instance->protocols[SubGhzProtocolTypeCame], level, duration);
 | |
|     subghz_protocol_came_twee_parse(
 | |
|         (SubGhzProtocolCameTwee*)instance->protocols[SubGhzProtocolTypeCameTwee], level, duration);
 | |
|     subghz_protocol_came_atomo_parse(
 | |
|         (SubGhzProtocolCameAtomo*)instance->protocols[SubGhzProtocolTypeCameAtomo],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_keeloq_parse(
 | |
|         (SubGhzProtocolKeeloq*)instance->protocols[SubGhzProtocolTypeKeeloq], level, duration);
 | |
|     subghz_decoder_princeton_parse(
 | |
|         (SubGhzDecoderPrinceton*)instance->protocols[SubGhzProtocolTypePrinceton],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_nice_flo_parse(
 | |
|         (SubGhzProtocolNiceFlo*)instance->protocols[SubGhzProtocolTypeNiceFlo], level, duration);
 | |
|     subghz_protocol_nice_flor_s_parse(
 | |
|         (SubGhzProtocolNiceFlorS*)instance->protocols[SubGhzProtocolTypeNiceFlorS],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_gate_tx_parse(
 | |
|         (SubGhzProtocolGateTX*)instance->protocols[SubGhzProtocolTypeGateTX], level, duration);
 | |
|     subghz_protocol_ido_parse(
 | |
|         (SubGhzProtocolIDo*)instance->protocols[SubGhzProtocolTypeIDo], level, duration);
 | |
|     subghz_protocol_faac_slh_parse(
 | |
|         (SubGhzProtocolFaacSLH*)instance->protocols[SubGhzProtocolTypeFaacSLH], level, duration);
 | |
|     subghz_protocol_nero_sketch_parse(
 | |
|         (SubGhzProtocolNeroSketch*)instance->protocols[SubGhzProtocolTypeNeroSketch],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_star_line_parse(
 | |
|         (SubGhzProtocolStarLine*)instance->protocols[SubGhzProtocolTypeStarLine], level, duration);
 | |
|     subghz_protocol_nero_radio_parse(
 | |
|         (SubGhzProtocolNeroRadio*)instance->protocols[SubGhzProtocolTypeNeroRadio],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_scher_khan_parse(
 | |
|         (SubGhzProtocolScherKhan*)instance->protocols[SubGhzProtocolTypeScherKhan],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_kia_parse(
 | |
|         (SubGhzProtocolKIA*)instance->protocols[SubGhzProtocolTypeKIA], level, duration);
 | |
|     subghz_protocol_hormann_parse(
 | |
|         (SubGhzProtocolHormann*)instance->protocols[SubGhzProtocolTypeHormann], level, duration);
 | |
|     subghz_protocol_somfy_telis_parse(
 | |
|         (SubGhzProtocolSomfyTelis*)instance->protocols[SubGhzProtocolTypeSomfyTelis],
 | |
|         level,
 | |
|         duration);
 | |
|     subghz_protocol_somfy_keytis_parse(
 | |
|         (SubGhzProtocolSomfyKeytis*)instance->protocols[SubGhzProtocolTypeSomfyKeytis],
 | |
|         level,
 | |
|         duration);
 | |
| }
 |