/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. 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 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 #include #include #include #include #include "paddle/fluid/platform/error_codes.pb.h" #include "paddle/fluid/string/printf.h" namespace paddle { namespace platform { typedef ::paddle::platform::error::Code Code; class ErrorSummary { public: // Note(chenweihang): Final deprecated constructor // This constructor is used to be compatible with // current existing untyped PADDLE_ENFORCE_* // PADDLE_ENFORCE // Note(chenweihang): Windows openblas need this // constructor for compiling PADDLE_ENFORCE in *.cu, // this is a bug cause we can't remove this // constructor now. template explicit ErrorSummary(Args... args) { code_ = paddle::platform::error::LEGACY; msg_ = paddle::string::Sprintf(args...); } // Note(chenweihang): Only recommended constructor // No longer supports PADDLE_ENFORCE without type or without error message explicit ErrorSummary(Code code, std::string msg) : code_(code), msg_(msg) {} Code code() const { return code_; } const std::string& error_message() const { return msg_; } std::string ToString() const; private: Code code_; std::string msg_; }; namespace errors { #define REGISTER_ERROR(FUNC, CONST, ...) \ template \ ::paddle::platform::ErrorSummary FUNC(Args... args) { \ return ::paddle::platform::ErrorSummary( \ ::paddle::platform::error::CONST, ::paddle::string::Sprintf(args...)); \ } REGISTER_ERROR(InvalidArgument, INVALID_ARGUMENT) REGISTER_ERROR(NotFound, NOT_FOUND) REGISTER_ERROR(OutOfRange, OUT_OF_RANGE) REGISTER_ERROR(AlreadyExists, ALREADY_EXISTS) REGISTER_ERROR(ResourceExhausted, RESOURCE_EXHAUSTED) REGISTER_ERROR(PreconditionNotMet, PRECONDITION_NOT_MET) REGISTER_ERROR(PermissionDenied, PERMISSION_DENIED) REGISTER_ERROR(ExecutionTimeout, EXECUTION_TIMEOUT) REGISTER_ERROR(Unimplemented, UNIMPLEMENTED) REGISTER_ERROR(Unavailable, UNAVAILABLE) REGISTER_ERROR(Fatal, FATAL) REGISTER_ERROR(External, EXTERNAL) #undef REGISTER_ERROR } // namespace errors } // namespace platform } // namespace paddle