throw_delegate.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //
  2. // Copyright 2017 The Abseil Authors.
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // https://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. //
  16. #ifndef ABSL_BASE_INTERNAL_THROW_DELEGATE_H_
  17. #define ABSL_BASE_INTERNAL_THROW_DELEGATE_H_
  18. #include <string>
  19. #include "absl/base/config.h"
  20. namespace absl {
  21. ABSL_NAMESPACE_BEGIN
  22. namespace base_internal {
  23. // Helper functions that allow throwing exceptions consistently from anywhere.
  24. // The main use case is for header-based libraries (eg templates), as they will
  25. // be built by many different targets with their own compiler options.
  26. // In particular, this will allow a safe way to throw exceptions even if the
  27. // caller is compiled with -fno-exceptions. This is intended for implementing
  28. // things like map<>::at(), which the standard documents as throwing an
  29. // exception on error.
  30. //
  31. // Using other techniques like #if tricks could lead to ODR violations.
  32. //
  33. // You shouldn't use it unless you're writing code that you know will be built
  34. // both with and without exceptions and you need to conform to an interface
  35. // that uses exceptions.
  36. [[noreturn]] void ThrowStdLogicError(const std::string& what_arg);
  37. [[noreturn]] void ThrowStdLogicError(const char* what_arg);
  38. [[noreturn]] void ThrowStdInvalidArgument(const std::string& what_arg);
  39. [[noreturn]] void ThrowStdInvalidArgument(const char* what_arg);
  40. [[noreturn]] void ThrowStdDomainError(const std::string& what_arg);
  41. [[noreturn]] void ThrowStdDomainError(const char* what_arg);
  42. [[noreturn]] void ThrowStdLengthError(const std::string& what_arg);
  43. [[noreturn]] void ThrowStdLengthError(const char* what_arg);
  44. [[noreturn]] void ThrowStdOutOfRange(const std::string& what_arg);
  45. [[noreturn]] void ThrowStdOutOfRange(const char* what_arg);
  46. [[noreturn]] void ThrowStdRuntimeError(const std::string& what_arg);
  47. [[noreturn]] void ThrowStdRuntimeError(const char* what_arg);
  48. [[noreturn]] void ThrowStdRangeError(const std::string& what_arg);
  49. [[noreturn]] void ThrowStdRangeError(const char* what_arg);
  50. [[noreturn]] void ThrowStdOverflowError(const std::string& what_arg);
  51. [[noreturn]] void ThrowStdOverflowError(const char* what_arg);
  52. [[noreturn]] void ThrowStdUnderflowError(const std::string& what_arg);
  53. [[noreturn]] void ThrowStdUnderflowError(const char* what_arg);
  54. [[noreturn]] void ThrowStdBadFunctionCall();
  55. [[noreturn]] void ThrowStdBadAlloc();
  56. // ThrowStdBadArrayNewLength() cannot be consistently supported because
  57. // std::bad_array_new_length is missing in libstdc++ until 4.9.0.
  58. // https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/api/a01379_source.html
  59. // https://gcc.gnu.org/onlinedocs/gcc-4.9.0/libstdc++/api/a01327_source.html
  60. // libcxx (as of 3.2) and msvc (as of 2015) both have it.
  61. // [[noreturn]] void ThrowStdBadArrayNewLength();
  62. } // namespace base_internal
  63. ABSL_NAMESPACE_END
  64. } // namespace absl
  65. #endif // ABSL_BASE_INTERNAL_THROW_DELEGATE_H_