logmeow/logcat_thread.cpp

219 lines
7.7 KiB
C++
Raw Normal View History

2023-01-17 15:35:08 +00:00
#include <cstring>
2023-01-17 14:44:17 +00:00
#include <fcntl.h>
2023-01-16 09:10:53 +00:00
#include <unistd.h>
#include <sys/epoll.h>
2023-01-17 14:44:17 +00:00
#include <system_error>
2023-01-16 09:10:53 +00:00
#include "log.h"
#include "misc.h"
#include "logcat_thread.h"
2023-01-19 16:34:03 +00:00
#include "logcat_entry.h"
2023-01-16 09:10:53 +00:00
#define EPOLL_MAX_EVENTS 10
2023-01-17 14:44:17 +00:00
static void mark_nonblock(int fd) {
int flags = fcntl(fd, F_GETFL);
if (flags < 0) {
2023-01-17 15:35:08 +00:00
throw_system_error("fcntl(fd, F_GETFL)");
2023-01-17 14:44:17 +00:00
}
if (!(flags & O_NONBLOCK) && fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1) {
2023-01-17 15:35:08 +00:00
throw_system_error("fcntl(fd, F_SETFL)");
2023-01-17 14:44:17 +00:00
}
}
2023-01-19 05:54:20 +00:00
static inline void look_for_newlines(char buf[NEWLINE_BUF_SIZE], size_t* used, size_t previous_used,
void(LogcatThread::*handle_line)(char*, size_t, bool), LogcatThread* logcat_thread, bool is_stdout) {
size_t search_offset = previous_used;
size_t real_offset = 0;
while (*used > search_offset) {
char* newline_ptr = static_cast<char*>(memchr(&buf[search_offset], '\n', (*used - search_offset) * sizeof(char)));
if (!newline_ptr) {
break;
}
size_t newline_length = (reinterpret_cast<size_t>(newline_ptr) - reinterpret_cast<size_t>(&buf[real_offset])) / sizeof(char);
(logcat_thread->*handle_line)(&buf[real_offset], newline_length, is_stdout);
search_offset += newline_length + 1;
real_offset = search_offset;
}
if (real_offset) {
if (*used > search_offset) {
memcpy(buf, &buf[real_offset], (*used - real_offset) * sizeof(char));
*used -= real_offset;
} else {
*used = 0;
}
}
}
static inline void handle_fd(int fd, char* buf, size_t* used,
void(LogcatThread::*handle_line)(char*, size_t, bool), LogcatThread* logcat_thread, bool is_stdout) {
while (true) {
ssize_t read_size_u = read(fd, &buf[*used], (NEWLINE_BUF_SIZE - *used) * sizeof(char));
if (read_size_u == 0) {
return;
} else if (read_size_u < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) {
return;
} else if (read_size_u < 0) {
throw_system_error("read()");
}
size_t read_size = static_cast<size_t>(read_size_u) / sizeof(char);
if (*used + read_size > NEWLINE_BUF_SIZE) {
throw std::runtime_error("Received line longer than 512k");
}
size_t previous_used = *used;
*used += read_size;
look_for_newlines(buf, used, previous_used, handle_line, logcat_thread, is_stdout);
}
}
2023-01-17 14:44:17 +00:00
2023-01-17 16:22:12 +00:00
LogcatThread::LogcatThread() {
2023-01-17 14:44:17 +00:00
int fds[2];
struct epoll_event event = {.events = EPOLLIN | EPOLLET};
if (pipe(fds)) {
2023-01-17 15:35:08 +00:00
int errsv = errno;
2023-01-17 14:44:17 +00:00
this->~LogcatThread();
2023-01-17 15:35:08 +00:00
throw_system_error(errsv, "pipe() for stdout");
2023-01-17 14:44:17 +00:00
}
this->_stdout_read_fd = fds[0];
this->_stdout_write_fd = fds[1];
try {
mark_nonblock(this->_stdout_read_fd);
} catch (const std::exception& e) {
this->~LogcatThread();
throw;
}
if (pipe(fds)) {
2023-01-17 15:35:08 +00:00
int errsv = errno;
2023-01-17 14:44:17 +00:00
this->~LogcatThread();
2023-01-17 15:35:08 +00:00
throw_system_error(errsv, "pipe() for stderr");
2023-01-17 14:44:17 +00:00
}
this->_stderr_read_fd = fds[0];
this->_stderr_write_fd = fds[1];
try {
mark_nonblock(this->_stderr_read_fd);
} catch (const std::exception& e) {
this->~LogcatThread();
throw;
}
2023-01-17 13:56:56 +00:00
this->_epoll_fd = epoll_create1(EPOLL_CLOEXEC);
if (this->_epoll_fd == -1) {
2023-01-17 15:35:08 +00:00
int errsv = errno;
this->~LogcatThread();
throw_system_error(errsv, "epoll_create1()");
2023-01-16 09:10:53 +00:00
}
2023-01-17 14:44:17 +00:00
event.data.fd = this->_stdout_read_fd;
if (epoll_ctl(this->_epoll_fd, EPOLL_CTL_ADD, this->_stdout_read_fd, &event)) {
2023-01-17 15:35:08 +00:00
int errsv = errno;
2023-01-17 14:44:17 +00:00
this->~LogcatThread();
2023-01-17 15:35:08 +00:00
throw_system_error(errsv, "epoll_ctl() for stdout");
2023-01-17 14:44:17 +00:00
}
event.data.fd = this->_stderr_read_fd;
if (epoll_ctl(this->_epoll_fd, EPOLL_CTL_ADD, this->_stderr_read_fd, &event)) {
2023-01-17 15:35:08 +00:00
int errsv = errno;
2023-01-17 14:44:17 +00:00
this->~LogcatThread();
2023-01-17 15:35:08 +00:00
throw_system_error(errsv, "epoll_ctl() for stderr");
2023-01-17 14:44:17 +00:00
}
2023-01-17 16:22:12 +00:00
this->_thread = std::thread(&LogcatThread::_run, this, this->_stop_source.get_token());
2023-01-16 09:10:53 +00:00
}
2023-01-17 13:56:56 +00:00
LogcatThread::~LogcatThread() {
if (this->_epoll_fd != -1 && close(this->_epoll_fd)) {
2023-01-17 15:35:08 +00:00
log(std::string("Failed to close epoll file descriptor: close(): ") + strerror(errno));
2023-01-16 09:10:53 +00:00
}
2023-01-17 14:44:17 +00:00
if (this->_stdout_read_fd != -1 && close(this->_stdout_read_fd)) {
2023-01-17 15:35:08 +00:00
log(std::string("Failed to close stdout read pipe: close(): ") + strerror(errno));
2023-01-17 14:44:17 +00:00
}
if (this->_stdout_write_fd != -1 && close(this->_stdout_write_fd)) {
2023-01-17 15:35:08 +00:00
log(std::string("Failed to close stdout write pipe: close(): ") + strerror(errno));
2023-01-17 14:44:17 +00:00
}
if (this->_stderr_read_fd != -1 && close(this->_stderr_read_fd)) {
2023-01-17 15:35:08 +00:00
log(std::string("Failed to close stderr read pipe: close(): ") + strerror(errno));
2023-01-17 14:44:17 +00:00
}
if (this->_stderr_write_fd != -1 && close(this->_stderr_write_fd)) {
2023-01-17 15:35:08 +00:00
log(std::string("Failed to close stderr write pipe: close(): ") + strerror(errno));
2023-01-17 14:44:17 +00:00
}
2023-01-16 09:10:53 +00:00
}
2023-01-17 16:22:12 +00:00
void LogcatThread::request_stop() {
this->_stop_source.request_stop();
}
2023-01-17 13:56:56 +00:00
void LogcatThread::join() {
this->_thread.join();
}
2023-01-19 16:34:03 +00:00
void LogcatThread::_handle_line(char* buf, size_t length, bool is_stdout) {
2023-01-19 05:54:20 +00:00
if (!is_stdout) {
2023-01-19 16:34:03 +00:00
std::string log_entry = format_log(std::string("Received from logcat stderr: ") + std::string(buf, length));
2023-01-19 05:54:20 +00:00
printf("%s\n", log_entry.c_str());
this->atomic_ring_buffer.put_and_increment_write(std::move(log_entry));
return;
}
2023-01-19 16:34:03 +00:00
std::optional<LogcatEntry> logcat_entry;
try {
logcat_entry = try_parse_logcat_entry(buf, length, Buffer::Unknown);
} catch (const std::exception& e) {
std::string log_entry = format_log(std::string("Failed to parse logcat entry: ") + e.what());
printf("%s\n", log_entry.c_str());
this->atomic_ring_buffer.put_and_increment_write(std::move(log_entry));
}
if (logcat_entry) {
this->atomic_ring_buffer.put_and_increment_write(std::move(*logcat_entry));
return;
}
// TODO handle buffers
std::string log_entry = format_log(std::string("Cannot parse logcat stdout: ") + std::string(buf, length));
2023-01-19 05:54:20 +00:00
printf("%s\n", log_entry.c_str());
this->atomic_ring_buffer.put_and_increment_write(std::move(log_entry));
}
2023-01-17 16:22:12 +00:00
void LogcatThread::_run(std::stop_token stoken) {
2023-01-16 09:10:53 +00:00
struct epoll_event events[EPOLL_MAX_EVENTS];
2023-01-17 16:22:12 +00:00
while (!stoken.stop_requested()) {
#ifndef NDEBUG
if (this->debug_log_request.test()) {
this->atomic_ring_buffer.put_and_increment_write(format_log("A log entry from the logcat thread :D"));
this->debug_log_request.clear();
}
#endif
2023-01-18 16:34:17 +00:00
2023-01-17 13:56:56 +00:00
int ready_fds = epoll_wait(this->_epoll_fd, events, EPOLL_MAX_EVENTS, 1000);
2023-01-16 09:10:53 +00:00
if (ready_fds == -1) {
2023-01-18 16:34:17 +00:00
std::string log_entry = format_log(std::string("epoll_wait(): ") + strerror(errno));
printf("%s\n", log_entry.c_str());
this->atomic_ring_buffer.put_and_increment_write(std::move(log_entry));
2023-01-16 09:10:53 +00:00
break;
}
for (int i=0; i < ready_fds; i++) {
2023-01-19 05:54:20 +00:00
const bool is_stdout = events[i].data.fd == this->_stdout_read_fd;
char* buf = is_stdout ? this->_stdout_buf : this->_stderr_buf;
size_t* used = is_stdout ? &this->_stdout_buf_used : &this->_stderr_buf_used;
try {
handle_fd(events[i].data.fd, buf, used, &LogcatThread::_handle_line, this, is_stdout);
} catch (const std::exception& e) {
std::string log_entry = "Failed to handle std";
log_entry += is_stdout ? "out: " : "err: ";
log_entry += e.what();
log_entry = format_log(std::move(log_entry));
printf("%s\n", log_entry.c_str());
this->atomic_ring_buffer.put_and_increment_write(std::move(log_entry));
}
2023-01-16 09:10:53 +00:00
}
}
}