 41c43f4805
			
		
	
	
		41c43f4805
		
			
		
	
	
	
	
		
			
			* Toolbox: add seek to character stream method. UpdateUtils: reverse manifest iterator. UnitTests: more unit tests. * Target: bump API version. Updater: delete empty folders from manifest before resource deployment. * UnitTests: use manifest from unit_tests folder instead of global one * Make PVS happy * sector cache: allocate always * Better PVS config for manifest.c * PVS: Move exception outside of condition * PVS: remove confusing condition Co-authored-by: SG <who.just.the.doctor@gmail.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "sector_cache.h"
 | |
| 
 | |
| #include <stddef.h>
 | |
| #include <stdio.h>
 | |
| #include <string.h>
 | |
| #include <furi.h>
 | |
| #include <furi_hal_memory.h>
 | |
| 
 | |
| #define SECTOR_SIZE 512
 | |
| #define N_SECTORS 8
 | |
| #define TAG "SDCache"
 | |
| 
 | |
| typedef struct {
 | |
|     uint32_t itr;
 | |
|     uint32_t sectors[N_SECTORS];
 | |
|     uint8_t sector_data[N_SECTORS][SECTOR_SIZE];
 | |
| } SectorCache;
 | |
| 
 | |
| static SectorCache* cache = NULL;
 | |
| 
 | |
| void sector_cache_init() {
 | |
|     if(cache == NULL) {
 | |
|         // TODO: tuneup allocation order, to place cache in mem pool (MEM2)
 | |
|         cache = memmgr_alloc_from_pool(sizeof(SectorCache));
 | |
|     }
 | |
| 
 | |
|     if(cache != NULL) {
 | |
|         FURI_LOG_I(TAG, "Init");
 | |
|         memset(cache, 0, sizeof(SectorCache));
 | |
|     } else {
 | |
|         FURI_LOG_E(TAG, "Init failed");
 | |
|     }
 | |
| }
 | |
| 
 | |
| uint8_t* sector_cache_get(uint32_t n_sector) {
 | |
|     if(cache != NULL && n_sector != 0) {
 | |
|         for(int sector_i = 0; sector_i < N_SECTORS; ++sector_i) {
 | |
|             if(cache->sectors[sector_i] == n_sector) {
 | |
|                 return cache->sector_data[sector_i];
 | |
|             }
 | |
|         }
 | |
|     }
 | |
|     return NULL;
 | |
| }
 | |
| 
 | |
| void sector_cache_put(uint32_t n_sector, uint8_t* data) {
 | |
|     if(cache == NULL) return;
 | |
|     cache->sectors[cache->itr % N_SECTORS] = n_sector;
 | |
|     memcpy(cache->sector_data[cache->itr % N_SECTORS], data, SECTOR_SIZE);
 | |
|     cache->itr++;
 | |
| }
 | |
| 
 | |
| void sector_cache_invalidate_range(uint32_t start_sector, uint32_t end_sector) {
 | |
|     if(cache == NULL) return;
 | |
|     for(int sector_i = 0; sector_i < N_SECTORS; ++sector_i) {
 | |
|         if((cache->sectors[sector_i] >= start_sector) &&
 | |
|            (cache->sectors[sector_i] <= end_sector)) {
 | |
|             cache->sectors[sector_i] = 0;
 | |
|         }
 | |
|     }
 | |
| } |