| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you 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. |
| |
| #pragma once |
| |
| #include <string> |
| |
| namespace doris { |
| |
| enum HttpStatus { |
| CONTINUE = 100, |
| SWITCHING_PROTOCOLS = 101, |
| OK = 200, |
| CREATED = 201, |
| ACCEPTED = 202, |
| NON_AUTHORITATIVE_INFORMATION = 203, |
| NO_CONTENT = 204, |
| RESET_CONTENT = 205, |
| PARTIAL_CONTENT = 206, |
| MULTIPLE_CHOICES = 300, |
| MOVED_PERMANENTLY = 301, |
| FOUND = 302, |
| SEE_OTHER = 303, |
| NOT_MODIFIED = 304, |
| USE_PROXY = 305, |
| TEMPORARY_REDIRECT = 307, |
| BAD_REQUEST = 400, |
| UNAUTHORIZED = 401, |
| PAYMENT_REQUIRED = 402, |
| FORBIDDEN = 403, |
| NOT_FOUND = 404, |
| METHOD_NOT_ALLOWED = 405, |
| NOT_ACCEPTABLE = 406, |
| PROXY_AUTHENTICATION = 407, |
| REQUEST_TIMEOUT = 408, |
| CONFLICT = 409, |
| GONE = 410, |
| LENGTH_REQUIRED = 411, |
| PRECONDITION_FAILED = 412, |
| REQUEST_ENTITY_TOO_LARGE = 413, |
| REQUEST_URI_TOO_LONG = 414, |
| UNSUPPORTED_MEDIA_TYPE = 415, |
| REQUESTED_RANGE_NOT_SATISFIED = 416, |
| EXPECTATION_FAILED = 417, |
| INTERNAL_SERVER_ERROR = 500, |
| NOT_IMPLEMENTED = 501, |
| BAD_GATEWAY = 502, |
| SERVICE_UNAVAILABLE = 503, |
| GATEWAY_TIMEOUT = 504, |
| HTTP_VERSION_NOT_SUPPORTED = 505 |
| }; |
| |
| std::string to_code(const HttpStatus& status); |
| |
| std::string default_reason(const HttpStatus& status); |
| |
| } // namespace doris |