| // Copyright 2019 Google LLC |
| // |
| // Licensed 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 |
| // |
| // https://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. |
| |
| #include "bindings/python/pyiree/status_utils.h" |
| |
| #include "absl/strings/str_cat.h" |
| |
| namespace iree { |
| namespace python { |
| |
| namespace { |
| |
| PyObject* StatusToPyExcClass(const Status& status) { |
| switch (status.code()) { |
| case StatusCode::kInvalidArgument: |
| return PyExc_ValueError; |
| case StatusCode::kOutOfRange: |
| return PyExc_IndexError; |
| case StatusCode::kUnimplemented: |
| return PyExc_NotImplementedError; |
| default: |
| return PyExc_RuntimeError; |
| } |
| } |
| |
| PyObject* ApiStatusToPyExcClass(iree_status_code_t status_code) { |
| switch (status_code) { |
| case IREE_STATUS_INVALID_ARGUMENT: |
| return PyExc_ValueError; |
| case IREE_STATUS_OUT_OF_RANGE: |
| return PyExc_IndexError; |
| case IREE_STATUS_UNIMPLEMENTED: |
| return PyExc_NotImplementedError; |
| default: |
| return PyExc_RuntimeError; |
| } |
| } |
| |
| } // namespace |
| |
| pybind11::error_already_set StatusToPyExc(const Status& status) { |
| assert(!status.ok()); |
| PyErr_SetString(StatusToPyExcClass(status), status.error_message().c_str()); |
| return pybind11::error_already_set(); |
| } |
| |
| pybind11::error_already_set ApiStatusToPyExc(iree_status_t status, |
| const char* message) { |
| assert(!iree_status_is_ok(status)); |
| auto full_message = absl::StrCat( |
| message, ": ", iree_status_code_string(iree_status_code(status))); |
| PyErr_SetString(ApiStatusToPyExcClass(iree_status_code(status)), |
| full_message.c_str()); |
| return pybind11::error_already_set(); |
| } |
| |
| pybind11::error_already_set RaisePyError(PyObject* exc_class, |
| const char* message) { |
| PyErr_SetString(exc_class, message); |
| return pybind11::error_already_set(); |
| } |
| |
| } // namespace python |
| } // namespace iree |