]> sigrok.org Git - pulseview.git/commitdiff
Install logging callbacks for Android
authorMarcus Comstedt <redacted>
Wed, 16 Jul 2014 14:45:48 +0000 (16:45 +0200)
committerUwe Hermann <redacted>
Tue, 26 Aug 2014 20:45:41 +0000 (22:45 +0200)
CMakeLists.txt
android/loghandler.cpp [new file with mode: 0644]
android/loghandler.h [new file with mode: 0644]
main.cpp

index dd423f6b5500b0f985689a71a81b4d60282865b8..733bfe1f114865e7bac88851130b1b312c69e014 100644 (file)
@@ -258,6 +258,10 @@ if(WIN32)
        list(APPEND pulseview_SOURCES pulseviewico.rc)
 endif()
 
        list(APPEND pulseview_SOURCES pulseviewico.rc)
 endif()
 
+if(ANDROID)
+       list(APPEND pulseview_SOURCES android/loghandler.cpp)
+endif()
+
 if(Qt5Core_FOUND)
        qt5_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
        qt5_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
 if(Qt5Core_FOUND)
        qt5_wrap_cpp(pulseview_HEADERS_MOC ${pulseview_HEADERS})
        qt5_wrap_ui(pulseview_FORMS_HEADERS ${pulseview_FORMS})
@@ -339,6 +343,10 @@ if(WIN32)
        list(APPEND PULSEVIEW_LINK_LIBS "-lqsvg")
 endif()
 
        list(APPEND PULSEVIEW_LINK_LIBS "-lqsvg")
 endif()
 
+if(ANDROID)
+       list(APPEND PULSEVIEW_LINK_LIBS "-llog")
+endif()
+
 if(ANDROID)
 add_library(${PROJECT_NAME} SHARED
        ${pulseview_SOURCES}
 if(ANDROID)
 add_library(${PROJECT_NAME} SHARED
        ${pulseview_SOURCES}
diff --git a/android/loghandler.cpp b/android/loghandler.cpp
new file mode 100644 (file)
index 0000000..b502420
--- /dev/null
@@ -0,0 +1,104 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2014 Marcus Comstedt <marcus@mc.pp.se>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifdef ENABLE_DECODE
+#include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
+#endif
+
+#include <android/log.h>
+
+#include <stdint.h>
+#include <libsigrok/libsigrok.h>
+
+#include "android/loghandler.h"
+
+namespace pv {
+
+int AndroidLogHandler::sr_callback(void *cb_data, int loglevel, const char *format, va_list args)
+{
+       static const int prio[] = {
+               [SR_LOG_NONE] = ANDROID_LOG_SILENT,
+               [SR_LOG_ERR] = ANDROID_LOG_ERROR,
+               [SR_LOG_WARN] = ANDROID_LOG_WARN,
+               [SR_LOG_INFO] = ANDROID_LOG_INFO,
+               [SR_LOG_DBG] = ANDROID_LOG_DEBUG,
+               [SR_LOG_SPEW] = ANDROID_LOG_VERBOSE,
+       };
+       int ret;
+
+       /* This specific log callback doesn't need the void pointer data. */
+       (void)cb_data;
+
+       /* Only output messages of at least the selected loglevel(s). */
+       if (loglevel > sr_log_loglevel_get())
+               return SR_OK; /* TODO? */
+
+       if (loglevel < SR_LOG_NONE)
+         loglevel = SR_LOG_NONE;
+       else if (loglevel > SR_LOG_SPEW)
+         loglevel = SR_LOG_SPEW;
+
+       ret = __android_log_vprint(prio[loglevel], "sr", format, args);
+
+       return ret;
+}
+
+int AndroidLogHandler::srd_callback(void *cb_data, int loglevel, const char *format, va_list args)
+{
+#ifdef ENABLE_DECODE
+       static const int prio[] = {
+               [SRD_LOG_NONE] = ANDROID_LOG_SILENT,
+               [SRD_LOG_ERR] = ANDROID_LOG_ERROR,
+               [SRD_LOG_WARN] = ANDROID_LOG_WARN,
+               [SRD_LOG_INFO] = ANDROID_LOG_INFO,
+               [SRD_LOG_DBG] = ANDROID_LOG_DEBUG,
+               [SRD_LOG_SPEW] = ANDROID_LOG_VERBOSE,
+       };
+       int ret;
+
+       /* This specific log callback doesn't need the void pointer data. */
+       (void)cb_data;
+
+       /* Only output messages of at least the selected loglevel(s). */
+       if (loglevel > srd_log_loglevel_get())
+               return SRD_OK; /* TODO? */
+
+       if (loglevel < SRD_LOG_NONE)
+         loglevel = SRD_LOG_NONE;
+       else if (loglevel > SRD_LOG_SPEW)
+         loglevel = SRD_LOG_SPEW;
+
+       ret = __android_log_vprint(prio[loglevel], "srd", format, args);
+
+       return ret;
+#else
+       return 0;
+#endif
+}
+
+void AndroidLogHandler::install_callbacks()
+{
+       sr_log_callback_set(sr_callback, NULL);
+#ifdef ENABLE_DECODE
+       srd_log_callback_set(srd_callback, NULL);
+#endif
+}
+
+} // namespace pv
+
diff --git a/android/loghandler.h b/android/loghandler.h
new file mode 100644 (file)
index 0000000..e49158a
--- /dev/null
@@ -0,0 +1,39 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2014 Marcus Comstedt <marcus@mc.pp.se>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef PULSEVIEW_ANDROID_LOGHANDLER_H
+#define PULSEVIEW_ANDROID_LOGHANDLER_H
+
+#include <stdarg.h>
+
+namespace pv {
+
+class AndroidLogHandler
+{
+private:
+       static int sr_callback(void *cb_data, int loglevel, const char *format, va_list args);
+       static int srd_callback(void *cb_data, int loglevel, const char *format, va_list args);
+
+public:
+       static void install_callbacks();
+};
+
+} // namespace pv
+
+#endif // PULSEVIEW_ANDROID_LOGHANDLER_H
index 23f3f62306c6a492b84d5e853c414f198248bde4..0d59baef16847a8735f22b8f9e7ff081e1582e53 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -36,6 +36,9 @@
 
 #include "pv/devicemanager.h"
 #include "pv/mainwindow.h"
 
 #include "pv/devicemanager.h"
 #include "pv/mainwindow.h"
+#ifdef ANDROID
+#include "android/loghandler.h"
+#endif
 
 #include "config.h"
 
 
 #include "config.h"
 
@@ -71,6 +74,10 @@ int main(int argc, char *argv[])
        QApplication::setApplicationName("PulseView");
        QApplication::setOrganizationDomain("sigrok.org");
 
        QApplication::setApplicationName("PulseView");
        QApplication::setOrganizationDomain("sigrok.org");
 
+#ifdef ANDROID
+       pv::AndroidLogHandler::install_callbacks();
+#endif
+
        // Parse arguments
        while (1) {
                static const struct option long_options[] = {
        // Parse arguments
        while (1) {
                static const struct option long_options[] = {