ardupilot/libraries/AP_Logger/AP_Logger_File.h

141 lines
4.2 KiB
C
Raw Normal View History

2013-02-28 16:17:58 -04:00
/*
AP_Logger logging - file oriented variant
2013-02-28 16:17:58 -04:00
This uses posix file IO to create log files called logNN.dat in the
given directory
*/
#pragma once
2013-02-28 16:17:58 -04:00
#include <AP_Filesystem/AP_Filesystem.h>
#if HAVE_FILESYSTEM_SUPPORT
#include <AP_HAL/utility/RingBuffer.h>
#include "AP_Logger_Backend.h"
2015-06-25 10:53:20 -03:00
class AP_Logger_File : public AP_Logger_Backend
2013-02-28 16:17:58 -04:00
{
public:
// constructor
AP_Logger_File(AP_Logger &front,
LoggerMessageWriter_DFLogStart *,
const char *log_directory);
2013-02-28 16:17:58 -04:00
// initialisation
void Init() override;
bool CardInserted(void) const override;
2013-02-28 16:17:58 -04:00
// erase handling
void EraseAll() override;
2013-02-28 16:17:58 -04:00
// possibly time-consuming preparation handling:
void Prep() override;
2013-02-28 16:17:58 -04:00
/* Write a block of data at current offset */
bool _WritePrioritisedBlock(const void *pBuffer, uint16_t size, bool is_critical) override;
uint32_t bufferspace_available() override;
2013-02-28 16:17:58 -04:00
// high level interface
uint16_t find_last_log() override;
2019-01-18 18:45:36 -04:00
void get_log_boundaries(uint16_t log_num, uint32_t & start_page, uint32_t & end_page) override;
void get_log_info(uint16_t log_num, uint32_t &size, uint32_t &time_utc) override;
int16_t get_log_data(uint16_t log_num, uint16_t page, uint32_t offset, uint16_t len, uint8_t *data) override;
uint16_t get_num_logs() override;
2020-01-20 13:27:12 -04:00
void start_new_log(void) override;
uint16_t find_oldest_log() override;
2013-02-28 16:17:58 -04:00
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL || CONFIG_HAL_BOARD == HAL_BOARD_LINUX
void flush(void) override;
#endif
2018-07-28 13:28:54 -03:00
void periodic_1Hz() override;
void periodic_fullrate() override;
// this method is used when reporting system status over mavlink
bool logging_failed() const override;
bool logging_started(void) const override { return _write_fd != -1; }
protected:
bool WritesOK() const override;
bool StartNewLogOK() const override;
2013-02-28 16:17:58 -04:00
private:
2013-09-28 03:29:58 -03:00
int _write_fd;
char *_write_filename;
uint32_t _last_write_ms;
2019-07-15 20:39:49 -03:00
#if CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
bool _need_rtc_update;
2019-07-15 20:39:49 -03:00
#endif
2013-02-28 16:17:58 -04:00
int _read_fd;
uint16_t _read_fd_log_num;
uint32_t _read_offset;
uint32_t _write_offset;
volatile uint32_t _open_error_ms;
2013-02-28 16:17:58 -04:00
const char *_log_directory;
bool _last_write_failed;
2013-02-28 16:17:58 -04:00
uint32_t _io_timer_heartbeat;
bool io_thread_alive() const;
uint8_t io_thread_warning_decimation_counter;
// do we have a recent open error?
bool recent_open_error(void) const;
// possibly time-consuming preparations handling
void Prep_MinSpace();
int64_t disk_space_avail();
int64_t disk_space();
void ensure_log_directory_exists();
bool NeedPrep();
bool file_exists(const char *filename) const;
bool log_exists(const uint16_t lognum) const;
2013-02-28 16:17:58 -04:00
// write buffer
ByteBuffer _writebuf;
const uint16_t _writebuf_chunk;
2013-09-28 03:29:58 -03:00
uint32_t _last_write_time;
2013-02-28 16:17:58 -04:00
/* construct a file name given a log number. Caller must free. */
char *_log_file_name(const uint16_t log_num) const;
char *_log_file_name_long(const uint16_t log_num) const;
char *_log_file_name_short(const uint16_t log_num) const;
char *_lastlog_file_name() const;
uint32_t _get_log_size(const uint16_t log_num);
uint32_t _get_log_time(const uint16_t log_num);
void stop_logging(void) override;
2013-09-28 03:29:58 -03:00
void _io_timer(void);
uint32_t last_messagewrite_message_sent;
// free-space checks; filling up SD cards under NuttX leads to
// corrupt filesystems which cause loss of data, failure to gather
// data and failures-to-boot.
uint32_t _free_space_last_check_time; // milliseconds
const uint32_t _free_space_check_interval = 1000UL; // milliseconds
const uint32_t _free_space_min_avail = 8388608; // bytes
// semaphore mediates access to the ringbuffer
HAL_Semaphore semaphore;
// write_fd_semaphore mediates access to write_fd so the frontend
// can open/close files without causing the backend to write to a
// bad fd
HAL_Semaphore write_fd_semaphore;
// performance counters
2015-10-20 02:49:32 -03:00
AP_HAL::Util::perf_counter_t _perf_write;
AP_HAL::Util::perf_counter_t _perf_fsync;
AP_HAL::Util::perf_counter_t _perf_errors;
AP_HAL::Util::perf_counter_t _perf_overruns;
const char *last_io_operation = "";
2013-02-28 16:17:58 -04:00
};
#endif // HAVE_FILESYSTEM_SUPPORT