forked from facebook/wdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ErrorCodes.h
115 lines (104 loc) · 4.98 KB
/
ErrorCodes.h
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#pragma once
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <wdt/WdtConfig.h>
#include <iomanip>
#include <string>
#define WDT_DOUBLE_FORMATTING \
std::fixed << std::setprecision(FLAGS_wdt_double_precision)
DECLARE_int32(wdt_double_precision);
namespace facebook {
namespace wdt {
// Call regular google log but prefix with wdt for easier extraction later
#define WDT_LOG_PREFIX "wdt>\t"
#define WLOG(X) LOG(X) << WDT_LOG_PREFIX << WDT_DOUBLE_FORMATTING
#define WVLOG(X) VLOG(X) << WDT_LOG_PREFIX << WDT_DOUBLE_FORMATTING
#define WPLOG(X) PLOG(X) << WDT_LOG_PREFIX << WDT_DOUBLE_FORMATTING
#define WLOG_IF(X, Y) LOG_IF(X, Y) << WDT_LOG_PREFIX << WDT_DOUBLE_FORMATTING
#define WVLOG_IF(X, Y) VLOG_IF(X, Y) << WDT_LOG_PREFIX << WDT_DOUBLE_FORMATTING
#define WTLOG(X) WLOG(X) << *this << " "
#define WTVLOG(X) WVLOG(X) << *this << " "
#define WTPLOG(X) WPLOG(X) << *this << " "
// For now just does regular check, for some library embedding may consider
// skipping or being DCHECK
#define WDT_CHECK CHECK
#define WDT_CHECK_EQ CHECK_EQ
#define WDT_CHECK_NE CHECK_NE
#define WDT_CHECK_LE CHECK_LE
#define WDT_CHECK_LT CHECK_LT
#define WDT_CHECK_GE CHECK_GE
#define WDT_CHECK_GT CHECK_GT
// Note : All the new errors should be defined at the end - but see also
// getMoreInterestingError implementation for error priorities for reporting
#define ERRORS \
X(OK) /** No error */ \
X(ERROR) /** Generic error */ \
X(ABORT) /** Abort */ \
X(CONN_ERROR) /** Connection Error */ \
X(CONN_ERROR_RETRYABLE) /** Retryable connection error */ \
X(SOCKET_READ_ERROR) /** Socket read error */ \
X(SOCKET_WRITE_ERROR) /** Socket write error */ \
X(BYTE_SOURCE_READ_ERROR) /** Byte source(file) read error */ \
X(FILE_WRITE_ERROR) /** file write error */ \
X(MEMORY_ALLOCATION_ERROR) /** Memory allocation failure */ \
X(PROTOCOL_ERROR) /** WDT protocol error */ \
X(VERSION_MISMATCH) /** Sender and Receiver version mismatch */ \
X(ID_MISMATCH) /** Sender and Receiver id mismatch*/ \
X(CHECKSUM_MISMATCH) /** Checksums do not match */ \
X(RESOURCE_NOT_FOUND) /** Not found in the resource controller */ \
X(ABORTED_BY_APPLICATION) /** Transfer was aborted by application */ \
X(VERSION_INCOMPATIBLE) /** Sender/receiver version incompatible */ \
X(NOT_FOUND) /** Not found in the resource controller */ \
X(QUOTA_EXCEEDED) /** Quota exceeded in resource controller */ \
X(FEWER_PORTS) /** Couldn't listen on all the ports */ \
X(URI_PARSE_ERROR) /** Wdt uri passed couldn't be parsed */ \
X(INCONSISTENT_DIRECTORY) /** Destination directory is not consistent with \
transfer log */ \
X(INVALID_LOG) /** Transfer log invalid */ \
X(INVALID_CHECKPOINT) /** Received checkpoint is invalid */ \
X(NO_PROGRESS) /** Transfer has not progressed */ \
X(TRANSFER_LOG_ACQUIRE_ERROR) /** Failed to acquire lock for transfer log */ \
X(WDT_TIMEOUT) /** Socket operation timed out */ \
X(UNEXPECTED_CMD_ERROR) /** Unexpected cmd received */ \
X(ENCRYPTION_ERROR) /** Error related to encryption */ \
X(ALREADY_EXISTS) /** Create attempt for existing id */ \
X(GLOBAL_CHECKPOINT_ABORT) /** Abort due to global checkpoint */ \
X(INVALID_REQUEST) /** Request for creation of wdt object invalid */ \
X(SENDER_START_TIMED_OUT) /** Sender start timed out */
enum ErrorCode {
#define X(A) A,
ERRORS
#undef X
};
std::string const kErrorToStr[] = {
#define X(A) #A,
ERRORS
#undef X
};
/**
* returns string description of an error code
*
* @param code error-code
* @return string representation
*/
std::string errorCodeToStr(ErrorCode code);
/**
* returns more interesting of two errors
*/
ErrorCode getMoreInterestingError(ErrorCode err1, ErrorCode err2);
/**
* Thread safe version of strerror(), easier than strerror_r
* (similar to folly::errnoStr() but without pulling in all the dependencies)
*/
std::string strerrorStr(int errnum);
}
}
#undef ERRORS