File: nc_logging.h

package info (click to toggle)
paraview 4.0.1-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 526,572 kB
  • sloc: cpp: 2,284,430; ansic: 816,374; python: 239,936; xml: 70,162; tcl: 48,295; fortran: 39,116; yacc: 5,466; java: 3,518; perl: 3,107; lex: 1,620; sh: 1,555; makefile: 932; asm: 471; pascal: 228
file content (62 lines) | stat: -rw-r--r-- 1,355 bytes parent folder | download | duplicates (6)
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
/* Copyright 2010, University Corporation for Atmospheric Research. See
   COPYRIGHT file for copying and redistribution conditions.

   This file is part of netcdf-4, a netCDF-like interface for HDF5, or
   a HDF5 backend for netCDF, depending on your point of view.

   This file contains macros and prototyes relating to logging.

   $Id: nc_logging.h,v 1.1 2010/06/01 15:34:49 ed Exp $
*/

#ifndef _NCLOGGING_
#define _NCLOGGING_

#include <stdlib.h>
#include <assert.h>

#ifdef LOGGING

/* To log something... */
void nc_log(int severity, const char *fmt, ...);
void nc_log_hdf5(void);

#define LOG(e) nc_log e

/* To log based on error code, and set retval. */
#define BAIL2(e) do { \
retval = e; \
LOG((0, "file %s, line %d.\n%s", __FILE__, __LINE__, nc_strerror(e))); \
nc_log_hdf5(); \
} while (0) 

/* To log an error message, set retval, and jump to exit. */
#define BAIL(e) do { \
BAIL2(e); \
goto exit; \
} while (0) 

/* To set retval and jump to exit, without logging error message. */
#define BAIL_QUIET(e) do { \
retval = e; \
goto exit; \
} while (0) 

#else

/* These definitions will be used unless LOGGING is defined. */
#define LOG(e)
#define BAIL(e) do { \
retval = e; \
goto exit; \
} while (0)
#define BAIL_QUIET BAIL
#define BAIL2(e) do { \
goto exit; \
} while (0)
#define nc_set_log_level(e)
#endif

#endif /* _NCLOGGING_ */