forked from zbackup/zbackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck.hh
38 lines (28 loc) · 990 Bytes
/
check.hh
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
// Copyright (c) 2012-2014 Konstantin Isakov <[email protected]> and ZBackup contributors, see CONTRIBUTORS
// Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE
#ifndef CHECK_HH_INCLUDED
#define CHECK_HH_INCLUDED
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
// Run-time assertion macro
// Usage: CHECK( value == 16, "Value is not 16: %d", value );
// This will abort() if the value is not 16 with the message stating so.
// TODO: show the backtrace here, without using __FILE__ __LINE__
#define CHECK( condition, message, ... ) ({if (!(condition)) \
{ \
fprintf( stderr, "Check failed: " ); \
fprintf( stderr, message, ##__VA_ARGS__ ); \
fprintf( stderr, "\nAt %s:%d\n", __FILE__, __LINE__ ); \
abort(); \
}})
#define FAIL( ... ) CHECK( false, __VA_ARGS__ )
// Debug-only versions. Only instantiated in debug builds
#ifndef NDEBUG
#define DCHECK CHECK
#define DFAIL FAIL
#else
#define DCHECK( ... )
#define DFAIL( ... )
#endif
#endif