Index of Functions: A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X 
Index Page
errdev_c

Table of contents
Procedure
Abstract
Required_Reading
Keywords
Brief_I/O
Detailed_Input
Detailed_Output
Parameters
Exceptions
Files
Particulars
Examples
Restrictions
Literature_References
Author_and_Institution
Version
Index_Entries

Procedure

   errdev_c ( Get/Set Error Output Device Name ) 

   void errdev_c ( ConstSpiceChar * op,
                   SpiceInt         devlen,
                   SpiceChar      * device )

Abstract

   Retrieve or set the name of the current output
   device for error messages.

Required_Reading

   ERROR

Keywords

   ERROR


Brief_I/O

   VARIABLE  I/O  DESCRIPTION
   --------  ---  --------------------------------------------------
   op         I   The operation:  "GET" or "SET".
   devlen     I   Length of device for output.
   device    I-O  The device name.

Detailed_Input

   op          indicates the operation to be performed. Possible
               values are "GET" and "SET".  "GET" means, "set
               device equal to the name of the current error
               output device"  "SET" means, "set the name of the
               current error output device equal to the value of
               device."

   devlen      the string size of output `device' when op equals "GET".
               The size described by devlen should be large enough to
               hold all characters of any possible output string
               plus 1 (to accommodate the C null terminator).

   device      is an input when `op' has the value, "SET".  It
               indicates an output device to which error messages
               are to be sent. Possible values for device are:

                1. A file name. Note that the name must not
                      use one of the reserved strings below.

                2.    "SCREEN"    The output will go to the
                       screen. This is the default device.

                3.    "NULL"      The data will not be output.

                "SCREEN" and "NULL" can be written in mixed
                case. For example, the following call will work:

                errdev_c ( "SET", devlen, "screEn" );

Detailed_Output

   device      is an output returning the current error output device
               when `op' equals "GET." See "Detailed Input"
               descriptions of these values.

Parameters

   FILEN       The maximum length of a file name that can be processed
               by this routine. FILEN is currently set to 255
               characters.

Exceptions

   1)  If an invalid value of the argument `op' is supplied, the error
       SPICE(INVALIDOPERATION) is signaled.

   2)  If `op' is "SET" and the device name `device' exceeds the maximum
       length FILEN, the error SPICE(DEVICENAMETOOLONG) is signaled by a
       routine in the call tree of this routine.

   3)  If the `op' input string pointer is null, the error
       SPICE(NULLPOINTER) is signaled.

   4)  If the `op' input string has zero length, the error
       SPICE(EMPTYSTRING) is signaled, since the input string cannot
       be converted to a Fortran-style string in this case.

   5)  If the `device' string pointer is null, the error
       SPICE(NULLPOINTER) is signaled.

   6)  If `op' is "SET" and the `device' string has zero length, the error
       SPICE(EMPTYSTRING) is signaled, since the input string cannot
       be converted to a Fortran-style string in this case.

   7)  If `op' is "GET" and the `device' string has length less than two
       characters, the error SPICE(STRINGTOOSHORT) is signaled, since the
       output string is too short to contain one character of output data plus
       a null terminator, and therefore it cannot be passed to the underlying
       Fortran routine.

Files

   None.

Particulars

   This routine supports spooling of error messages to log files.

Examples

   1. In this example, we select as the output device
       the file, SPUD.DAT.

          /.
          Set the error output device to the file SPUD.DAT:
          ./
          errdev_c ( "SET", devlen, "SPUD.DAT" );

Restrictions

   1)  This routine has no capability of determining the validity of
       the name of an output device. Care must be taken to ensure
       that the file named is the correct one.

       The device name is assumed to be no longer than FILEN
       characters.

Literature_References

   None.

Author_and_Institution

   N.J. Bachman        (JPL)
   J. Diaz del Rio     (ODC Space)
   E.D. Wright         (JPL)

Version

   -CSPICE Version 1.4.0, 10-AUG-2021 (JDR)

       Changed the input argument name "lenout" to "devlen" for consistency
       with other routines.

       Edited the header to comply with NAIF standard.

   -CSPICE Version 1.3.1, 25-SEP-2003 (EDW)

       Corrected confusing description of 'devlen' argument.

   -CSPICE Version 1.3.0, 24-JUN-2003 (NJB)

       Bug fix: case of invalid operation keyword is now
       diagnosed, as per the -Exceptions section of the header.

   -CSPICE Version 1.2.0, 28-AUG-1999 (NJB)

       Bug fix: changed errprt_ call to call to errdev_.

   -CSPICE Version 1.2.0, 09-FEB-1998 (NJB)

       Re-implemented routine without dynamically allocated, temporary
       strings. Made various header fixes.

   -CSPICE Version 1.0.1, 30-OCT-1997 (EDW)

       Corrected errors in examples in which the call sequence
       was incorrect.

   -CSPICE Version 1.0.0, 25-OCT-1997 (EDW)

Index_Entries

   get/set error output device name
Fri Dec 31 18:41:06 2021