GRPC C++  1.64.0
status.h
Go to the documentation of this file.
1 //
2 //
3 // Copyright 2015 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18 
19 #ifndef GRPCPP_IMPL_STATUS_H
20 #define GRPCPP_IMPL_STATUS_H
21 
22 // IWYU pragma: private, include <grpcpp/support/status.h>
23 
24 #include <grpc/status.h>
26 #include <grpcpp/support/config.h>
28 
29 namespace grpc {
30 
35  public:
37  Status() : code_(StatusCode::OK) {
38  // Static assertions to make sure that the C++ API value correctly
39  // maps to the core surface API value
40  static_assert(StatusCode::OK == static_cast<StatusCode>(GRPC_STATUS_OK),
41  "Mismatched status code");
42  static_assert(
44  "Mismatched status code");
45  static_assert(
47  "Mismatched status code");
48  static_assert(StatusCode::INVALID_ARGUMENT ==
50  "Mismatched status code");
51  static_assert(StatusCode::DEADLINE_EXCEEDED ==
53  "Mismatched status code");
54  static_assert(
56  "Mismatched status code");
57  static_assert(StatusCode::ALREADY_EXISTS ==
59  "Mismatched status code");
60  static_assert(StatusCode::PERMISSION_DENIED ==
62  "Mismatched status code");
63  static_assert(StatusCode::UNAUTHENTICATED ==
65  "Mismatched status code");
66  static_assert(StatusCode::RESOURCE_EXHAUSTED ==
68  "Mismatched status code");
69  static_assert(StatusCode::FAILED_PRECONDITION ==
71  "Mismatched status code");
72  static_assert(
74  "Mismatched status code");
75  static_assert(StatusCode::OUT_OF_RANGE ==
77  "Mismatched status code");
78  static_assert(StatusCode::UNIMPLEMENTED ==
80  "Mismatched status code");
81  static_assert(
83  "Mismatched status code");
84  static_assert(StatusCode::UNAVAILABLE ==
85  static_cast<StatusCode>(GRPC_STATUS_UNAVAILABLE),
86  "Mismatched status code");
87  static_assert(
89  "Mismatched status code");
90  }
91 
98  Status(StatusCode code, const std::string& error_message)
99  : code_(code), error_message_(error_message) {}
100 
104  Status(StatusCode code, const std::string& error_message,
105  const std::string& error_details)
106  : code_(code),
107  error_message_(error_message),
108  binary_error_details_(error_details) {}
109 
110  // Pre-defined special status objects.
112  static const Status& OK;
114  static const Status& CANCELLED;
115 
117  StatusCode error_code() const { return code_; }
119  std::string error_message() const { return error_message_; }
121  // Usually it contains a serialized google.rpc.Status proto.
122  std::string error_details() const { return binary_error_details_; }
123 
125  bool ok() const { return code_ == StatusCode::OK; }
126 
127  // Ignores any errors. This method does nothing except potentially suppress
128  // complaints from any tools that are checking that errors are not dropped on
129  // the floor.
130  void IgnoreError() const {}
131 
132  private:
133  StatusCode code_;
134  std::string error_message_;
135  std::string binary_error_details_;
136 };
137 
138 } // namespace grpc
139 
140 #endif // GRPCPP_IMPL_STATUS_H
grpc::UNAVAILABLE
@ UNAVAILABLE
The service is currently unavailable.
Definition: status_code_enum.h:134
GRPC_STATUS_UNAVAILABLE
@ GRPC_STATUS_UNAVAILABLE
The service is currently unavailable.
Definition: status.h:143
grpc
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
GRPC_STATUS_FAILED_PRECONDITION
@ GRPC_STATUS_FAILED_PRECONDITION
Operation was rejected because the system is not in a state required for the operation's execution.
Definition: status.h:97
status_code_enum.h
grpc::PERMISSION_DENIED
@ PERMISSION_DENIED
The caller does not have permission to execute the specified operation.
Definition: status_code_enum.h:64
grpc::Status::Status
Status()
Construct an OK instance.
Definition: status.h:37
GRPC_STATUS_DEADLINE_EXCEEDED
@ GRPC_STATUS_DEADLINE_EXCEEDED
Deadline expired before operation could complete.
Definition: status.h:53
GRPC_STATUS_CANCELLED
@ GRPC_STATUS_CANCELLED
The operation was cancelled (typically by the caller).
Definition: status.h:33
grpc::ALREADY_EXISTS
@ ALREADY_EXISTS
Some entity that we attempted to create (e.g., file or directory) already exists.
Definition: status_code_enum.h:57
grpc::Status::ok
bool ok() const
Is the status OK?
Definition: status.h:125
grpc::DATA_LOSS
@ DATA_LOSS
Unrecoverable data loss or corruption.
Definition: status_code_enum.h:137
grpc::FAILED_PRECONDITION
@ FAILED_PRECONDITION
Operation was rejected because the system is not in a state required for the operation's execution.
Definition: status_code_enum.h:92
GRPC_STATUS_OUT_OF_RANGE
@ GRPC_STATUS_OUT_OF_RANGE
Operation was attempted past the valid range.
Definition: status.h:121
status.h
GRPC_STATUS_INVALID_ARGUMENT
@ GRPC_STATUS_INVALID_ARGUMENT
Client specified an invalid argument.
Definition: status.h:46
grpc::Status
Did it work? If it didn't, why?
Definition: status.h:34
GRPCXX_DLL
#define GRPCXX_DLL
Definition: port_platform.h:128
GRPC_STATUS_INTERNAL
@ GRPC_STATUS_INTERNAL
Internal errors.
Definition: status.h:129
grpc::Status::Status
Status(StatusCode code, const std::string &error_message, const std::string &error_details)
Construct an instance with code, error_message and error_details.
Definition: status.h:104
GRPC_STATUS_DATA_LOSS
@ GRPC_STATUS_DATA_LOSS
Unrecoverable data loss or corruption.
Definition: status.h:146
grpc::OK
@ OK
Not an error; returned on success.
Definition: status_code_enum.h:28
GRPC_STATUS_PERMISSION_DENIED
@ GRPC_STATUS_PERMISSION_DENIED
The caller does not have permission to execute the specified operation.
Definition: status.h:68
GRPC_STATUS_UNIMPLEMENTED
@ GRPC_STATUS_UNIMPLEMENTED
Operation is not implemented or not supported/enabled in this service.
Definition: status.h:124
GRPC_STATUS_ABORTED
@ GRPC_STATUS_ABORTED
The operation was aborted, typically due to a concurrency issue like sequencer check failures,...
Definition: status.h:104
grpc::Status::Status
Status(StatusCode code, const std::string &error_message)
Construct an instance with associated code and error_message.
Definition: status.h:98
GRPC_STATUS_NOT_FOUND
@ GRPC_STATUS_NOT_FOUND
Some requested entity (e.g., file or directory) was not found.
Definition: status.h:56
GRPC_STATUS_ALREADY_EXISTS
@ GRPC_STATUS_ALREADY_EXISTS
Some entity that we attempted to create (e.g., file or directory) already exists.
Definition: status.h:60
GRPC_MUST_USE_RESULT_WHEN_USE_STRICT_WARNING
#define GRPC_MUST_USE_RESULT_WHEN_USE_STRICT_WARNING
Definition: port_platform.h:669
grpc::Status::error_message
std::string error_message() const
Return the instance's error message.
Definition: status.h:119
grpc::StatusCode
StatusCode
Definition: status_code_enum.h:26
GRPC_STATUS_RESOURCE_EXHAUSTED
@ GRPC_STATUS_RESOURCE_EXHAUSTED
Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out ...
Definition: status.h:76
grpc::Status::IgnoreError
void IgnoreError() const
Definition: status.h:130
grpc::Status::CANCELLED
static const Status & CANCELLED
A CANCELLED pre-defined instance.
Definition: status.h:114
grpc::Status::error_code
StatusCode error_code() const
Return the instance's error code.
Definition: status.h:117
grpc::ABORTED
@ ABORTED
The operation was aborted, typically due to a concurrency issue like sequencer check failures,...
Definition: status_code_enum.h:99
GRPC_STATUS_UNKNOWN
@ GRPC_STATUS_UNKNOWN
Unknown error.
Definition: status.h:40
grpc::DEADLINE_EXCEEDED
@ DEADLINE_EXCEEDED
Deadline expired before operation could complete.
Definition: status_code_enum.h:50
grpc::Status::OK
static const Status & OK
An OK pre-defined instance.
Definition: status.h:112
grpc::UNIMPLEMENTED
@ UNIMPLEMENTED
Operation is not implemented or not supported/enabled in this service.
Definition: status_code_enum.h:117
grpc::NOT_FOUND
@ NOT_FOUND
Some requested entity (e.g., file or directory) was not found.
Definition: status_code_enum.h:53
GRPC_STATUS_UNAUTHENTICATED
@ GRPC_STATUS_UNAUTHENTICATED
The request does not have valid authentication credentials for the operation.
Definition: status.h:72
config.h
grpc::CANCELLED
@ CANCELLED
The operation was cancelled (typically by the caller).
Definition: status_code_enum.h:31
grpc::OUT_OF_RANGE
@ OUT_OF_RANGE
Operation was attempted past the valid range.
Definition: status_code_enum.h:114
GRPC_STATUS_OK
@ GRPC_STATUS_OK
Not an error; returned on success.
Definition: status.h:30
grpc::INVALID_ARGUMENT
@ INVALID_ARGUMENT
Client specified an invalid argument.
Definition: status_code_enum.h:43
grpc::UNKNOWN
@ UNKNOWN
Unknown error.
Definition: status_code_enum.h:37
grpc::RESOURCE_EXHAUSTED
@ RESOURCE_EXHAUSTED
Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out ...
Definition: status_code_enum.h:72
grpc::UNAUTHENTICATED
@ UNAUTHENTICATED
The request does not have valid authentication credentials for the operation.
Definition: status_code_enum.h:68
grpc::Status::error_details
std::string error_details() const
Return the (binary) error details.
Definition: status.h:122
grpc::INTERNAL
@ INTERNAL
Internal errors.
Definition: status_code_enum.h:121
port_platform.h