mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-02 03:49:12 +08:00
+33
-17
@@ -103,7 +103,7 @@
|
|||||||
|
|
||||||
//#define SDLOG2_DEBUG
|
//#define SDLOG2_DEBUG
|
||||||
|
|
||||||
static bool thread_should_exit = false; /**< Deamon exit flag */
|
static bool main_thread_should_exit = false; /**< Deamon exit flag */
|
||||||
static bool thread_running = false; /**< Deamon status flag */
|
static bool thread_running = false; /**< Deamon status flag */
|
||||||
static int deamon_task; /**< Handle of deamon task / thread */
|
static int deamon_task; /**< Handle of deamon task / thread */
|
||||||
static bool logwriter_should_exit = false; /**< Logwriter thread exit flag */
|
static bool logwriter_should_exit = false; /**< Logwriter thread exit flag */
|
||||||
@@ -236,7 +236,7 @@ int sdlog2_main(int argc, char *argv[])
|
|||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
thread_should_exit = false;
|
main_thread_should_exit = false;
|
||||||
deamon_task = task_spawn("sdlog2",
|
deamon_task = task_spawn("sdlog2",
|
||||||
SCHED_DEFAULT,
|
SCHED_DEFAULT,
|
||||||
SCHED_PRIORITY_DEFAULT - 30,
|
SCHED_PRIORITY_DEFAULT - 30,
|
||||||
@@ -251,7 +251,7 @@ int sdlog2_main(int argc, char *argv[])
|
|||||||
printf("\tsdlog2 is not started\n");
|
printf("\tsdlog2 is not started\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
thread_should_exit = true;
|
main_thread_should_exit = true;
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -330,10 +330,10 @@ int open_logfile()
|
|||||||
fd = open(path_buf, O_CREAT | O_WRONLY | O_DSYNC);
|
fd = open(path_buf, O_CREAT | O_WRONLY | O_DSYNC);
|
||||||
|
|
||||||
if (fd == 0) {
|
if (fd == 0) {
|
||||||
errx(1, "opening %s failed.", path_buf);
|
warn("opening %s failed", path_buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
warnx("logging to: %s", path_buf);
|
warnx("logging to: %s.", path_buf);
|
||||||
mavlink_log_info(mavlink_fd, "[sdlog2] log: %s", path_buf);
|
mavlink_log_info(mavlink_fd, "[sdlog2] log: %s", path_buf);
|
||||||
|
|
||||||
return fd;
|
return fd;
|
||||||
@@ -341,7 +341,7 @@ int open_logfile()
|
|||||||
|
|
||||||
if (file_number > MAX_NO_LOGFILE) {
|
if (file_number > MAX_NO_LOGFILE) {
|
||||||
/* we should not end up here, either we have more than MAX_NO_LOGFILE on the SD card, or another problem */
|
/* we should not end up here, either we have more than MAX_NO_LOGFILE on the SD card, or another problem */
|
||||||
warn("all %d possible files exist already", MAX_NO_LOGFILE);
|
warnx("all %d possible files exist already.", MAX_NO_LOGFILE);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -367,8 +367,7 @@ static void *logwriter_thread(void *arg)
|
|||||||
bool should_wait = false;
|
bool should_wait = false;
|
||||||
bool is_part = false;
|
bool is_part = false;
|
||||||
|
|
||||||
while (!thread_should_exit && !logwriter_should_exit) {
|
while (true) {
|
||||||
|
|
||||||
/* make sure threads are synchronized */
|
/* make sure threads are synchronized */
|
||||||
pthread_mutex_lock(&logbuffer_mutex);
|
pthread_mutex_lock(&logbuffer_mutex);
|
||||||
|
|
||||||
@@ -378,7 +377,7 @@ static void *logwriter_thread(void *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* only wait if no data is available to process */
|
/* only wait if no data is available to process */
|
||||||
if (should_wait) {
|
if (should_wait && !logwriter_should_exit) {
|
||||||
/* blocking wait for new data at this line */
|
/* blocking wait for new data at this line */
|
||||||
pthread_cond_wait(&logbuffer_cond, &logbuffer_mutex);
|
pthread_cond_wait(&logbuffer_cond, &logbuffer_mutex);
|
||||||
}
|
}
|
||||||
@@ -411,7 +410,7 @@ static void *logwriter_thread(void *arg)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (n < 0) {
|
if (n < 0) {
|
||||||
thread_should_exit = true;
|
main_thread_should_exit = true;
|
||||||
err(1, "error writing log file");
|
err(1, "error writing log file");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -421,6 +420,16 @@ static void *logwriter_thread(void *arg)
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
n = 0;
|
n = 0;
|
||||||
|
#ifdef SDLOG2_DEBUG
|
||||||
|
printf("no data available, main_thread_should_exit=%i, logwriter_should_exit=%i\n", (int)main_thread_should_exit, (int)logwriter_should_exit);
|
||||||
|
#endif
|
||||||
|
/* exit only with empty buffer */
|
||||||
|
if (main_thread_should_exit || logwriter_should_exit) {
|
||||||
|
#ifdef SDLOG2_DEBUG
|
||||||
|
printf("break logwriter thread\n");
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
}
|
||||||
should_wait = true;
|
should_wait = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -433,6 +442,10 @@ static void *logwriter_thread(void *arg)
|
|||||||
fsync(log_file);
|
fsync(log_file);
|
||||||
close(log_file);
|
close(log_file);
|
||||||
|
|
||||||
|
#ifdef SDLOG2_DEBUG
|
||||||
|
printf("logwriter thread exit\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -459,10 +472,9 @@ void sdlog2_start_log()
|
|||||||
pthread_attr_setstacksize(&receiveloop_attr, 2048);
|
pthread_attr_setstacksize(&receiveloop_attr, 2048);
|
||||||
|
|
||||||
logwriter_should_exit = false;
|
logwriter_should_exit = false;
|
||||||
pthread_t thread;
|
|
||||||
|
|
||||||
/* start log buffer emptying thread */
|
/* start log buffer emptying thread */
|
||||||
if (0 != pthread_create(&thread, &receiveloop_attr, logwriter_thread, &lb)) {
|
if (0 != pthread_create(&logwriter_pthread, &receiveloop_attr, logwriter_thread, &lb)) {
|
||||||
errx(1, "error creating logwriter thread");
|
errx(1, "error creating logwriter thread");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -476,16 +488,20 @@ void sdlog2_stop_log()
|
|||||||
mavlink_log_info(mavlink_fd, "[sdlog2] stop logging");
|
mavlink_log_info(mavlink_fd, "[sdlog2] stop logging");
|
||||||
|
|
||||||
logging_enabled = false;
|
logging_enabled = false;
|
||||||
logwriter_should_exit = true;
|
|
||||||
|
|
||||||
/* wake up write thread one last time */
|
/* wake up write thread one last time */
|
||||||
pthread_mutex_lock(&logbuffer_mutex);
|
pthread_mutex_lock(&logbuffer_mutex);
|
||||||
|
logwriter_should_exit = true;
|
||||||
pthread_cond_signal(&logbuffer_cond);
|
pthread_cond_signal(&logbuffer_cond);
|
||||||
/* unlock, now the writer thread may return */
|
/* unlock, now the writer thread may return */
|
||||||
pthread_mutex_unlock(&logbuffer_mutex);
|
pthread_mutex_unlock(&logbuffer_mutex);
|
||||||
|
|
||||||
/* wait for write thread to return */
|
/* wait for write thread to return */
|
||||||
(void)pthread_join(logwriter_pthread, NULL);
|
int ret;
|
||||||
|
if ((ret = pthread_join(logwriter_pthread, NULL)) != 0) {
|
||||||
|
warnx("error joining logwriter thread: %i", ret);
|
||||||
|
}
|
||||||
|
logwriter_pthread = 0;
|
||||||
|
|
||||||
sdlog2_status();
|
sdlog2_status();
|
||||||
}
|
}
|
||||||
@@ -506,7 +522,7 @@ void write_formats(int fd)
|
|||||||
|
|
||||||
for (i = 0; i < log_formats_num; i++) {
|
for (i = 0; i < log_formats_num; i++) {
|
||||||
log_format_packet.body = log_formats[i];
|
log_format_packet.body = log_formats[i];
|
||||||
write(fd, &log_format_packet, sizeof(log_format_packet));
|
log_bytes_written += write(fd, &log_format_packet, sizeof(log_format_packet));
|
||||||
}
|
}
|
||||||
|
|
||||||
fsync(fd);
|
fsync(fd);
|
||||||
@@ -809,7 +825,7 @@ int sdlog2_thread_main(int argc, char *argv[])
|
|||||||
if (log_on_start)
|
if (log_on_start)
|
||||||
sdlog2_start_log();
|
sdlog2_start_log();
|
||||||
|
|
||||||
while (!thread_should_exit) {
|
while (!main_thread_should_exit) {
|
||||||
/* decide use usleep() or blocking poll() */
|
/* decide use usleep() or blocking poll() */
|
||||||
bool use_sleep = sleep_delay > 0 && logging_enabled;
|
bool use_sleep = sleep_delay > 0 && logging_enabled;
|
||||||
|
|
||||||
@@ -819,7 +835,7 @@ int sdlog2_thread_main(int argc, char *argv[])
|
|||||||
/* handle the poll result */
|
/* handle the poll result */
|
||||||
if (poll_ret < 0) {
|
if (poll_ret < 0) {
|
||||||
warnx("ERROR: poll error, stop logging.");
|
warnx("ERROR: poll error, stop logging.");
|
||||||
thread_should_exit = true;
|
main_thread_should_exit = true;
|
||||||
|
|
||||||
} else if (poll_ret > 0) {
|
} else if (poll_ret > 0) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user