Compare commits

...

4 Commits

Author SHA1 Message Date
Slava Monich
e406162be2 Version 1.0.38 2020-04-02 00:13:53 +03:00
Slava Monich
2de4120f25 Merge pull request #42 from monich/default_log
Allow to configure log level via environment
2020-04-02 00:10:19 +03:00
Slava Monich
d8dc58a133 [unit] Added gbinder_log test. JB#42956 2020-04-01 21:00:51 +03:00
Slava Monich
8684bffe97 [gbinder] Allow to configure log level via environment. JB#42956
GBINDER_DEFAULT_LOG_LEVEL environment variable configures default
libgbinder log level. Valid (inclusive) range is from -1 (inherit
libglibutil defaults) to 5 (verbose).
2020-04-01 17:35:44 +03:00
10 changed files with 235 additions and 9 deletions

View File

@@ -16,7 +16,7 @@
VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_RELEASE = 37
VERSION_RELEASE = 38
# Version for pkg-config
PCVERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
@@ -85,6 +85,7 @@ SRC = \
gbinder_local_object.c \
gbinder_local_reply.c \
gbinder_local_request.c \
gbinder_log.c \
gbinder_reader.c \
gbinder_remote_object.c \
gbinder_remote_reply.c \

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
libgbinder (1.0.38) unstable; urgency=low
* Allow to configure log level via environment
-- Slava Monich <slava.monich@jolla.com> Thu, 02 Apr 2020 00:12:01 +0300
libgbinder (1.0.37) unstable; urgency=low
* Allow side-by-side linking with libglibutil

View File

@@ -1,5 +1,5 @@
Name: libgbinder
Version: 1.0.37
Version: 1.0.38
Release: 0
Summary: Binder client library
Group: Development/Libraries

View File

@@ -1,6 +1,6 @@
/*
* Copyright (C) 2018-2019 Jolla Ltd.
* Copyright (C) 2018-2019 Slava Monich <slava.monich@jolla.com>
* Copyright (C) 2018-2020 Jolla Ltd.
* Copyright (C) 2018-2020 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
@@ -14,8 +14,8 @@
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the names of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
@@ -61,9 +61,6 @@
#include <sys/stat.h>
#include <sys/mman.h>
/* Log module */
GLOG_MODULE_DEFINE("gbinder");
/* BINDER_VM_SIZE copied from native/libs/binder/ProcessState.cpp */
#define BINDER_VM_SIZE ((1024*1024) - sysconf(_SC_PAGE_SIZE)*2)

62
src/gbinder_log.c Normal file
View File

@@ -0,0 +1,62 @@
/*
* Copyright (C) 2020 Jolla Ltd.
* Copyright (C) 2020 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the names of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "gbinder_log.h"
#include <gutil_misc.h>
#include <stdlib.h>
/* Log module */
GLOG_MODULE_DEFINE("gbinder");
/* Initializes the default log level at startup */
void
gbinder_log_init(
void)
{
int level = GLOG_MODULE_NAME.level;
if (gutil_parse_int(getenv("GBINDER_DEFAULT_LOG_LEVEL"), 0, &level) &&
level >= GLOG_LEVEL_INHERIT && level <= GLOG_LEVEL_VERBOSE) {
GINFO("Log level %d", level);
GLOG_MODULE_NAME.level = level;
}
}
/*
* Local Variables:
* mode: C
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/

View File

@@ -38,6 +38,13 @@
#define GLOG_MODULE_NAME GBINDER_LOG_MODULE
#include <gutil_log.h>
/* Declared for unit tests */
G_GNUC_INTERNAL
__attribute__((constructor))
void
gbinder_log_init(
void);
#endif /* GBINDER_LOG_H */
/*

View File

@@ -10,6 +10,7 @@ all:
@$(MAKE) -C unit_local_object $*
@$(MAKE) -C unit_local_reply $*
@$(MAKE) -C unit_local_request $*
@$(MAKE) -C unit_log $*
@$(MAKE) -C unit_protocol $*
@$(MAKE) -C unit_reader $*
@$(MAKE) -C unit_remote_object $*

View File

@@ -12,6 +12,7 @@ unit_ipc \
unit_local_object \
unit_local_reply \
unit_local_request \
unit_log \
unit_protocol \
unit_reader \
unit_remote_object \

5
unit/unit_log/Makefile Normal file
View File

@@ -0,0 +1,5 @@
# -*- Mode: makefile-gmake -*-
EXE = unit_log
include ../common/Makefile

146
unit/unit_log/unit_log.c Normal file
View File

@@ -0,0 +1,146 @@
/*
* Copyright (C) 2020 Jolla Ltd.
* Copyright (C) 2020 Slava Monich <slava.monich@jolla.com>
*
* You may use this file under the terms of BSD license as follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the names of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test_binder.h"
#include "gbinder_log.h"
#include <stdlib.h>
static TestOpt test_opt;
static const char env[] = "GBINDER_DEFAULT_LOG_LEVEL";
/*==========================================================================*
* empty
*==========================================================================*/
static
void
test_empty(
void)
{
const int level = GLOG_MODULE_NAME.level;
unsetenv(env);
gbinder_log_init();
g_assert_cmpint(level, == ,GLOG_MODULE_NAME.level);
}
/*==========================================================================*
* invalid
*==========================================================================*/
static
void
test_invalid(
void)
{
const int level = GLOG_MODULE_NAME.level;
setenv(env, "-2" /* GLOG_LEVEL_ALWAYS */, TRUE);
gbinder_log_init();
g_assert_cmpint(level, == ,GLOG_MODULE_NAME.level);
setenv(env, "6" /* GLOG_LEVEL_VERBOSE + 1 */, TRUE);
gbinder_log_init();
g_assert_cmpint(level, == ,GLOG_MODULE_NAME.level);
setenv(env, "foo", TRUE);
gbinder_log_init();
g_assert_cmpint(level, == ,GLOG_MODULE_NAME.level);
}
/*==========================================================================*
* level
*==========================================================================*/
typedef struct test_level_data {
const char* test_name;
const char* env_value;
int level;
} TestLevelData;
static
void
test_level(
gconstpointer data)
{
const TestLevelData* test = data;
GLOG_MODULE_NAME.level = GLOG_LEVEL_ALWAYS;
g_assert_cmpint(GLOG_MODULE_NAME.level, != ,test->level);
setenv(env, test->env_value, TRUE);
gbinder_log_init();
g_assert_cmpint(GLOG_MODULE_NAME.level, == ,test->level);
}
/*==========================================================================*
* Common
*==========================================================================*/
#define TEST_PREFIX "/log/"
#define TEST_(t) TEST_PREFIX t
int main(int argc, char* argv[])
{
#define TEST_LEVEL_INIT(X,x) \
{ TEST_(#x), #x, x }
static const TestLevelData level_tests[] = {
{ TEST_("inherit"), "-1", GLOG_LEVEL_INHERIT },
{ TEST_("none"), "0", GLOG_LEVEL_NONE },
{ TEST_("err"), "1", GLOG_LEVEL_ERR },
{ TEST_("warn"), "2", GLOG_LEVEL_WARN },
{ TEST_("info"), "3", GLOG_LEVEL_INFO },
{ TEST_("debug"), "4", GLOG_LEVEL_DEBUG },
{ TEST_("verbose"), "5", GLOG_LEVEL_VERBOSE }
};
guint i;
g_test_init(&argc, &argv, NULL);
g_test_add_func(TEST_("empty"), test_empty);
g_test_add_func(TEST_("invalid"), test_invalid);
for (i = 0; i < G_N_ELEMENTS(level_tests); i++) {
g_test_add_data_func(level_tests[i].test_name, level_tests + i,
test_level);
}
test_init(&test_opt, argc, argv);
return g_test_run();
}
/*
* Local Variables:
* mode: C
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/