File: verbose.c

package info (click to toggle)
shhmsg 1.4.1-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 200 kB
  • ctags: 108
  • sloc: ansic: 367; makefile: 218; sh: 20
file content (132 lines) | stat: -rw-r--r-- 4,416 bytes parent folder | download | duplicates (5)
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
128
129
130
131
132
/* $Id: verbose.c,v 1.7 2002/03/02 19:37:36 sverrehu Exp $ */
/*------------------------------------------------------------------------
 |  FILE            verbose.c
 |  MODULE OF       shhmsg - library for displaying messages.
 |
 |  DESCRIPTION     Routines for displaying text according to a verbosity
 |                  level. All messages with a level less than or equal
 |                  to the current level are displayed.
 |
 |  WRITTEN BY      Sverre H. Huseby <shh@thathost.com>
 +----------------------------------------------------------------------*/

#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>

#include "internal.h"
#include "shhmsg.h"

/*-----------------------------------------------------------------------+
|  PUBLIC DATA                                                           |
+-----------------------------------------------------------------------*/

int msgVerboseLevel = 0;  /* current verbosity level */

/*-----------------------------------------------------------------------+
|  PRIVATE FUNCTIONS                                                     |
+-----------------------------------------------------------------------*/

/*------------------------------------------------------------------------
 |
 |  NAME          msgLookupVerboseLevel
 |
 |  FUNCTION      Get a default verbose level from the environment.
 |
 |  RETURNS       Default verbosity level.
 |
 |  DESCRIPTION   The environment variable "APPNAME_LEVEL" is checked
 |		  for a numeric value, and that becomes the verbosity
 |		  level, if none has been set in code, or the code
 |		  has not set "default".  The APPNAME is truncated to
 |		  10 bytes, and converted to all upper case.
 */
static int
msgLookupVerboseLevel(void)
{
    char envName[20];
    char *envVal;

    strncpy(envName, msgGetName(), 10);
    envName[10] = '\0';
    
    /* force the string to upper case */
    for (envVal = envName; *envVal; envVal++)
	if (islower(*envVal))
	    *envVal = toupper(*envVal);

    strcat(envName, "_LEVEL");
    envVal = getenv(envName);
    if (envVal == NULL || *envVal == '\0')
	return MSG_VERBOSE_DEFAULT;
    return atoi(envVal);
}

/*-----------------------------------------------------------------------+
|  PUBLIC FUNCTIONS                                                      |
+-----------------------------------------------------------------------*/

/*------------------------------------------------------------------------
 |
 |  NAME          msgSetVerbose
 |
 |  FUNCTION      Set verbosity level.
 |
 |  SYNOPSIS      #include "shhmsg.h"
 |                void msgSetVerbose(int level);
 |
 |  INPUT         level   The new verbosity level. Note that a negative
 |		          value will make the system print nothing, assuming
 |		          all comparisons passed in by the caller to
 |			  msgVerbose are positive. A negative number will
 |			  revert the code to the "Default" state of checking
 |			  the environmental variable for it's verbosity level,
 |			  allowing changes at run time, instead of compile
 |			  time.
 |
 |  DESCRIPTION   Used in conjunction with the msgVerbose() function.
 |                Note that changing the msgVerboseLevel-variable directly
 |                is fully legal.
 */
void
msgSetVerbose(int level)
{
    msgVerboseLevel = level;
}

/*------------------------------------------------------------------------
 |
 |  NAME          msgVerbose
 |
 |  FUNCTION      Show given message if allowed by the current verb. level.
 |
 |  SYNOPSIS      #include "shhmsg.h"
 |                void msgVerbose(int level, const char *format, ...);
 |
 |  INPUT         level   The verbosity level of the message to display.
 |                format, ...
 |                        Arguments used as with printf().
 |
 |  DESCRIPTION   The given message is displayed on the _msgVerboseStream if
 |                it's level is less than or equal to the current verbosity
 |                level.
 */
void
msgVerbose(int level, const char *format, ...)
{
    int     lev;
    va_list ap;

    if ((lev = msgVerboseLevel) == MSG_VERBOSE_DEFAULT)
	lev = msgLookupVerboseLevel();
    if (level > lev)
        return;
    fflush(stdout);
    if (_msgShowNameAlways)
	fprintf(GET_VERBOSE_STREAM, "%s: ", msgGetName());
    va_start(ap, format);
    vfprintf(GET_VERBOSE_STREAM, format, ap);
    va_end(ap);
}