2013-02-28 16:17:58 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
/*
|
|
|
|
DataFlash logging - file oriented variant
|
|
|
|
|
|
|
|
This uses posix file IO to create log files called logNN.dat in the
|
|
|
|
given directory
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DataFlash_File_h
|
|
|
|
#define DataFlash_File_h
|
|
|
|
|
2013-04-19 04:49:16 -03:00
|
|
|
class DataFlash_File : public DataFlash_Class
|
2013-02-28 16:17:58 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
DataFlash_File(const char *log_directory);
|
|
|
|
|
|
|
|
// initialisation
|
|
|
|
void Init(void);
|
|
|
|
bool CardInserted(void);
|
|
|
|
|
|
|
|
// erase handling
|
|
|
|
bool NeedErase(void);
|
|
|
|
void EraseAll();
|
|
|
|
|
|
|
|
/* Write a block of data at current offset */
|
|
|
|
void WriteBlock(const void *pBuffer, uint16_t size);
|
|
|
|
|
|
|
|
// high level interface
|
|
|
|
uint16_t find_last_log(void);
|
2013-04-17 08:32:53 -03:00
|
|
|
void get_log_boundaries(uint16_t log_num, uint16_t & start_page, uint16_t & end_page);
|
|
|
|
uint16_t get_num_logs(void);
|
2013-03-14 17:30:23 -03:00
|
|
|
uint16_t start_new_log(void);
|
2013-04-19 04:49:16 -03:00
|
|
|
void LogReadProcess(uint16_t log_num,
|
|
|
|
uint16_t start_page, uint16_t end_page,
|
|
|
|
uint8_t num_types,
|
|
|
|
const struct LogStructure *structure,
|
2013-04-20 02:17:49 -03:00
|
|
|
void (*print_mode)(AP_HAL::BetterStream *port, uint8_t mode),
|
2013-04-19 04:49:16 -03:00
|
|
|
AP_HAL::BetterStream *port);
|
2013-02-28 16:17:58 -04:00
|
|
|
void DumpPageInfo(AP_HAL::BetterStream *port);
|
|
|
|
void ShowDeviceInfo(AP_HAL::BetterStream *port);
|
2013-04-17 08:32:53 -03:00
|
|
|
void ListAvailableLogs(AP_HAL::BetterStream *port);
|
2013-02-28 16:17:58 -04:00
|
|
|
|
|
|
|
private:
|
2013-09-28 03:29:58 -03:00
|
|
|
int _write_fd;
|
2013-02-28 16:17:58 -04:00
|
|
|
int _read_fd;
|
2013-04-17 08:32:53 -03:00
|
|
|
uint32_t _read_offset;
|
2013-09-28 03:29:58 -03:00
|
|
|
volatile bool _initialised;
|
2013-02-28 16:17:58 -04:00
|
|
|
const char *_log_directory;
|
|
|
|
|
2013-04-19 21:25:10 -03:00
|
|
|
/*
|
|
|
|
read a block
|
|
|
|
*/
|
|
|
|
void ReadBlock(void *pkt, uint16_t size);
|
|
|
|
|
2013-02-28 16:17:58 -04:00
|
|
|
// write buffer
|
2013-09-28 03:29:58 -03:00
|
|
|
uint8_t *_writebuf;
|
|
|
|
const uint16_t _writebuf_size;
|
|
|
|
volatile uint16_t _writebuf_head;
|
|
|
|
volatile uint16_t _writebuf_tail;
|
|
|
|
uint32_t _last_write_time;
|
2013-02-28 16:17:58 -04:00
|
|
|
|
|
|
|
/* construct a file name given a log number. Caller must free. */
|
2013-04-17 08:32:53 -03:00
|
|
|
char *_log_file_name(uint16_t log_num);
|
|
|
|
char *_lastlog_file_name(void);
|
|
|
|
uint32_t _get_log_size(uint16_t log_num);
|
|
|
|
|
2013-09-28 03:29:58 -03:00
|
|
|
void _io_timer(void);
|
2013-02-28 16:17:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DataFlash_File_h
|
|
|
|
|