2016-08-09 09:07:02 -04:00
|
|
|
#pragma once
|
|
|
|
|
2016-08-12 09:20:23 -04:00
|
|
|
#include <stdlib.h>
|
2016-08-09 09:07:02 -04:00
|
|
|
#include <stdint.h>
|
2016-08-12 09:20:23 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "util/rsmemory.h"
|
2016-08-09 09:07:02 -04:00
|
|
|
|
|
|
|
// This file implements load/save of various fields used for file lists and directory content.
|
|
|
|
// WARNING: the encoding is system-dependent, so this should *not* be used to exchange data between computers.
|
|
|
|
|
|
|
|
static const uint8_t DIRECTORY_STORAGE_VERSION = 0x01 ;
|
|
|
|
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_FILE_SHA1_HASH = 0x01 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_FILE_NAME = 0x02 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_FILE_SIZE = 0x03 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_DIR_NAME = 0x04 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_MODIF_TS = 0x05 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_RECURS_MODIF_TS = 0x06 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_HASH_STORAGE_ENTRY = 0x07 ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_UPDATE_TS = 0x08 ;
|
2016-08-12 09:20:23 -04:00
|
|
|
static const uint8_t FILE_LIST_IO_TAG_BINARY_DATA = 0x09 ;
|
2016-08-26 10:29:02 -04:00
|
|
|
static const uint8_t FILE_LIST_IO_TAG_RAW_NUMBER = 0x0a ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_ENTRY_INDEX = 0x0b ;
|
|
|
|
static const uint8_t FILE_LIST_IO_TAG_REMOTE_FILE_ENTRY = 0x0c ;
|
2016-08-09 09:07:02 -04:00
|
|
|
|
2016-08-27 10:38:15 -04:00
|
|
|
static const uint32_t SECTION_HEADER_MAX_SIZE = 6 ; // section tag (1 byte) + size (max = 5 bytes)
|
|
|
|
|
2016-08-09 09:07:02 -04:00
|
|
|
class FileListIO
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<typename T>
|
|
|
|
static bool writeField(unsigned char *& buff,uint32_t& buff_size,uint32_t& offset,uint8_t section_tag,const T& val)
|
|
|
|
{
|
2016-08-27 17:56:23 -04:00
|
|
|
uint32_t s = serial_size(val) ;
|
2016-08-09 09:07:02 -04:00
|
|
|
|
2016-08-27 17:56:23 -04:00
|
|
|
if(!checkSectionSize(buff,buff_size,offset,s))
|
2016-08-09 09:07:02 -04:00
|
|
|
return false;
|
|
|
|
|
2016-08-27 17:56:23 -04:00
|
|
|
if(!writeSectionHeader(buff,buff_size,offset,section_tag,s))
|
|
|
|
return false;
|
2016-08-09 09:07:02 -04:00
|
|
|
|
2016-08-27 17:56:23 -04:00
|
|
|
return serialise(buff,buff_size,offset,val) ;
|
2016-08-09 09:07:02 -04:00
|
|
|
}
|
|
|
|
|
2016-08-12 09:20:23 -04:00
|
|
|
template<typename T>
|
|
|
|
static bool readField(const unsigned char *buff,uint32_t buff_size,uint32_t& offset,uint8_t check_section_tag,T& val)
|
|
|
|
{
|
|
|
|
uint32_t section_size ;
|
|
|
|
|
|
|
|
if(!readSectionHeader(buff,buff_size,offset,check_section_tag,section_size))
|
|
|
|
return false;
|
|
|
|
|
2016-08-27 17:56:23 -04:00
|
|
|
return deserialise(buff,buff_size,offset,val);
|
2016-08-12 09:20:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool writeField( unsigned char*&buff,uint32_t& buff_size,uint32_t& offset,uint8_t section_tag,const unsigned char * val,uint32_t size) ;
|
|
|
|
static bool readField (const unsigned char *buff,uint32_t buff_size,uint32_t& offset,uint8_t check_section_tag, unsigned char *& val,uint32_t& size) ;
|
|
|
|
|
2016-08-27 17:56:23 -04:00
|
|
|
template<class T> static bool serialise(unsigned char *buff,uint32_t size,uint32_t& offset,const T& val) ;
|
|
|
|
template<class T> static bool deserialise(const unsigned char *buff,uint32_t size,uint32_t& offset,T& val) ;
|
|
|
|
template<class T> static uint32_t serial_size(const T& val) ;
|
|
|
|
|
2016-09-03 12:46:03 -04:00
|
|
|
static bool saveEncryptedDataToFile(const std::string& fname,const unsigned char *data,uint32_t total_size);
|
|
|
|
static bool loadEncryptedDataFromFile(const std::string& fname,unsigned char *& data,uint32_t& total_size);
|
|
|
|
|
2016-08-09 09:07:02 -04:00
|
|
|
private:
|
2016-08-12 09:20:23 -04:00
|
|
|
static bool write125Size(unsigned char *data,uint32_t total_size,uint32_t& offset,uint32_t size) ;
|
|
|
|
static bool read125Size (const unsigned char *data,uint32_t total_size,uint32_t& offset,uint32_t& size) ;
|
|
|
|
|
2016-08-09 09:07:02 -04:00
|
|
|
static bool checkSectionSize(unsigned char *& buff,uint32_t& buff_size,uint32_t offset,uint32_t S)
|
|
|
|
{
|
2016-08-27 10:38:15 -04:00
|
|
|
if(offset + S + SECTION_HEADER_MAX_SIZE > buff_size)
|
2016-08-09 09:07:02 -04:00
|
|
|
{
|
2016-08-27 10:38:15 -04:00
|
|
|
buff = (unsigned char *)realloc(buff,offset + S + SECTION_HEADER_MAX_SIZE) ;
|
2016-08-27 17:56:23 -04:00
|
|
|
buff_size = offset + S + SECTION_HEADER_MAX_SIZE;
|
2016-08-09 09:07:02 -04:00
|
|
|
|
|
|
|
if(!buff)
|
|
|
|
return false ;
|
|
|
|
}
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
2016-08-12 09:20:23 -04:00
|
|
|
static bool writeSectionHeader(unsigned char *& buff,uint32_t& buff_size,uint32_t& offset,uint8_t section_tag,uint32_t S)
|
2016-08-09 09:07:02 -04:00
|
|
|
{
|
|
|
|
buff[offset++] = section_tag ;
|
2016-08-12 09:20:23 -04:00
|
|
|
if(!write125Size(buff,buff_size,offset,S)) return false ;
|
2016-08-09 09:07:02 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-08-12 09:20:23 -04:00
|
|
|
|
|
|
|
static bool readSectionHeader(const unsigned char *& buff,uint32_t buff_size,uint32_t& offset,uint8_t check_section_tag,uint32_t& S)
|
|
|
|
{
|
|
|
|
if(offset + 1 > buff_size)
|
|
|
|
return false ;
|
|
|
|
|
|
|
|
uint8_t section_tag = buff[offset++] ;
|
|
|
|
|
|
|
|
if(section_tag != check_section_tag)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return read125Size(buff,buff_size,offset,S) ;
|
|
|
|
}
|
2016-08-09 09:07:02 -04:00
|
|
|
};
|