aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Util/FSTAssert.h
blob: 610d306e9f80830497bb716eedea0855b3635a59 (plain)
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
/*
 * Copyright 2017 Google
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

// Fails the current Objective-C method if the given condition is false.
//
// Unlike NSAssert, this macro is never compiled out if assertions are disabled.
#define FSTAssert(condition, format, ...) \
  do {                                    \
    if (!(condition)) {                   \
      FSTFail((format), ##__VA_ARGS__);   \
    }                                     \
  } while (0)

// Fails the current C function if the given condition is false.
//
// Unlike NSCAssert, this macro is never compiled out if assertions are disabled.
#define FSTCAssert(condition, format, ...) \
  do {                                     \
    if (!(condition)) {                    \
      FSTCFail((format), ##__VA_ARGS__);   \
    }                                      \
  } while (0)

// Unconditionally fails the current Objective-C method.
//
// This macro fails by calling [[NSAssertionHandler currentHandler] handleFailureInMethod]. It
// also calls abort(3) in order to make this macro appear to never return, even though the call
// to handleFailureInMethod itself never returns.
#define FSTFail(format, ...)                                                             \
  do {                                                                                   \
    NSString *_file = [NSString stringWithUTF8String:__FILE__];                          \
    NSString *_description = [NSString stringWithFormat:(format), ##__VA_ARGS__];        \
    [[NSAssertionHandler currentHandler]                                                 \
        handleFailureInMethod:_cmd                                                       \
                       object:self                                                       \
                         file:_file                                                      \
                   lineNumber:__LINE__                                                   \
                  description:@"FIRESTORE INTERNAL ASSERTION FAILED: %@", _description]; \
    abort();                                                                             \
  } while (0)

// Unconditionally fails the current C function.
//
// This macro fails by calling [[NSAssertionHandler currentHandler] handleFailureInFunction]. It
// also calls abort(3) in order to make this macro appear to never return, even though the call
// to handleFailureInFunction itself never returns.
#define FSTCFail(format, ...)                                                              \
  do {                                                                                     \
    NSString *_file = [NSString stringWithUTF8String:__FILE__];                            \
    NSString *_function = [NSString stringWithUTF8String:__PRETTY_FUNCTION__];             \
    NSString *_description = [NSString stringWithFormat:(format), ##__VA_ARGS__];          \
    [[NSAssertionHandler currentHandler]                                                   \
        handleFailureInFunction:_function                                                  \
                           file:_file                                                      \
                     lineNumber:__LINE__                                                   \
                    description:@"FIRESTORE INTERNAL ASSERTION FAILED: %@", _description]; \
    abort();                                                                               \
  } while (0)

NS_ASSUME_NONNULL_END