2022-12-31 08:35:58 +00:00
|
|
|
#include <imgui.h>
|
|
|
|
#include <imgui_stdlib.h>
|
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
#include "log.h"
|
2022-12-31 08:35:58 +00:00
|
|
|
#include "config.h"
|
2023-01-18 16:34:17 +00:00
|
|
|
#include "logcat_thread.h"
|
2022-12-31 08:35:58 +00:00
|
|
|
|
2023-01-04 16:40:35 +00:00
|
|
|
static inline void write_config_and_update_structures(const Config& config) {
|
|
|
|
try {
|
|
|
|
write_config(config);
|
|
|
|
} catch (const std::exception& e) {
|
2023-01-16 04:08:35 +00:00
|
|
|
log(std::string("Failed to write config: ") + e.what());
|
2023-01-05 10:27:14 +00:00
|
|
|
return;
|
2023-01-04 16:40:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-18 16:34:17 +00:00
|
|
|
static inline void check_for_logcat_items(LogcatThread& logcat_thread) {
|
|
|
|
LogcatThreadItem* logcat_thread_item;
|
|
|
|
|
|
|
|
while ((logcat_thread_item = logcat_thread.atomic_ring_buffer.get())) {
|
|
|
|
if (std::holds_alternative<std::string>(*logcat_thread_item)) {
|
|
|
|
if (!log_entries.empty()) {
|
|
|
|
log_entries += '\n';
|
|
|
|
}
|
|
|
|
log_entries += std::move(std::get<std::string>(*logcat_thread_item));
|
|
|
|
} else {
|
|
|
|
throw std::runtime_error("Cannot handle all possible logcat thread item variants");
|
|
|
|
}
|
|
|
|
logcat_thread.atomic_ring_buffer.increment_read();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
|
2023-01-04 16:40:35 +00:00
|
|
|
static inline void settings_window(Config& config, float* config_write_timer, bool* show_settings_window) {
|
2022-12-31 08:35:58 +00:00
|
|
|
if (!ImGui::Begin("Settings", show_settings_window)) {
|
|
|
|
ImGui::End();
|
|
|
|
return;
|
|
|
|
}
|
2023-01-04 16:40:35 +00:00
|
|
|
// TODO actually have process control
|
2023-01-05 10:27:14 +00:00
|
|
|
ImGui::Text("Logcat command only takes effect when logcat is not running");
|
2023-01-15 14:17:31 +00:00
|
|
|
if (ImGui::InputTextWithHint("Logcat command", "adb logcat -Dv 'threadtime UTC epoch usec uid'", &config.logcat_command)) {
|
2023-01-04 16:40:35 +00:00
|
|
|
*config_write_timer = *config_write_timer > 0.0f ? *config_write_timer : 5.0f;
|
|
|
|
}
|
2023-01-08 16:12:22 +00:00
|
|
|
ImGui::Text("Font sizes only take effect when LogMeow is restarted");
|
|
|
|
#ifdef USE_FONTCONFIG
|
|
|
|
if (ImGui::InputFloat("Normal font size", &config.normal_font_size, 0.5f, 1.0f, "%.3f")) {
|
|
|
|
*config_write_timer = *config_write_timer > 0.0f ? *config_write_timer : 5.0f;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (ImGui::InputFloat("Monospace font size", &config.monospace_font_size, 0.5f, 1.0f, "%.3f")) {
|
|
|
|
*config_write_timer = *config_write_timer > 0.0f ? *config_write_timer : 5.0f;
|
|
|
|
}
|
2022-12-31 08:35:58 +00:00
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
2023-01-06 16:27:39 +00:00
|
|
|
static inline void logs_window(ImFont* monospace_font, bool* autoscrolling, bool* show_logs_window) {
|
2023-01-05 10:27:14 +00:00
|
|
|
if (!ImGui::Begin("LogMeow Logs", show_logs_window)) {
|
2022-12-31 08:35:58 +00:00
|
|
|
ImGui::End();
|
|
|
|
return;
|
|
|
|
}
|
2023-01-05 10:27:14 +00:00
|
|
|
|
|
|
|
if (ImGui::Button("Clear")) {
|
|
|
|
log_entries.clear();
|
2022-12-31 08:35:58 +00:00
|
|
|
}
|
2023-01-05 10:27:14 +00:00
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Copy")) {
|
|
|
|
ImGui::SetClipboardText(log_entries.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Separator();
|
2023-01-05 13:53:23 +00:00
|
|
|
// copied from imgui/imgui_demo.cpp: [SECTION] Example App: Debug Console / ShowExampleAppConsole()
|
2023-01-05 10:27:14 +00:00
|
|
|
if (ImGui::BeginChild("ScrollingRegion", ImVec2(0, 0), false, ImGuiWindowFlags_HorizontalScrollbar)) {
|
2023-01-06 16:27:39 +00:00
|
|
|
ImGui::PushFont(monospace_font);
|
2023-01-05 10:27:14 +00:00
|
|
|
ImGui::TextUnformatted(log_entries.data(), &log_entries[log_entries.size()]);
|
2023-01-06 16:27:39 +00:00
|
|
|
ImGui::PopFont();
|
2023-01-05 13:53:23 +00:00
|
|
|
if (ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) {
|
2023-01-06 15:13:23 +00:00
|
|
|
*autoscrolling = true;
|
2023-01-05 13:53:23 +00:00
|
|
|
ImGui::SetScrollHereY(1.0f);
|
|
|
|
}
|
2023-01-05 10:27:14 +00:00
|
|
|
}
|
|
|
|
ImGui::EndChild();
|
2022-12-31 08:35:58 +00:00
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
2023-01-05 14:23:24 +00:00
|
|
|
static inline void main_window(bool latest_log_entries_read, bool* show_settings_window, bool* show_logs_window, bool* run_event_loop) {
|
2023-01-05 13:55:54 +00:00
|
|
|
if (!ImGui::Begin("LogMeow", run_event_loop)) {
|
2023-01-05 10:27:14 +00:00
|
|
|
ImGui::End();
|
2023-01-04 16:40:35 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-01-05 14:23:24 +00:00
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
if (ImGui::Button("Settings")) {
|
|
|
|
*show_settings_window = true;
|
2022-12-31 08:35:58 +00:00
|
|
|
}
|
2023-01-05 14:23:24 +00:00
|
|
|
|
2023-01-04 16:40:35 +00:00
|
|
|
ImGui::SameLine();
|
2023-01-05 14:23:24 +00:00
|
|
|
if (!latest_log_entries_read) {
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(0.0f, 0.6f, 0.6f));
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(0.0f, 0.7f, 0.7f));
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(0.0f, 0.8f, 0.8f));
|
|
|
|
}
|
2023-01-05 10:27:14 +00:00
|
|
|
if (ImGui::Button("Logs")) {
|
|
|
|
*show_logs_window = true;
|
2023-01-04 16:40:35 +00:00
|
|
|
}
|
2023-01-05 14:23:24 +00:00
|
|
|
if (!latest_log_entries_read) {
|
|
|
|
ImGui::PopStyleColor(3);
|
|
|
|
}
|
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
ImGui::End();
|
2022-12-31 08:35:58 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 09:05:09 +00:00
|
|
|
static inline void debug_window() {
|
2022-12-31 08:35:58 +00:00
|
|
|
static bool show_demo_window = false;
|
2023-01-05 10:27:14 +00:00
|
|
|
static size_t add_log_entry_presses = 1;
|
2023-01-05 13:53:34 +00:00
|
|
|
static bool log_entry_every_second = false;
|
|
|
|
static float log_entry_every_second_delta;
|
2023-01-05 10:27:14 +00:00
|
|
|
|
2022-12-31 08:35:58 +00:00
|
|
|
if (show_demo_window) {
|
|
|
|
ImGui::ShowDemoWindow(&show_demo_window);
|
|
|
|
}
|
2023-01-05 09:05:09 +00:00
|
|
|
if (!ImGui::Begin("LogMeow Debug")) {
|
|
|
|
ImGui::End();
|
|
|
|
return;
|
|
|
|
}
|
2023-01-05 13:53:34 +00:00
|
|
|
|
2023-01-05 09:05:09 +00:00
|
|
|
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
|
|
|
|
ImGui::Checkbox("Show Dear ImGui Demo Window", &show_demo_window);
|
2023-01-05 13:53:34 +00:00
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::Button("Add Log Entry")) {
|
2023-01-09 07:56:24 +00:00
|
|
|
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated via manual button press)");
|
2023-01-05 13:53:34 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
// returns true when it's pressed
|
|
|
|
if (ImGui::Checkbox("Add log entry every second", &log_entry_every_second)) {
|
|
|
|
log_entry_every_second_delta = 0.0f;
|
2023-01-05 10:27:14 +00:00
|
|
|
}
|
2023-01-16 03:57:07 +00:00
|
|
|
if (ImGui::Button("Add Log Entry with Newlines")) {
|
|
|
|
log("The following should have five spaces: \"\n\n\n\n\n\"");
|
|
|
|
}
|
|
|
|
|
2023-01-05 13:53:34 +00:00
|
|
|
if (log_entry_every_second) {
|
|
|
|
log_entry_every_second_delta += ImGui::GetIO().DeltaTime;
|
|
|
|
if (log_entry_every_second_delta >= 1.0f) {
|
|
|
|
log_entry_every_second_delta = 0.0f;
|
2023-01-09 07:56:24 +00:00
|
|
|
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated by add log entry every second)");
|
2023-01-05 13:53:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-05 09:05:09 +00:00
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
2023-01-18 16:34:17 +00:00
|
|
|
void event_loop(ImFont* monospace_font, Config& config, float* config_write_timer, LogcatThread& logcat_thread, bool* run_event_loop) {
|
2023-01-05 09:05:09 +00:00
|
|
|
static bool show_settings_window = false;
|
2023-01-05 10:27:14 +00:00
|
|
|
static bool show_logs_window = false;
|
2023-01-05 14:23:24 +00:00
|
|
|
static size_t log_entries_read = 0;
|
2023-01-05 09:05:09 +00:00
|
|
|
|
2023-01-18 16:34:17 +00:00
|
|
|
check_for_logcat_items(logcat_thread);
|
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
debug_window();
|
|
|
|
|
2022-12-31 08:35:58 +00:00
|
|
|
if (show_settings_window) {
|
2023-01-04 16:40:35 +00:00
|
|
|
settings_window(config, config_write_timer, &show_settings_window);
|
|
|
|
}
|
|
|
|
if (*config_write_timer > 0.0f) {
|
|
|
|
*config_write_timer -= ImGui::GetIO().DeltaTime;
|
|
|
|
if (*config_write_timer <= 0.0f) {
|
|
|
|
write_config_and_update_structures(config);
|
|
|
|
}
|
2022-12-31 08:35:58 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 10:27:14 +00:00
|
|
|
if (show_logs_window) {
|
2023-01-06 15:13:23 +00:00
|
|
|
bool autoscrolling = false;
|
2023-01-06 16:27:39 +00:00
|
|
|
logs_window(monospace_font, &autoscrolling, &show_logs_window);
|
2023-01-06 15:13:23 +00:00
|
|
|
if (autoscrolling) {
|
2023-01-05 14:23:24 +00:00
|
|
|
log_entries_read = log_entries.size();
|
|
|
|
}
|
2023-01-05 10:27:14 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 14:23:24 +00:00
|
|
|
// log_entries must not be mutated until the show logs button
|
|
|
|
main_window(log_entries_read == log_entries.size(), &show_settings_window, &show_logs_window, run_event_loop);
|
2022-12-31 08:35:58 +00:00
|
|
|
}
|