From: Jan Kiszka <jan.kiszka@siemens.com>
To: "Maxim Yu. Osipov" <mosipov@ilbers.de>,
isar-users <isar-users@googlegroups.com>
Subject: Re: [PATCH] Import OE-core logger
Date: Tue, 5 Jun 2018 11:33:56 +0200 [thread overview]
Message-ID: <7df8fbe1-4882-83f6-bd73-63481eea1b60@siemens.com> (raw)
In-Reply-To: <c13fbc83-609a-8565-309a-7573075e9458@ilbers.de>
On 2018-06-05 11:24, Maxim Yu. Osipov wrote:
> On 06/04/2018 09:17 AM, Jan Kiszka wrote:
>> From: Jan Kiszka <jan.kiszka@siemens.com>
>>
>> This ensures bash recipe messages go to the logger, not just the recipe
>> log files. It also adds the missing bbplain, bberror and bbdebug
>> functions.
>
> Fixed a couple of trailing whitespaces and applied to next,
>
This was a 1:1 import from OE. Now it's only (hopefully) logically
identical.
Jan
> Thanks,
> Maxim.
>
>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>> meta/classes/base.bbclass | 13 +-----
>> meta/classes/logging.bbclass | 105
>> +++++++++++++++++++++++++++++++++++++++++++
>> 2 files changed, 106 insertions(+), 12 deletions(-)
>> create mode 100644 meta/classes/logging.bbclass
>>
>> diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
>> index d1df8cc3..99730e59 100644
>> --- a/meta/classes/base.bbclass
>> +++ b/meta/classes/base.bbclass
>> @@ -24,18 +24,7 @@ die() {
>> bbfatal "$*"
>> }
>> -bbnote() {
>> - echo "NOTE:" "$*"
>> -}
>> -
>> -bbwarn() {
>> - echo "WARNING:" "$*"
>> -}
>> -
>> -bbfatal() {
>> - echo "FATAL:" "$*"
>> - exit 1
>> -}
>> +inherit logging
>> # Derived from bitbake: bitbake/classes/base.bbclass
>> addtask showdata
>> diff --git a/meta/classes/logging.bbclass b/meta/classes/logging.bbclass
>> new file mode 100644
>> index 00000000..3277aa34
>> --- /dev/null
>> +++ b/meta/classes/logging.bbclass
>> @@ -0,0 +1,105 @@
>> +#
>> +# Imported from OE-core project
>> +#
>> +# SPDX-License-Identifier: MIT
>> +
>> +# The following logging mechanisms are to be used in bash functions
>> of recipes.
>> +# They are intended to map one to one in intention and output format
>> with the
>> +# python recipe logging functions of a similar naming convention:
>> bb.plain(),
>> +# bb.note(), etc.
>> +
>> +LOGFIFO = "${T}/fifo.${@os.getpid()}"
>> +
>> +# Print the output exactly as it is passed in. Typically used for
>> output of
>> +# tasks that should be seen on the console. Use sparingly.
>> +# Output: logs console
>> +bbplain() {
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bbplain $*" > ${LOGFIFO}
>> + else
>> + echo "$*"
>> + fi
>> +}
>> +
>> +# Notify the user of a noteworthy condition.
>> +# Output: logs
>> +bbnote() {
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bbnote $*" > ${LOGFIFO}
>> + else
>> + echo "NOTE: $*"
>> + fi
>> +}
>> +
>> +# Print a warning to the log. Warnings are non-fatal, and do not
>> +# indicate a build failure.
>> +# Output: logs console
>> +bbwarn() {
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bbwarn $*" > ${LOGFIFO}
>> + else
>> + echo "WARNING: $*"
>> + fi
>> +}
>> +
>> +# Print an error to the log. Errors are non-fatal in that the build can
>> +# continue, but they do indicate a build failure.
>> +# Output: logs console
>> +bberror() {
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bberror $*" > ${LOGFIFO}
>> + else
>> + echo "ERROR: $*"
>> + fi
>> +}
>> +
>> +# Print a fatal error to the log. Fatal errors indicate build failure
>> +# and halt the build, exiting with an error code.
>> +# Output: logs console
>> +bbfatal() {
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bbfatal $*" > ${LOGFIFO}
>> + else
>> + echo "ERROR: $*"
>> + fi
>> + exit 1
>> +}
>> +
>> +# Like bbfatal, except prevents the suppression of the error log by
>> +# bitbake's UI.
>> +# Output: logs console
>> +bbfatal_log() {
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bbfatal_log $*" > ${LOGFIFO}
>> + else
>> + echo "ERROR: $*"
>> + fi
>> + exit 1
>> +}
>> +
>> +# Print debug messages. These are appropriate for progress checkpoint
>> +# messages to the logs. Depending on the debug log level, they may also
>> +# go to the console.
>> +# Output: logs console
>> +# Usage: bbdebug 1 "first level debug message"
>> +# bbdebug 2 "second level debug message"
>> +bbdebug() {
>> + USAGE='Usage: bbdebug [123] "message"'
>> + if [ $# -lt 2 ]; then
>> + bbfatal "$USAGE"
>> + fi
>> +
>> + # Strip off the debug level and ensure it is an integer
>> + DBGLVL=$1; shift
>> + NONDIGITS=$(echo "$DBGLVL" | tr -d [:digit:])
>> + if [ "$NONDIGITS" ]; then
>> + bbfatal "$USAGE"
>> + fi
>> +
>> + # All debug output is printed to the logs
>> + if [ -p ${LOGFIFO} ] ; then
>> + printf "%b\0" "bbdebug $DBGLVL $*" > ${LOGFIFO}
>> + else
>> + echo "DEBUG: $*"
>> + fi
>> +}
>>
>
>
--
Siemens AG, Corporate Technology, CT RDA IOT SES-DE
Corporate Competence Center Embedded Linux
prev parent reply other threads:[~2018-06-05 9:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-04 7:17 Jan Kiszka
2018-06-05 9:24 ` Maxim Yu. Osipov
2018-06-05 9:33 ` Jan Kiszka [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7df8fbe1-4882-83f6-bd73-63481eea1b60@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=isar-users@googlegroups.com \
--cc=mosipov@ilbers.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox