|
| 1 | +/** |
| 2 | + * Copyright 2017 MongoDB, Inc. |
| 3 | + * |
| 4 | + * This program is free software: you can redistribute it and/or modify |
| 5 | + * it under the terms of the GNU Affero General Public License, version 3, |
| 6 | + * as published by the Free Software Foundation. |
| 7 | + * |
| 8 | + * This program is distributed in the hope that it will be useful, |
| 9 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | + * GNU Affero General Public License for more details. |
| 12 | + * |
| 13 | + * You should have received a copy of the GNU Affero General Public License |
| 14 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | + * |
| 16 | + * As a special exception, the copyright holders give permission to link the |
| 17 | + * code of portions of this program with the OpenSSL library under certain |
| 18 | + * conditions as described in each individual source file and distribute |
| 19 | + * linked combinations including the program with the OpenSSL library. You |
| 20 | + * must comply with the GNU Affero General Public License in all respects |
| 21 | + * for all of the code used other than as permitted herein. If you modify |
| 22 | + * file(s) with this exception, you may extend this exception to your |
| 23 | + * version of the file(s), but you are not obligated to do so. If you do not |
| 24 | + * wish to do so, delete this exception statement from your version. If you |
| 25 | + * delete this exception statement from all source files in the program, |
| 26 | + * then also delete it in the license file. |
| 27 | + */ |
| 28 | + |
| 29 | +#pragma once |
| 30 | + |
| 31 | +#include <cstdint> |
| 32 | +#include <iosfwd> |
| 33 | +#include <string> |
| 34 | + |
| 35 | +#include "mongo/base/string_data.h" |
| 36 | + |
| 37 | +namespace mongo { |
| 38 | + |
| 39 | +/** |
| 40 | + * This is a generated class containing a table of error codes and their corresponding error |
| 41 | + * strings. The class is derived from the definitions in src/mongo/base/error_codes.err file and the |
| 42 | + * src/mongo/base/error_codes.tpl.h template. |
| 43 | + * |
| 44 | + * Do not update this file directly. Update src/mongo/base/error_codes.err instead. |
| 45 | + */ |
| 46 | +class ErrorCodes { |
| 47 | +public: |
| 48 | + // Explicitly 32-bits wide so that non-symbolic values, |
| 49 | + // like uassert codes, are valid. |
| 50 | + enum Error : std::int32_t { |
| 51 | + //#for $ec in $codes |
| 52 | + $ec.name = $ec.code, |
| 53 | + //#end for |
| 54 | + MaxError |
| 55 | + }; |
| 56 | + |
| 57 | + static std::string errorString(Error err); |
| 58 | + |
| 59 | + /** |
| 60 | + * Parses an Error from its "name". Returns UnknownError if "name" is unrecognized. |
| 61 | + * |
| 62 | + * NOTE: Also returns UnknownError for the string "UnknownError". |
| 63 | + */ |
| 64 | + static Error fromString(StringData name); |
| 65 | + |
| 66 | + /** |
| 67 | + * Casts an integer "code" to an Error. Unrecognized codes are preserved, meaning |
| 68 | + * that the result of a call to fromInt() may not be one of the values in the |
| 69 | + * Error enumeration. |
| 70 | + */ |
| 71 | + static Error fromInt(int code) { |
| 72 | + return static_cast<Error>(code); |
| 73 | + } |
| 74 | + |
| 75 | + //#for $cat in $categories |
| 76 | + static bool is${cat.name}(Error err); |
| 77 | + //#end for |
| 78 | +}; |
| 79 | + |
| 80 | +std::ostream& operator<<(std::ostream& stream, ErrorCodes::Error code); |
| 81 | + |
| 82 | +} // namespace mongo |
0 commit comments