Move folly::symbolizer::systemError() into Exception.h
[folly.git] / folly / Exception.h
1 /*
2  * Copyright 2013 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef FOLLY_EXCEPTION_H_
18 #define FOLLY_EXCEPTION_H_
19
20 #include <errno.h>
21
22 #include <stdexcept>
23 #include <system_error>
24
25 #include "folly/Conv.h"
26 #include "folly/Likely.h"
27
28 namespace folly {
29
30 // Helper to throw std::system_error
31 void throwSystemError(int err, const char* msg) __attribute__((noreturn));
32 inline void throwSystemError(int err, const char* msg) {
33   throw std::system_error(err, std::system_category(), msg);
34 }
35
36 // Helper to throw std::system_error from errno
37 void throwSystemError(const char* msg) __attribute__((noreturn));
38 inline void throwSystemError(const char* msg) {
39   throwSystemError(errno, msg);
40 }
41
42 // Helper to throw std::system_error from errno and components of a string
43 template <class... Args>
44 void throwSystemError(Args... args) __attribute__((noreturn));
45 template <class... Args>
46 inline void throwSystemError(Args... args) {
47   throwSystemError(errno, folly::to<std::string>(args...));
48 }
49
50 // Check a Posix return code (0 on success, error number on error), throw
51 // on error.
52 inline void checkPosixError(int err, const char* msg) {
53   if (UNLIKELY(err != 0)) {
54     throwSystemError(err, msg);
55   }
56 }
57
58 // Check a Linux kernel-style return code (>= 0 on success, negative error
59 // number on error), throw on error.
60 inline void checkKernelError(ssize_t ret, const char* msg) {
61   if (UNLIKELY(ret < 0)) {
62     throwSystemError(-ret, msg);
63   }
64 }
65
66 // Check a traditional Unix return code (-1 and sets errno on error), throw
67 // on error.
68 inline void checkUnixError(ssize_t ret, const char* msg) {
69   if (UNLIKELY(ret == -1)) {
70     throwSystemError(msg);
71   }
72 }
73 inline void checkUnixError(ssize_t ret, int savedErrno, const char* msg) {
74   if (UNLIKELY(ret == -1)) {
75     throwSystemError(savedErrno, msg);
76   }
77 }
78
79 }  // namespace folly
80
81 #endif /* FOLLY_EXCEPTION_H_ */
82