2021-03-29 19:34:45 +02:00
|
|
|
// Copyright 2021 Espressif Systems (Shanghai) PTE LTD
|
2021-03-16 21:36:13 +01:00
|
|
|
//
|
2021-03-29 19:34:45 +02:00
|
|
|
// 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
|
2021-03-16 21:36:13 +01:00
|
|
|
//
|
2021-03-29 19:34:45 +02:00
|
|
|
// 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.
|
2021-03-16 21:36:13 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
#ifndef _EXCEPTION_STUB_HPP_
|
|
|
|
#define _EXCEPTION_STUB_HPP_
|
2021-03-16 21:36:13 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_COMPILER_CXX_EXCEPTIONS
|
2021-05-23 20:43:50 +02:00
|
|
|
#define TRY_CATCH_OR_DO(block, action) \
|
2021-03-18 08:14:34 +01:00
|
|
|
try { block \
|
2021-03-16 21:36:13 +01:00
|
|
|
} catch (std::bad_alloc& e) { \
|
|
|
|
ESP_LOGE(TAG, "Out of memory"); \
|
2021-05-23 20:43:50 +02:00
|
|
|
action; \
|
|
|
|
} catch (::esp_modem::esp_err_exception& e) { \
|
2021-03-16 21:36:13 +01:00
|
|
|
esp_err_t err = e.get_err_t(); \
|
2021-05-15 22:09:08 +02:00
|
|
|
ESP_LOGE(TAG, "%s: Exception caught with ESP err_code=%d", __func__, err); \
|
2021-03-16 21:36:13 +01:00
|
|
|
ESP_LOGE(TAG, "%s", e.what()); \
|
2021-05-23 20:43:50 +02:00
|
|
|
action; \
|
2021-03-16 21:36:13 +01:00
|
|
|
}
|
2021-05-23 20:43:50 +02:00
|
|
|
|
|
|
|
#define TRY_CATCH_RET_NULL(block) TRY_CATCH_OR_DO(block, return nullptr)
|
2021-03-16 21:36:13 +01:00
|
|
|
#else
|
2021-05-23 20:43:50 +02:00
|
|
|
|
|
|
|
#define TRY_CATCH_OR_DO(block, action) \
|
|
|
|
block
|
|
|
|
|
2021-03-16 21:36:13 +01:00
|
|
|
#define TRY_CATCH_RET_NULL(block) \
|
|
|
|
block
|
2021-05-23 20:43:50 +02:00
|
|
|
|
2021-03-16 21:36:13 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
#endif // _EXCEPTION_STUB_HPP_
|