2015-11-10 02:34:31 -04:00
|
|
|
/*
|
2019-01-18 00:23:42 -04:00
|
|
|
AP_Logger logging - MAVLink variant
|
2015-11-10 02:34:31 -04:00
|
|
|
|
|
|
|
- transfers blocks of the open log file to a client using MAVLink
|
|
|
|
*/
|
2016-02-17 21:25:53 -04:00
|
|
|
#pragma once
|
2015-11-10 02:34:31 -04:00
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
#include "AP_Logger_Backend.h"
|
2015-11-10 02:34:31 -04:00
|
|
|
|
2021-01-06 22:04:09 -04:00
|
|
|
#if HAL_LOGGING_MAVLINK_ENABLED
|
|
|
|
|
2022-02-28 21:19:10 -04:00
|
|
|
#include <AP_HAL/Semaphores.h>
|
2015-11-10 02:34:31 -04:00
|
|
|
|
|
|
|
#define DF_MAVLINK_DISABLE_INTERRUPTS 0
|
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
class AP_Logger_MAVLink : public AP_Logger_Backend
|
2015-11-10 02:34:31 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2019-01-18 00:23:42 -04:00
|
|
|
AP_Logger_MAVLink(AP_Logger &front, LoggerMessageWriter_DFLogStart *writer) :
|
|
|
|
AP_Logger_Backend(front, writer),
|
2018-04-23 01:35:29 -03:00
|
|
|
_max_blocks_per_send_blocks(8)
|
|
|
|
{
|
|
|
|
_blockcount = 1024*((uint8_t)_front._params.mav_bufsize) / sizeof(struct dm_block);
|
|
|
|
// ::fprintf(stderr, "DM: Using %u blocks\n", _blockcount);
|
|
|
|
}
|
2015-11-10 02:34:31 -04:00
|
|
|
|
2021-11-02 22:34:52 -03:00
|
|
|
static AP_Logger_Backend *probe(AP_Logger &front,
|
|
|
|
LoggerMessageWriter_DFLogStart *ls) {
|
|
|
|
return new AP_Logger_MAVLink(front, ls);
|
|
|
|
}
|
|
|
|
|
2015-11-10 02:34:31 -04:00
|
|
|
// initialisation
|
|
|
|
void Init() override;
|
|
|
|
|
2018-05-07 00:34:31 -03:00
|
|
|
// in actual fact, we throw away everything until a client connects.
|
|
|
|
// This stops calls to start_new_log from the vehicles
|
|
|
|
bool logging_started() const override { return _initialised; }
|
2015-11-10 02:34:31 -04:00
|
|
|
|
2017-03-30 06:23:17 -03:00
|
|
|
void stop_logging() override;
|
2016-04-22 10:33:40 -03:00
|
|
|
|
2015-11-10 02:34:31 -04:00
|
|
|
/* Write a block of data at current offset */
|
2017-06-30 08:09:20 -03:00
|
|
|
bool _WritePrioritisedBlock(const void *pBuffer, uint16_t size,
|
2015-11-10 02:34:31 -04:00
|
|
|
bool is_critical) override;
|
|
|
|
|
|
|
|
// initialisation
|
2017-06-14 22:19:54 -03:00
|
|
|
bool CardInserted(void) const override { return true; }
|
2015-11-10 02:34:31 -04:00
|
|
|
|
|
|
|
// erase handling
|
|
|
|
void EraseAll() override {}
|
|
|
|
|
2020-05-05 14:00:54 -03:00
|
|
|
void PrepForArming() override {}
|
2015-11-10 02:34:31 -04:00
|
|
|
|
|
|
|
// high level interface
|
|
|
|
uint16_t find_last_log(void) override { return 0; }
|
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 {}
|
2015-11-10 02:34:31 -04:00
|
|
|
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 { return 0; }
|
|
|
|
uint16_t get_num_logs(void) override { return 0; }
|
|
|
|
|
2019-07-31 21:08:23 -03:00
|
|
|
void remote_log_block_status_msg(const GCS_MAVLINK &link, const mavlink_message_t& msg) override;
|
2020-05-05 14:00:54 -03:00
|
|
|
void vehicle_was_disarmed() override {}
|
2017-04-05 07:02:44 -03:00
|
|
|
|
2017-06-08 22:36:18 -03:00
|
|
|
protected:
|
|
|
|
|
2020-05-05 14:00:54 -03:00
|
|
|
void push_log_blocks() override;
|
2017-06-08 22:36:18 -03:00
|
|
|
bool WritesOK() const override;
|
|
|
|
|
2017-04-05 07:02:44 -03:00
|
|
|
private:
|
|
|
|
|
2015-11-10 02:34:31 -04:00
|
|
|
struct dm_block {
|
|
|
|
uint32_t seqno;
|
|
|
|
uint8_t buf[MAVLINK_MSG_REMOTE_LOG_DATA_BLOCK_FIELD_DATA_LEN];
|
|
|
|
uint32_t last_sent;
|
|
|
|
struct dm_block *next;
|
|
|
|
};
|
2017-03-30 06:23:17 -03:00
|
|
|
bool send_log_block(struct dm_block &block);
|
2019-07-31 21:08:23 -03:00
|
|
|
void handle_ack(const GCS_MAVLINK &link, const mavlink_message_t &msg, uint32_t seqno);
|
2017-03-30 06:23:17 -03:00
|
|
|
void handle_retry(uint32_t block_num);
|
2015-11-10 02:34:31 -04:00
|
|
|
void do_resends(uint32_t now);
|
|
|
|
void free_all_blocks();
|
|
|
|
|
|
|
|
// a stack for free blocks, queues for pending, sent, retries and sent
|
|
|
|
struct dm_block_queue {
|
|
|
|
uint32_t sent_count;
|
|
|
|
struct dm_block *oldest;
|
|
|
|
struct dm_block *youngest;
|
|
|
|
};
|
|
|
|
typedef struct dm_block_queue dm_block_queue_t ;
|
|
|
|
void enqueue_block(dm_block_queue_t &queue, struct dm_block *block);
|
|
|
|
bool queue_has_block(dm_block_queue_t &queue, struct dm_block *block);
|
|
|
|
struct dm_block *dequeue_seqno(dm_block_queue_t &queue, uint32_t seqno);
|
|
|
|
bool free_seqno_from_queue(uint32_t seqno, dm_block_queue_t &queue);
|
|
|
|
bool send_log_blocks_from_queue(dm_block_queue_t &queue);
|
|
|
|
uint8_t stack_size(struct dm_block *stack);
|
|
|
|
uint8_t queue_size(dm_block_queue_t queue);
|
|
|
|
|
|
|
|
struct dm_block *_blocks_free;
|
|
|
|
dm_block_queue_t _blocks_sent;
|
|
|
|
dm_block_queue_t _blocks_pending;
|
|
|
|
dm_block_queue_t _blocks_retry;
|
|
|
|
|
|
|
|
struct _stats {
|
|
|
|
// the following are reset any time we log stats (see "reset_stats")
|
|
|
|
uint32_t resends;
|
|
|
|
uint8_t collection_count;
|
|
|
|
uint16_t state_free; // cumulative across collection period
|
|
|
|
uint8_t state_free_min;
|
|
|
|
uint8_t state_free_max;
|
|
|
|
uint16_t state_pending; // cumulative across collection period
|
|
|
|
uint8_t state_pending_min;
|
|
|
|
uint8_t state_pending_max;
|
|
|
|
uint16_t state_retry; // cumulative across collection period
|
|
|
|
uint8_t state_retry_min;
|
|
|
|
uint8_t state_retry_max;
|
|
|
|
uint16_t state_sent; // cumulative across collection period
|
|
|
|
uint8_t state_sent_min;
|
|
|
|
uint8_t state_sent_max;
|
|
|
|
} stats;
|
|
|
|
|
2016-07-07 04:12:27 -03:00
|
|
|
// this method is used when reporting system status over mavlink
|
2017-03-30 06:23:17 -03:00
|
|
|
bool logging_enabled() const override { return true; }
|
|
|
|
bool logging_failed() const override;
|
2016-07-07 04:12:27 -03:00
|
|
|
|
2019-07-31 21:08:23 -03:00
|
|
|
const GCS_MAVLINK *_link;
|
|
|
|
|
2015-11-10 02:34:31 -04:00
|
|
|
uint8_t _target_system_id;
|
|
|
|
uint8_t _target_component_id;
|
|
|
|
|
|
|
|
// this controls the maximum number of blocks we will push from
|
|
|
|
// the pending and send queues in any call to push_log_blocks.
|
|
|
|
// push_log_blocks is called by periodic_tasks. Each block is 200
|
|
|
|
// bytes. In Plane, at 50Hz, a _max_blocks_per_send_blocks of 2
|
|
|
|
// means we will push at most 2*50*200 == 20KB of logs per second
|
|
|
|
// _max_blocks_per_send_blocks has to be high enough to push all
|
|
|
|
// of the logs, but low enough that we don't spend way too much
|
|
|
|
// time packing messages in any one loop
|
|
|
|
const uint8_t _max_blocks_per_send_blocks;
|
|
|
|
|
|
|
|
uint32_t _next_seq_num;
|
|
|
|
uint16_t _latest_block_len;
|
|
|
|
uint32_t _last_response_time;
|
|
|
|
uint32_t _last_send_time;
|
|
|
|
uint8_t _next_block_number_to_resend;
|
|
|
|
bool _sending_to_client;
|
|
|
|
|
2019-02-11 04:38:01 -04:00
|
|
|
void Write_logger_MAV(AP_Logger_MAVLink &logger);
|
2017-08-25 09:03:40 -03:00
|
|
|
|
2016-07-30 15:13:12 -03:00
|
|
|
uint32_t bufferspace_available() override; // in bytes
|
2021-02-01 12:26:29 -04:00
|
|
|
uint8_t remaining_space_in_current_block() const;
|
2015-11-10 02:34:31 -04:00
|
|
|
// write buffer
|
|
|
|
uint8_t _blockcount_free;
|
|
|
|
uint8_t _blockcount;
|
|
|
|
struct dm_block *_blocks;
|
|
|
|
struct dm_block *_current_block;
|
|
|
|
struct dm_block *next_block();
|
|
|
|
|
2017-03-30 06:23:17 -03:00
|
|
|
void periodic_10Hz(uint32_t now) override;
|
2018-07-28 13:28:54 -03:00
|
|
|
void periodic_1Hz() override;
|
2015-11-10 02:34:31 -04:00
|
|
|
|
|
|
|
void stats_init();
|
|
|
|
void stats_reset();
|
|
|
|
void stats_collect();
|
|
|
|
void stats_log();
|
|
|
|
uint32_t _stats_last_collected_time;
|
|
|
|
uint32_t _stats_last_logged_time;
|
|
|
|
uint8_t mavlink_seq;
|
|
|
|
|
|
|
|
/* we currently ignore requests to start a new log. Notionally we
|
|
|
|
* could close the currently logging session and hope the client
|
|
|
|
* re-opens one */
|
2020-01-20 13:27:12 -04:00
|
|
|
void start_new_log(void) override {
|
|
|
|
return;
|
2015-11-10 02:34:31 -04:00
|
|
|
}
|
2017-04-05 07:03:18 -03:00
|
|
|
|
2018-10-11 20:35:04 -03:00
|
|
|
HAL_Semaphore semaphore;
|
2015-11-10 02:34:31 -04:00
|
|
|
};
|
|
|
|
|
2021-01-06 22:04:09 -04:00
|
|
|
#endif // HAL_LOGGING_MAVLINK_ENABLED
|