]> sigrok.org Git - libsigrokdecode.git/blobdiff - log.c
cc1101: Simplify format_command().
[libsigrokdecode.git] / log.c
diff --git a/log.c b/log.c
index 36dcd95958e83d98010b7197fee39e12247f3978..de7360398456d2f087155f712281b6ed8ee53360 100644 (file)
--- a/log.c
+++ b/log.c
  * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "libsigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
-#include "libsigrokdecode-internal.h"
+#include <config.h>
+#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
+#include "libsigrokdecode.h"
 #include <stdarg.h>
 #include <stdio.h>
+#include <glib/gprintf.h>
 
 /**
  * @file
  */
 
 /* Currently selected libsigrokdecode loglevel. Default: SRD_LOG_WARN. */
-static int srd_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */
+static int cur_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */
 
 /* Function prototype. */
 static int srd_logv(void *cb_data, int loglevel, const char *format,
                    va_list args);
 
 /* Pointer to the currently selected log callback. Default: srd_logv(). */
-static srd_log_callback_t srd_log_callback = srd_logv;
+static srd_log_callback srd_log_cb = srd_logv;
 
 /*
  * Pointer to private data that can be passed to the log callback.
  * This can be used (for example) by C++ GUIs to pass a "this" pointer.
  */
-static void *srd_log_callback_data = NULL;
-
-/* Log domain (a short string that is used as prefix for all messages). */
-/** @cond PRIVATE */
-#define LOGDOMAIN_MAXLEN 30
-#define LOGDOMAIN_DEFAULT "srd: "
-/** @endcond */
-static char srd_log_domain[LOGDOMAIN_MAXLEN + 1] = LOGDOMAIN_DEFAULT;
+static void *srd_log_cb_data = NULL;
 
 /**
  * Set the libsigrokdecode loglevel.
@@ -85,7 +79,7 @@ SRD_API int srd_log_loglevel_set(int loglevel)
                return SRD_ERR_ARG;
        }
 
-       srd_loglevel = loglevel;
+       cur_loglevel = loglevel;
 
        srd_dbg("libsigrokdecode loglevel set to %d.", loglevel);
 
@@ -101,52 +95,7 @@ SRD_API int srd_log_loglevel_set(int loglevel)
  */
 SRD_API int srd_log_loglevel_get(void)
 {
-       return srd_loglevel;
-}
-
-/**
- * Set the libsigrokdecode logdomain string.
- *
- * @param logdomain The string to use as logdomain for libsigrokdecode log
- *                  messages from now on. Must not be NULL. The maximum
- *                  length of the string is 30 characters (this does not
- *                  include the trailing NUL-byte). Longer strings are
- *                  silently truncated.
- *                  In order to not use a logdomain, pass an empty string.
- *                  The function makes its own copy of the input string, i.e.
- *                  the caller does not need to keep it around.
- *
- * @return SRD_OK upon success, SRD_ERR_ARG upon invalid logdomain.
- *
- * @since 0.1.0
- */
-SRD_API int srd_log_logdomain_set(const char *logdomain)
-{
-       if (!logdomain) {
-               srd_err("log: %s: logdomain was NULL", __func__);
-               return SRD_ERR_ARG;
-       }
-
-       /* TODO: Error handling. */
-       snprintf((char *)&srd_log_domain, LOGDOMAIN_MAXLEN, "%s", logdomain);
-
-       srd_dbg("Log domain set to '%s'.", (const char *)&srd_log_domain);
-
-       return SRD_OK;
-}
-
-/**
- * Get the currently configured libsigrokdecode logdomain.
- *
- * @return A copy of the currently configured libsigrokdecode logdomain
- *         string. The caller is responsible for g_free()ing the string when
- *         it is no longer needed.
- *
- * @since 0.1.0
- */
-SRD_API char *srd_log_logdomain_get(void)
-{
-       return g_strdup((const char *)&srd_log_domain);
+       return cur_loglevel;
 }
 
 /**
@@ -163,9 +112,9 @@ SRD_API char *srd_log_logdomain_get(void)
  *
  * @return SRD_OK upon success, SRD_ERR_ARG upon invalid arguments.
  *
- * @since 0.1.0
+ * @since 0.3.0
  */
-SRD_API int srd_log_callback_set(srd_log_callback_t cb, void *cb_data)
+SRD_API int srd_log_callback_set(srd_log_callback cb, void *cb_data)
 {
        if (!cb) {
                srd_err("log: %s: cb was NULL", __func__);
@@ -174,8 +123,30 @@ SRD_API int srd_log_callback_set(srd_log_callback_t cb, void *cb_data)
 
        /* Note: 'cb_data' is allowed to be NULL. */
 
-       srd_log_callback = cb;
-       srd_log_callback_data = cb_data;
+       srd_log_cb = cb;
+       srd_log_cb_data = cb_data;
+
+       return SRD_OK;
+}
+
+/**
+ * Get the libsigrokdecode log callback routine and callback data.
+ *
+ * @param[out] cb Pointer to a function pointer to receive the log callback
+ *     function. Optional, can be NULL.
+ * @param[out] cb_data Pointer to a void pointer to receive the log callback's
+ *     additional arguments. Optional, can be NULL.
+ *
+ * @return SRD_OK upon success.
+ *
+ * @since 0.5.2
+ */
+SRD_API int srd_log_callback_get(srd_log_callback *cb, void **cb_data)
+{
+       if (cb)
+               *cb = srd_log_cb;
+       if (cb_data)
+               *cb_data = srd_log_cb_data;
 
        return SRD_OK;
 }
@@ -183,7 +154,7 @@ SRD_API int srd_log_callback_set(srd_log_callback_t cb, void *cb_data)
 /**
  * Set the libsigrokdecode log callback to the default built-in one.
  *
- * Additionally, the internal 'srd_log_callback_data' pointer is set to NULL.
+ * Additionally, the internal 'srd_log_cb_data' pointer is set to NULL.
  *
  * @return SRD_OK upon success, a (negative) error code otherwise.
  *
@@ -195,8 +166,8 @@ SRD_API int srd_log_callback_set_default(void)
         * Note: No log output in this function, as it should safely work
         * even if the currently set log callback is buggy/broken.
         */
-       srd_log_callback = srd_logv;
-       srd_log_callback_data = NULL;
+       srd_log_cb = srd_logv;
+       srd_log_cb_data = NULL;
 
        return SRD_OK;
 }
@@ -204,101 +175,33 @@ SRD_API int srd_log_callback_set_default(void)
 static int srd_logv(void *cb_data, int loglevel, const char *format,
                    va_list args)
 {
-       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_loglevel)
-               return SRD_OK; /* TODO? */
-
-       if (srd_log_domain[0] != '\0')
-               fprintf(stderr, "%s", srd_log_domain);
-       ret = vfprintf(stderr, format, args);
-       fprintf(stderr, "\n");
-
-       return ret;
-}
-
-/** @private */
-SRD_PRIV int srd_log(int loglevel, const char *format, ...)
-{
-       int ret;
-       va_list args;
-
-       va_start(args, format);
-       ret = srd_log_callback(srd_log_callback_data, loglevel, format, args);
-       va_end(args);
-
-       return ret;
-}
-
-/** @private */
-SRD_PRIV int srd_spew(const char *format, ...)
-{
-       int ret;
-       va_list args;
-
-       va_start(args, format);
-       ret = srd_log_callback(srd_log_callback_data, SRD_LOG_SPEW,
-                              format, args);
-       va_end(args);
-
-       return ret;
-}
-
-/** @private */
-SRD_PRIV int srd_dbg(const char *format, ...)
-{
-       int ret;
-       va_list args;
-
-       va_start(args, format);
-       ret = srd_log_callback(srd_log_callback_data, SRD_LOG_DBG,
-                              format, args);
-       va_end(args);
-
-       return ret;
-}
+       (void)loglevel;
 
-/** @private */
-SRD_PRIV int srd_info(const char *format, ...)
-{
-       int ret;
-       va_list args;
+       if (fputs("srd: ", stderr) < 0
+                       || g_vfprintf(stderr, format, args) < 0
+                       || putc('\n', stderr) < 0)
+               return SRD_ERR;
 
-       va_start(args, format);
-       ret = srd_log_callback(srd_log_callback_data, SRD_LOG_INFO,
-                              format, args);
-       va_end(args);
+       fflush(stderr);
 
-       return ret;
+       return SRD_OK;
 }
 
 /** @private */
-SRD_PRIV int srd_warn(const char *format, ...)
+SRD_PRIV int srd_log(int loglevel, const char *format, ...)
 {
        int ret;
        va_list args;
 
-       va_start(args, format);
-       ret = srd_log_callback(srd_log_callback_data, SRD_LOG_WARN,
-                              format, args);
-       va_end(args);
-
-       return ret;
-}
-
-/** @private */
-SRD_PRIV int srd_err(const char *format, ...)
-{
-       int ret;
-       va_list args;
+       /* Only output messages of at least the selected loglevel(s). */
+       if (loglevel > cur_loglevel)
+               return SRD_OK;
 
        va_start(args, format);
-       ret = srd_log_callback(srd_log_callback_data, SRD_LOG_ERR,
-                              format, args);
+       ret = srd_log_cb(srd_log_cb_data, loglevel, format, args);
        va_end(args);
 
        return ret;