2022-07-26 15:30:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <storage/storage.h>
|
|
|
|
#include <lib/flipper_format/flipper_format.h>
|
|
|
|
#include <lib/toolbox/stream/file_stream.h>
|
|
|
|
#include <lib/toolbox/stream/buffered_file_stream.h>
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
MfClassicDictTypeUser,
|
|
|
|
MfClassicDictTypeFlipper,
|
2022-09-22 17:35:28 +00:00
|
|
|
MfClassicDictTypeUnitTest,
|
2022-07-26 15:30:49 +00:00
|
|
|
} MfClassicDictType;
|
|
|
|
|
|
|
|
typedef struct MfClassicDict MfClassicDict;
|
|
|
|
|
|
|
|
bool mf_classic_dict_check_presence(MfClassicDictType dict_type);
|
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Allocate MfClassicDict instance
|
|
|
|
*
|
|
|
|
* @param[in] dict_type The dictionary type
|
|
|
|
*
|
|
|
|
* @return MfClassicDict instance
|
|
|
|
*/
|
2022-07-26 15:30:49 +00:00
|
|
|
MfClassicDict* mf_classic_dict_alloc(MfClassicDictType dict_type);
|
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Free MfClassicDict instance
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
*/
|
2022-07-26 15:30:49 +00:00
|
|
|
void mf_classic_dict_free(MfClassicDict* dict);
|
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Get total keys count
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
*
|
|
|
|
* @return total keys count
|
|
|
|
*/
|
2022-07-26 15:30:49 +00:00
|
|
|
uint32_t mf_classic_dict_get_total_keys(MfClassicDict* dict);
|
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Rewind to the beginning
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
*
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2022-09-19 16:43:53 +00:00
|
|
|
bool mf_classic_dict_rewind(MfClassicDict* dict);
|
|
|
|
|
|
|
|
bool mf_classic_dict_is_key_present(MfClassicDict* dict, uint8_t* key);
|
|
|
|
|
2022-10-05 15:15:23 +00:00
|
|
|
bool mf_classic_dict_is_key_present_str(MfClassicDict* dict, FuriString* key);
|
2022-09-19 16:43:53 +00:00
|
|
|
|
2022-07-26 15:30:49 +00:00
|
|
|
bool mf_classic_dict_get_next_key(MfClassicDict* dict, uint64_t* key);
|
|
|
|
|
2022-10-05 15:15:23 +00:00
|
|
|
bool mf_classic_dict_get_next_key_str(MfClassicDict* dict, FuriString* key);
|
2022-09-19 16:43:53 +00:00
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Get key at target offset as uint64_t
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
* @param[out] key Pointer to the uint64_t key
|
|
|
|
* @param[in] target Target offset from current position
|
|
|
|
*
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2022-09-19 16:43:53 +00:00
|
|
|
bool mf_classic_dict_get_key_at_index(MfClassicDict* dict, uint64_t* key, uint32_t target);
|
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Get key at target offset as string_t
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
* @param[out] key Found key destination buffer
|
|
|
|
* @param[in] target Target offset from current position
|
|
|
|
*
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2022-10-05 15:15:23 +00:00
|
|
|
bool mf_classic_dict_get_key_at_index_str(MfClassicDict* dict, FuriString* key, uint32_t target);
|
2022-07-26 15:30:49 +00:00
|
|
|
|
|
|
|
bool mf_classic_dict_add_key(MfClassicDict* dict, uint8_t* key);
|
2022-09-19 16:43:53 +00:00
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Add string representation of the key
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
* @param[in] key String representation of the key
|
|
|
|
*
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2022-10-05 15:15:23 +00:00
|
|
|
bool mf_classic_dict_add_key_str(MfClassicDict* dict, FuriString* key);
|
2022-09-19 16:43:53 +00:00
|
|
|
|
|
|
|
bool mf_classic_dict_find_index(MfClassicDict* dict, uint8_t* key, uint32_t* target);
|
|
|
|
|
2022-10-05 15:15:23 +00:00
|
|
|
bool mf_classic_dict_find_index_str(MfClassicDict* dict, FuriString* key, uint32_t* target);
|
2022-09-19 16:43:53 +00:00
|
|
|
|
2022-09-22 17:35:28 +00:00
|
|
|
/** Delete key at target offset
|
|
|
|
*
|
|
|
|
* @param dict MfClassicDict instance
|
|
|
|
* @param[in] target Target offset from current position
|
|
|
|
*
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2022-09-19 16:43:53 +00:00
|
|
|
bool mf_classic_dict_delete_index(MfClassicDict* dict, uint32_t target);
|