LCOV - code coverage report
Current view: top level - home/runner/zephyrproject/zephyr/drivers/console - posix_arch_console.c (source / functions) Hit Total Coverage
Test: lcov.info Lines: 3 21 14.3 %
Date: 2024-09-16 20:15:30 Functions: 1 3 33.3 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 8 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright (c) 2018 Oticon A/S
       3                 :            :  * Copyright (c) 2023 Nordic Semiconductor ASA
       4                 :            :  *
       5                 :            :  * SPDX-License-Identifier: Apache-2.0
       6                 :            :  */
       7                 :            : 
       8                 :            : #include <zephyr/init.h>
       9                 :            : #include <zephyr/arch/posix/posix_trace.h>
      10                 :            : #include <zephyr/sys/printk-hooks.h>
      11                 :            : #include <zephyr/sys/libc-hooks.h>
      12                 :            : 
      13                 :            : #define _STDOUT_BUF_SIZE 256
      14                 :            : static char stdout_buff[_STDOUT_BUF_SIZE];
      15                 :            : static int n_pend; /* Number of pending characters in buffer */
      16                 :            : 
      17                 :          0 : static int print_char(int c)
      18                 :            : {
      19                 :          0 :         int printnow = 0;
      20                 :            : 
      21         [ #  # ]:          0 :         if ((c != '\n') && (c != '\r')) {
      22                 :          0 :                 stdout_buff[n_pend++] = c;
      23                 :          0 :                 stdout_buff[n_pend] = 0;
      24                 :            :         } else {
      25                 :            :                 printnow = 1;
      26                 :            :         }
      27                 :            : 
      28         [ #  # ]:          0 :         if (n_pend >= _STDOUT_BUF_SIZE - 1) {
      29                 :            :                 printnow = 1;
      30                 :            :         }
      31                 :            : 
      32         [ #  # ]:          0 :         if (printnow) {
      33                 :          0 :                 posix_print_trace("%s\n", stdout_buff);
      34                 :          0 :                 n_pend = 0;
      35                 :          0 :                 stdout_buff[0] = 0;
      36                 :            :         }
      37                 :          0 :         return c;
      38                 :            : }
      39                 :            : 
      40                 :            : /**
      41                 :            :  * Ensure that whatever was written thru printk is displayed now
      42                 :            :  */
      43                 :          0 : void posix_flush_stdout(void)
      44                 :            : {
      45         [ #  # ]:          0 :         if (n_pend) {
      46                 :          0 :                 stdout_buff[n_pend] = 0;
      47                 :          0 :                 posix_print_trace("%s", stdout_buff);
      48                 :          0 :                 n_pend = 0;
      49                 :          0 :                 stdout_buff[0] = 0;
      50                 :            :         }
      51                 :          0 : }
      52                 :            : 
      53                 :          1 : static int posix_arch_console_init(void)
      54                 :            : {
      55                 :            : #ifdef CONFIG_PRINTK
      56                 :          1 :         __printk_hook_install(print_char);
      57                 :            : #endif
      58                 :            : #ifdef CONFIG_STDOUT_CONSOLE
      59                 :            :         __stdout_hook_install(print_char);
      60                 :            : #endif
      61                 :          1 :         return 0;
      62                 :            : }
      63                 :            : 
      64                 :            : SYS_INIT(posix_arch_console_init, PRE_KERNEL_1,
      65                 :            :         CONFIG_POSIX_ARCH_CONSOLE_INIT_PRIORITY);

Generated by: LCOV version 1.14