File: loghandler.cpp

package info (click to toggle)
pulseview 0.4.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,092 kB
  • sloc: cpp: 25,958; xml: 215; java: 42; makefile: 2
file content (127 lines) | stat: -rw-r--r-- 3,540 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * 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 <cstdint>
#include <libsigrok/libsigrok.h>

#include "android/loghandler.hpp"

namespace pv {

static sr_log_callback prev_sr_log_cb;
static void *prev_sr_log_cb_data;

#ifdef ENABLE_DECODE
static srd_log_callback prev_srd_log_cb;
static void *prev_srd_log_cb_data;
#endif

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,
	};
	va_list args2;
	int ret;

	/* This specific log callback doesn't need the void pointer data. */
	(void)cb_data;

	/* Call the previously registered log callback (library's default). */
	va_copy(args2, args);
	if (prev_sr_log_cb)
		prev_sr_log_cb(prev_sr_log_cb_data, loglevel, format, args2);
	va_end(args2);

	/* Only output messages of at least the selected loglevel(s). */
	if (loglevel > sr_log_loglevel_get())
		return SR_OK;

	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,
	};
	va_list args2;
	int ret;

	/* This specific log callback doesn't need the void pointer data. */
	(void)cb_data;

	/* Call the previously registered log callback (library's default). */
	va_copy(args2, args);
	if (prev_srd_log_cb)
		prev_srd_log_cb(prev_srd_log_cb_data, loglevel, format, args2);
	va_end(args2);

	/* Only output messages of at least the selected loglevel(s). */
	if (loglevel > srd_log_loglevel_get())
		return SRD_OK;

	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_get(&prev_sr_log_cb, &prev_sr_log_cb_data);
	sr_log_callback_set(sr_callback, nullptr);
#ifdef ENABLE_DECODE
	srd_log_callback_get(&prev_srd_log_cb, &prev_srd_log_cb_data);
	srd_log_callback_set(srd_callback, nullptr);
#endif
}

} // namespace pv