 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>
		
			
				
	
	
		
			155 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			155 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
 | |
| #include "../irda_app_signal.h"
 | |
| #include "irda.h"
 | |
| #include "irda/helpers/irda_parser.h"
 | |
| #include "irda_worker.h"
 | |
| #include "m-string.h"
 | |
| #include <flipper_format/flipper_format.h>
 | |
| #include <memory>
 | |
| #include <string>
 | |
| #include <furi_hal_irda.h>
 | |
| 
 | |
| #define TAG "IrdaParser"
 | |
| 
 | |
| bool irda_parser_save_signal(
 | |
|     FlipperFormat* ff,
 | |
|     const IrdaAppSignal& signal,
 | |
|     const std::string& name) {
 | |
|     furi_assert(ff);
 | |
|     furi_assert(!name.empty());
 | |
| 
 | |
|     bool result = false;
 | |
| 
 | |
|     do {
 | |
|         if(!flipper_format_write_comment_cstr(ff, "")) break;
 | |
|         if(!flipper_format_write_string_cstr(ff, "name", name.c_str())) break;
 | |
|         if(signal.is_raw()) {
 | |
|             furi_assert(signal.get_raw_signal().timings_cnt <= MAX_TIMINGS_AMOUNT);
 | |
|             auto raw_signal = signal.get_raw_signal();
 | |
|             if(!flipper_format_write_string_cstr(ff, "type", "raw")) break;
 | |
|             if(!flipper_format_write_uint32(ff, "frequency", &raw_signal.frequency, 1)) break;
 | |
|             if(!flipper_format_write_float(ff, "duty_cycle", &raw_signal.duty_cycle, 1)) break;
 | |
|             if(!flipper_format_write_uint32(ff, "data", raw_signal.timings, raw_signal.timings_cnt))
 | |
|                 break;
 | |
|         } else {
 | |
|             auto parsed_signal = signal.get_message();
 | |
|             const char* protocol_name = irda_get_protocol_name(parsed_signal.protocol);
 | |
|             if(!flipper_format_write_string_cstr(ff, "type", "parsed")) break;
 | |
|             if(!flipper_format_write_string_cstr(ff, "protocol", protocol_name)) break;
 | |
|             if(!flipper_format_write_hex(ff, "address", (uint8_t*)&parsed_signal.address, 4))
 | |
|                 break;
 | |
|             if(!flipper_format_write_hex(ff, "command", (uint8_t*)&parsed_signal.command, 4))
 | |
|                 break;
 | |
|         }
 | |
|         result = true;
 | |
|     } while(0);
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| bool irda_parser_read_signal(FlipperFormat* ff, IrdaAppSignal& signal, std::string& name) {
 | |
|     furi_assert(ff);
 | |
| 
 | |
|     bool result = false;
 | |
|     string_t read_string;
 | |
|     string_init(read_string);
 | |
| 
 | |
|     do {
 | |
|         if(!flipper_format_read_string(ff, "name", read_string)) break;
 | |
|         name = string_get_cstr(read_string);
 | |
|         if(!flipper_format_read_string(ff, "type", read_string)) break;
 | |
|         if(!string_cmp_str(read_string, "raw")) {
 | |
|             uint32_t* timings = nullptr;
 | |
|             uint32_t timings_cnt = 0;
 | |
|             uint32_t frequency = 0;
 | |
|             float duty_cycle = 0;
 | |
| 
 | |
|             if(!flipper_format_read_uint32(ff, "frequency", &frequency, 1)) break;
 | |
|             if(!flipper_format_read_float(ff, "duty_cycle", &duty_cycle, 1)) break;
 | |
|             if(!flipper_format_get_value_count(ff, "data", &timings_cnt)) break;
 | |
|             if(timings_cnt > MAX_TIMINGS_AMOUNT) break;
 | |
|             timings = (uint32_t*)malloc(sizeof(uint32_t) * timings_cnt);
 | |
|             if(flipper_format_read_uint32(ff, "data", timings, timings_cnt)) {
 | |
|                 signal.set_raw_signal(timings, timings_cnt, frequency, duty_cycle);
 | |
|                 result = true;
 | |
|             }
 | |
|             free(timings);
 | |
|         } else if(!string_cmp_str(read_string, "parsed")) {
 | |
|             IrdaMessage parsed_signal;
 | |
|             if(!flipper_format_read_string(ff, "protocol", read_string)) break;
 | |
|             parsed_signal.protocol = irda_get_protocol_by_name(string_get_cstr(read_string));
 | |
|             if(!flipper_format_read_hex(ff, "address", (uint8_t*)&parsed_signal.address, 4)) break;
 | |
|             if(!flipper_format_read_hex(ff, "command", (uint8_t*)&parsed_signal.command, 4)) break;
 | |
|             if(!irda_parser_is_parsed_signal_valid(&parsed_signal)) break;
 | |
|             signal.set_message(&parsed_signal);
 | |
|             result = true;
 | |
|         } else {
 | |
|             FURI_LOG_E(TAG, "Unknown type of signal (allowed - raw/parsed) ");
 | |
|         }
 | |
|     } while(0);
 | |
| 
 | |
|     string_clear(read_string);
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| bool irda_parser_is_parsed_signal_valid(const IrdaMessage* signal) {
 | |
|     furi_assert(signal);
 | |
|     bool result = true;
 | |
| 
 | |
|     if(!irda_is_protocol_valid(signal->protocol)) {
 | |
|         FURI_LOG_E(TAG, "Unknown protocol");
 | |
|         result = false;
 | |
|     }
 | |
| 
 | |
|     if(result) {
 | |
|         uint32_t address_length = irda_get_protocol_address_length(signal->protocol);
 | |
|         uint32_t address_mask = (1LU << address_length) - 1;
 | |
|         if(signal->address != (signal->address & address_mask)) {
 | |
|             FURI_LOG_E(
 | |
|                 TAG,
 | |
|                 "Address is out of range (mask 0x%08lX): 0x%lX\r\n",
 | |
|                 address_mask,
 | |
|                 signal->address);
 | |
|             result = false;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     if(result) {
 | |
|         uint32_t command_length = irda_get_protocol_command_length(signal->protocol);
 | |
|         uint32_t command_mask = (1LU << command_length) - 1;
 | |
|         if(signal->command != (signal->command & command_mask)) {
 | |
|             FURI_LOG_E(
 | |
|                 TAG,
 | |
|                 "Command is out of range (mask 0x%08lX): 0x%lX\r\n",
 | |
|                 command_mask,
 | |
|                 signal->command);
 | |
|             result = false;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| bool irda_parser_is_raw_signal_valid(uint32_t frequency, float duty_cycle, uint32_t timings_cnt) {
 | |
|     bool result = true;
 | |
| 
 | |
|     if((frequency > IRDA_MAX_FREQUENCY) || (frequency < IRDA_MIN_FREQUENCY)) {
 | |
|         FURI_LOG_E(
 | |
|             TAG,
 | |
|             "Frequency is out of range (%lX - %lX): %lX",
 | |
|             IRDA_MIN_FREQUENCY,
 | |
|             IRDA_MAX_FREQUENCY,
 | |
|             frequency);
 | |
|         result = false;
 | |
|     } else if((duty_cycle <= 0) || (duty_cycle > 1)) {
 | |
|         FURI_LOG_E(TAG, "Duty cycle is out of range (0 - 1): %f", duty_cycle);
 | |
|         result = false;
 | |
|     } else if((timings_cnt <= 0) || (timings_cnt > MAX_TIMINGS_AMOUNT)) {
 | |
|         FURI_LOG_E(
 | |
|             TAG, "Timings amount is out of range (0 - %lX): %lX", MAX_TIMINGS_AMOUNT, timings_cnt);
 | |
|         result = false;
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
| }
 |