DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

fmtmsg(S-osr5)


fmtmsg -- display a message on stderr or system console

Syntax

cc ...-lc

#include <fmtmsg.h>

int fmtmsg(long classification, const char *label, int severity, const char *text, const char *action, const char *tag);

Description

fmtmsg(S-osr5) writes a formatted message to stderr, to the console, or both, depending on the message's classification component.

You can use fmtmsg( ) instead of the traditional printf(S-osr5) interface to display messages.

A formatted message has up to five standard components as defined below. The component classification is not part of the standard message displayed to the user. Instead, it defines the source of the message and directs the display of the formatted message.


classification
Contains identifiers from the following groups of major classifications and subclassifications. You can use any one identifier from a subclass with a single identifier from a different subclass by ORing their values together. Do not use two or more identifiers from the same subclass together, unless they are from the display subclass. (You can use both display subclass identifiers to display messages to both stderr and the system console).

Major classifications
identify the source of the condition.

Identifiers are:


MM_HARD
hardware

MM_SOFT
software

MM_FIRM
firmware

Message source subclassifications
identify the type of software in which the problem is spotted.

Identifiers are:


MM_APPL
application

MM_UTIL
utility

MM_OPSYS
operating system

Display subclassifications
indicate where to display the message.

Identifiers are:


MM_PRINT
to display the message on the standard error stream

MM_CONSOLE
to display the message on the system console
You can use one, both, or neither.

Status subclassifications
indicate whether the application will recover from the condition.

Identifiers are:


MM_RECOVER
recoverable

MM_NRECOV
non-recoverable

An additional identifier, MM_NULLMC, indicates that the message has no classification component.


label
Identifies the source of the message. The format of this component is two fields separated by a colon. The first field is up to 10 characters long; the second is up to 14 characters. label should identify the package in which the application resides as well as the program or application name. For example, SCO:program2 could indicate SCO Open Systems Software and application program2.

severity
Indicates the seriousness of the condition. Identifiers for the standard levels of severity are:

MM_HALT
indicates that the application has encountered a severe fault and is halting. Produces the print string HALT.

MM_ERROR
indicates that the application has detected a fault. Produces the print string ERROR.

MM_WARNING
indicates a condition out of the ordinary that might be a problem and should be watched. Produces the print string WARNING.

MM_INFO
provides information about a condition that is not in error. Produces the print string INFO.

MM_NOSEV
indicates that no severity level is supplied for the message.

You can add other severity levels by using the addseverity(S-osr5) routine.


text
Describes the condition that produced the message. If the text string is null, the function issues a message stating that no text has been provided.

action
Describes the first step to be taken in the error recovery process. fmtmsg( ) precedes each action string with the prefix TO FIX:. The action string is not limited to a specific size.

tag
An identifier which references on-line documentation for the message. tag should include the label and a unique identifying number. A sample tag is SCO:program2:173.

Environment variables

There are two environment variables that control the behavior of fmtmsg( ): MSGVERB and SEV_LEVEL.

MSGVERB tells fmtmsg( ) which message components to select when writing messages to stderr. The value of MSGVERB is a colon-separated list of optional keywords. MSGVERB can be set as follows:

MSGVERB=[keyword[:keyword[:. . .]]]
export MSGVERB

The valid keywords are: label, severity, text, action, and tag.

If MSGVERB contains a keyword for a component and the component's value is not the component's null value, fmtmsg( ) includes that component in the message when writing the message to stderr.

If MSGVERB does not include a keyword for a message component, that component is not included in the display of the message. The keywords can appear in any order.

fmtmsg( ) selects all components if MSGVERB is not defined, if its value is the null string, if its value is not of the correct format, or if it contains keywords other than the valid ones listed above.

The first time fmtmsg( ) is called, it examines the MSGVERB environment variable to see which message components to select when generating a message to write to the standard error stream, stderr. The values accepted on the initial call are saved for future calls.

MSGVERB affects only which components are selected for display to the standard error stream. All message components are included in console messages.

SEV_LEVEL defines severity levels and associates print strings with them for use by fmtmsg( ). The standard severity levels shown below cannot be modified. Additional severity levels can also be defined, redefined, and removed using addseverity( ). If both SEV_LEVEL and addseverity( ) define the same severity level, addseverity( ) rules. The levels are:


0
No severity is used.

1
HALT

2
ERROR

3
WARNING

4
INFO
You can set SEV_LEVEL:

SEV_LEVEL=[description[:description[:...]]]
export SEV_LEVEL

description is a comma-separated list containing three fields:

description=severity_keyword,level,printstring

severity_keyword is a character string that is used as the keyword on the -s severity option to fmtmsg( ). (This field is not used by fmtmsg( ).)

level is a character string that evaluates to a positive integer (other than 0, 1, 2, 3, or 4, which are reserved for the standard severity levels). If the keyword severity_keyword is used, level is the severity value passed on to fmtmsg( ).

printstring is the character string used by fmtmsg( ) in the standard message format whenever the severity value level is used.

If a description in the colon list is not a three-field comma list, or, if the second field of a comma list does not evaluate to a positive integer, that description in the colon list is ignored.

The first time fmtmsg( ) is called, it looks for the SEV_LEVEL environment variable. If SEV_LEVEL is defined, fmtmsg( ) examines it to see whether the environment expands the levels of severity beyond the five standard levels and those defined using addseverity( ). The values accepted on the initial call are saved for future calls.

Return values

The return values for fmtmsg( ) are the following:

MM_OK
The function succeeded.

MM_NOTOK
The function failed completely.

MM_NOMSG
The function was unable to generate a message on the standard error stream, but otherwise succeeded.

MM_NOCON
The function was unable to generate a console message, but otherwise succeeded.

Examples

Use in applications

You can systematically omit one or more message components from messages generated by an application, by using the null value of the argument for that component.

The table below indicates the null values and identifiers for fmtmsg( ) arguments.

Argument Type Null-Value Identifier
label char* (char*) NULL MM_NULLLBL
severity int 0 MM_NULLSEV
class long 0L MM_NULLMC
text char* (char*) NULL MM_NULLTXT
action char* (char*) NULL MM_NULLACT
tag char* (char*) NULL MM_NULLTAG

 +---------+-------+--------------+------------+
 |Argument | Type  | Null-Value   | Identifier |
 +---------+-------+--------------+------------+
 |label    | char* | (char*) NULL | MM_NULLLBL |
 +---------+-------+--------------+------------+
 |severity | int   | 0            | MM_NULLSEV |
 +---------+-------+--------------+------------+
 |class    | long  | 0L           | MM_NULLMC  |
 +---------+-------+--------------+------------+
 |text     | char* | (char*) NULL | MM_NULLTXT |
 +---------+-------+--------------+------------+
 |action   | char* | (char*) NULL | MM_NULLACT |
 +---------+-------+--------------+------------+
 |tag      | char* | (char*) NULL | MM_NULLTAG |
 +---------+-------+--------------+------------+
Another way to systematically omit a component is by omitting the component keyword(s) when you define the MSGVERB environment variable (see the ``Environment variables'' section).

Example 1

The following example of fmtmsg( ):
   fmtmsg(MM_PRINT, "SCO:program2", MM_ERROR, "invalid syntax",
          "refer to manual", "SCO:program2:001")
produces a complete message in the standard message format:
   SCO:program2: ERROR: invalid syntax
           TO FIX: refer to manual   SCO:program2:001

Example 2

When the environment variable MSGVERB is set as follows:
   MSGVERB=severity:text:action
and the Example 1 is used, fmtmsg( ) produces:
   ERROR: invalid syntax
   TO FIX: refer to manual

Example 3

When the environment variable SEV_LEVEL is set as follows:
   SEV_LEVEL=note,5,NOTE
the following call to fmtmsg( ):
   fmtmsg(MM_UTIL|MM_PRINT, "SCO:program2", 5, "invalid syntax",
         "refer to manual", "SCO:program2:001")
produces:
   SCO:program2: NOTE: invalid syntax
           TO FIX: refer to manual   SCO:program2:001

See also

addseverity(S-osr5), fmtmsg(S-osr5), gettxt(S-osr5), printf(S-osr5)

Standards conformance

fmtmsg(S-osr5) is conformant with:

X/Open CAE Specification, System Interfaces and Headers, Issue 4, Version 2.


© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005