mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
docs: add C++ support chapter to the API guides
This commit is contained in:
parent
8184f03115
commit
80d3dc9ac5
165
docs/en/api-guides/cplusplus.rst
Normal file
165
docs/en/api-guides/cplusplus.rst
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
C++ Support
|
||||||
|
===========
|
||||||
|
|
||||||
|
.. highlight:: cpp
|
||||||
|
|
||||||
|
ESP-IDF is primarily written in C and provides C APIs. However, ESP-IDF supports development of applications in C++. This document covers various topics relevant to C++ development.
|
||||||
|
|
||||||
|
The following C++ features are supported:
|
||||||
|
|
||||||
|
- :ref:`cplusplus_exceptions`
|
||||||
|
- :ref:`cplusplus_multithreading`
|
||||||
|
- :ref:`cplusplus_rtti`
|
||||||
|
- :doc:`thread-local-storage` (``thread_local`` keyword)
|
||||||
|
- All C++ features implemented by GCC, except for some :ref:`limitations <cplusplus_limitations>`. See `GCC documentation <https://gcc.gnu.org/projects/cxx-status.html>`_ for details on features implemented by GCC.
|
||||||
|
|
||||||
|
esp-idf-cxx Component
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
`esp-idf-cxx <https://github.com/espressif/esp-idf-cxx>`_ component provides higher-level C++ APIs for some of the ESP-IDF features. This component is available from the `IDF Component Registry <https://components.espressif.com/components/espressif/esp-idf-cxx>`_.
|
||||||
|
|
||||||
|
.. _cplusplus_multithreading:
|
||||||
|
|
||||||
|
C++ language standard
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
By default, ESP-IDF compiles C++ code with C++20 language standard with GNU extensions (``-std=gnu++20``).
|
||||||
|
|
||||||
|
To compile the source code of a certain component using a different language standard, set the desired compiler flag in the component CMakeLists.txt file:
|
||||||
|
|
||||||
|
.. code-block:: cmake
|
||||||
|
|
||||||
|
idf_component_register( ... )
|
||||||
|
target_compile_options(${COMPONENT_LIB} PRIVATE -std=gnu++2b)
|
||||||
|
|
||||||
|
Use ``PUBLIC`` instead of ``PRIVATE`` if the public header files of the component also need to be compiled with the same language standard.
|
||||||
|
|
||||||
|
Multithreading
|
||||||
|
--------------
|
||||||
|
|
||||||
|
C++ threads, mutexes, and condition variables are supported. C++ threads are built on top of pthreads, which in turn wrap FreeRTOS tasks.
|
||||||
|
|
||||||
|
See :example:`cxx/pthread` for an example of creating threads in C++.
|
||||||
|
|
||||||
|
.. _cplusplus_exceptions:
|
||||||
|
|
||||||
|
Exception handling
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Support for C++ Exceptions in ESP-IDF is disabled by default, but can be enabled using the :ref:`CONFIG_COMPILER_CXX_EXCEPTIONS` option.
|
||||||
|
|
||||||
|
If an exception is thrown, but there is no ``catch`` block, the program will be terminated by the ``abort`` function, and the backtrace will be printed. See :doc:`Fatal Errors <fatal-errors>` for more information about backtraces.
|
||||||
|
|
||||||
|
C++ Exceptions should *only* be used for exceptional cases, something happening unexpectedly and that is quite rare, e.g. an event that happens less frequently than 1 every 100 times. *Do not* use them for control flow (see also the section about resource usage below)! For more information on how to use C++ Exceptions, see the `ISO C++ FAQ <https://isocpp.org/wiki/faq/exceptions>`_ and `CPP Core Guidelines <https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-errors>`_.
|
||||||
|
|
||||||
|
See :example:`cxx/exceptions` for an example of C++ exception handling.
|
||||||
|
|
||||||
|
C++ Exception Handling and Resource Usage
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Enabling exception handling normally increases application binary size by a few KB.
|
||||||
|
|
||||||
|
Additionally, it may be necessary to reserve some amount of RAM for exception emergency pool. Memory from this pool will be used if it is not possible to allocate exception object from the heap. The amount of memory in the emergency pool can be set using the :ref:`CONFIG_COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE` variable. Some additional stack memory (around 200 bytes) will also be used if and only if a C++ Exception is actually thrown, because it requires calling some functions from the top of the stack to initiate exception handling.
|
||||||
|
|
||||||
|
The run time of code using C++ exceptions depends on what actually happens at run time. If no exception is thrown, the code tends to be somewhat faster since there is no need to check error codes. If an exception is thrown, the run time of the code that handles exceptions will be orders of magnitude slower than code returning an error code. This increase may or may not be significant, however, in the entire application, in particular if the error handling requires additional action, such as a user input or messaging to a cloud. But exception-throwing code should never be used in real-time critical code paths.
|
||||||
|
|
||||||
|
.. _cplusplus_rtti:
|
||||||
|
|
||||||
|
Runtime Type Information (RTTI)
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
Support for RTTI is disabled by default, but can be enabled using :ref:`CONFIG_COMPILER_CXX_RTTI` option.
|
||||||
|
|
||||||
|
Enabling this option compiles all C++ files with RTTI support enabled, which allows using ``dynamic_cast`` conversion and ``typeid`` operator. Enabling this option typically increases the binary size by tens of kB.
|
||||||
|
|
||||||
|
See :example:`cxx/rtti` for an example of using RTTI in ESP-IDF.
|
||||||
|
|
||||||
|
|
||||||
|
Developing in C++
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
The following sections provide tips on developing ESP-IDF applications in C++.
|
||||||
|
|
||||||
|
Combining C and C++ code
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
When part of the application is developed in C and part in C++, it is important to understand the concept of `language linkage <https://en.cppreference.com/w/cpp/language/language_linkage>`_.
|
||||||
|
|
||||||
|
In order for a C++ function to be callable from C code, it has to be both *declared* and *defined* with C linkage (``extern "C"``)::
|
||||||
|
|
||||||
|
// declaration in the header file:
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void my_cpp_func(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// definition in a .cpp file:
|
||||||
|
extern "C" void my_cpp_func(void) {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
In order for a C function to be callable from C++, it has to be *declared* with C linkage::
|
||||||
|
|
||||||
|
// declaration in the header file:
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void my_c_func(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// definition in a .c file:
|
||||||
|
void my_c_func(void) {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Defining ``app_main`` in C++
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
ESP-IDF expects the application entry point, ``app_main``, to be defined with C linkage. When ``app_main`` is defined in a .cpp source file, it has to be designated as ``extern "C"``::
|
||||||
|
|
||||||
|
extern "C" void app_main()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Designated initializers
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Many of the ESP-IDF components use :ref:`configuration structures <api_reference_config_structures>` as arguments to the initialization functions. ESP-IDF examples written in C routinely use `designated initializers <https://en.cppreference.com/w/c/language/struct_initialization>`_ to fill these structures in a readable and a maintainable way.
|
||||||
|
|
||||||
|
C and C++ languages have different rules with regards to the designated initializers. For example, C++ language version C++20, currently the default in ESP-IDF, does not support out-of-order designated initialization, nested designated initialization, mixing of designated initializers and regular initializers, and designated initialization of arrays. Therefore, when porting ESP-IDF C examples to C++, some changes to the structure initializers may be necessary. See the `C++ aggregate initialization reference <https://en.cppreference.com/w/cpp/language/aggregate_initialization>`_ for more details.
|
||||||
|
|
||||||
|
|
||||||
|
iostream
|
||||||
|
^^^^^^^^
|
||||||
|
|
||||||
|
``iostream`` functionality is supported in ESP-IDF, with a couple of caveats:
|
||||||
|
|
||||||
|
1. Normally ESP-IDF build process eliminates the unused code. However in the case of iostreams, simply including ``<iostream>`` header in one of the source files significantly increases the binary size (by about 200 kB).
|
||||||
|
2. By default, ESP-IDF uses a simple non-blocking implementation of the standard input stream (``stdin``). To get the usual behavior of ``std::cin``, the application has to initialize the UART driver and enable the blocking mode as shown in :example_file:`common_components/protocol_examples_common/stdin_out.c`.
|
||||||
|
|
||||||
|
.. _cplusplus_limitations:
|
||||||
|
|
||||||
|
Limitations
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- Linker script generator doesn't support function level placements for functions with C++ linkage.
|
||||||
|
- Various section attributes (such as ``IRAM_ATTR``) are ignored when used with template functions.
|
||||||
|
- Vtables are placed into Flash and are not accessible when the flash cache is disabled. Therefore, virtual function calls should be avoided in :ref:`IRAM-safe interrupt handlers <iram-safe-interrupt-handlers>`. Placement of Vtables cannot be adjusted using the linker script generator, yet.
|
||||||
|
- C++ filesystem (``std::filesystem``) features are not supported.
|
||||||
|
|
||||||
|
What to Avoid
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Do not use ``setjmp``/``longjmp`` in C++! ``longjmp`` blindly jumps up the stack without calling any destructors, easily introducing undefined behavior and memory leaks. Use C++ exceptions instead, they will guarantee correctly calling destructors. If you cannot use C++ exceptions, use alternatives (except ``setjmp``/``longjmp`` themselves) such as simple return codes.
|
@ -186,10 +186,4 @@ Error handling patterns
|
|||||||
C++ Exceptions
|
C++ Exceptions
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
Support for C++ Exceptions in ESP-IDF is disabled by default, but can be enabled using :ref:`CONFIG_COMPILER_CXX_EXCEPTIONS` option.
|
See :ref:`cplusplus_exceptions`.
|
||||||
|
|
||||||
Enabling exception handling normally increases application binary size by a few KB. Additionally it may be necessary to reserve some amount of RAM for exception emergency pool. Memory from this pool will be used if it is not possible to allocate exception object from the heap. Amount of memory in the emergency pool can be set using :ref:`CONFIG_COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE` variable.
|
|
||||||
|
|
||||||
If an exception is thrown, but there is no ``catch`` block, the program will be terminated by ``abort`` function, and backtrace will be printed. See :doc:`Fatal Errors <fatal-errors>` for more information about backtraces.
|
|
||||||
|
|
||||||
See :example:`cxx/exceptions` for an example of C++ exception handling.
|
|
||||||
|
@ -10,7 +10,9 @@ API Guides
|
|||||||
:SOC_BT_SUPPORTED: blufi
|
:SOC_BT_SUPPORTED: blufi
|
||||||
bootloader
|
bootloader
|
||||||
build-system
|
build-system
|
||||||
|
:SOC_SUPPORT_COEXISTENCE: coexist
|
||||||
core_dump
|
core_dump
|
||||||
|
cplusplus
|
||||||
:SOC_RTC_MEM_SUPPORTED: deep-sleep-stub
|
:SOC_RTC_MEM_SUPPORTED: deep-sleep-stub
|
||||||
:SOC_USB_OTG_SUPPORTED: dfu
|
:SOC_USB_OTG_SUPPORTED: dfu
|
||||||
error-handling
|
error-handling
|
||||||
@ -18,6 +20,7 @@ API Guides
|
|||||||
freertos-smp
|
freertos-smp
|
||||||
:SOC_WIFI_MESH_SUPPORT: esp-wifi-mesh
|
:SOC_WIFI_MESH_SUPPORT: esp-wifi-mesh
|
||||||
event-handling
|
event-handling
|
||||||
|
:SOC_SPIRAM_SUPPORTED: external-ram
|
||||||
fatal-errors
|
fatal-errors
|
||||||
../security/flash-encryption
|
../security/flash-encryption
|
||||||
:esp32s3: flash_psram_config
|
:esp32s3: flash_psram_config
|
||||||
@ -30,10 +33,10 @@ API Guides
|
|||||||
openthread
|
openthread
|
||||||
partition-tables
|
partition-tables
|
||||||
performance/index
|
performance/index
|
||||||
|
reproducible-builds
|
||||||
:not esp32c6: RF_calibration
|
:not esp32c6: RF_calibration
|
||||||
:esp32: ../security/secure-boot-v1
|
:esp32: ../security/secure-boot-v1
|
||||||
../security/secure-boot-v2
|
../security/secure-boot-v2
|
||||||
:SOC_SPIRAM_SUPPORTED: external-ram
|
|
||||||
thread-local-storage
|
thread-local-storage
|
||||||
tools/index
|
tools/index
|
||||||
unit-tests
|
unit-tests
|
||||||
@ -42,5 +45,3 @@ API Guides
|
|||||||
:SOC_USB_SERIAL_JTAG_SUPPORTED: usb-serial-jtag-console
|
:SOC_USB_SERIAL_JTAG_SUPPORTED: usb-serial-jtag-console
|
||||||
:SOC_WIFI_SUPPORTED: wifi
|
:SOC_WIFI_SUPPORTED: wifi
|
||||||
:SOC_WIFI_SUPPORTED: wifi-security
|
:SOC_WIFI_SUPPORTED: wifi-security
|
||||||
:SOC_SUPPORT_COEXISTENCE: coexist
|
|
||||||
reproducible-builds
|
|
@ -101,4 +101,7 @@ ESP-BSP
|
|||||||
|
|
||||||
`ESP-BSP <https://github.com/espressif/esp-bsp>`_ repository contains Board Support Packages (BSPs) for various Espressif's and 3rd party development boards. BSPs are useful for quick start on a supported board. Usually they contain pinout definition and helper functions, that will initialize peripherals for the specific board. Additionally, the BSP would contain drivers for external chips populated on the development board, such as sensors, displays, audio codecs etc.
|
`ESP-BSP <https://github.com/espressif/esp-bsp>`_ repository contains Board Support Packages (BSPs) for various Espressif's and 3rd party development boards. BSPs are useful for quick start on a supported board. Usually they contain pinout definition and helper functions, that will initialize peripherals for the specific board. Additionally, the BSP would contain drivers for external chips populated on the development board, such as sensors, displays, audio codecs etc.
|
||||||
|
|
||||||
|
ESP-IDF-CXX
|
||||||
|
-----------
|
||||||
|
|
||||||
|
`ESP-IDF-CXX <https://github.com/espressif/esp-idf-cxx>`_ contains C++ wrappers for part of ESP-IDF. The focus is on ease of use, safety, automatic resource management and shifting checks to compile time instead of failing at run time. There are C++ classes for ESP-Timer, I2C, SPI, GPIO and other peripherals or features of ESP-IDF. ESP-IDF-CXX is `available as a component <https://components.espressif.com/components/espressif/esp-idf-cxx>`_ from the component registry. Please check the project's `README.md <https://github.com/espressif/esp-idf-cxx/blob/main/README.md>`_ for more information.
|
||||||
|
1
docs/zh_CN/api-guides/cplusplus.rst
Normal file
1
docs/zh_CN/api-guides/cplusplus.rst
Normal file
@ -0,0 +1 @@
|
|||||||
|
.. include:: ../../en/api-guides/cplusplus.rst
|
@ -186,10 +186,4 @@ ESP-IDF 中大多数函数会返回 :cpp:type:`esp_err_t` 类型的错误码,
|
|||||||
C++ 异常
|
C++ 异常
|
||||||
--------
|
--------
|
||||||
|
|
||||||
默认情况下,ESP-IDF 会禁用对 C++ 异常的支持,但是可以通过 :ref:`CONFIG_COMPILER_CXX_EXCEPTIONS` 选项启用。
|
请参考 :ref:`cplusplus_exceptions`。
|
||||||
|
|
||||||
通常情况下,启用异常处理会让应用程序的二进制文件增加几 KB。此外,启用该功能时还应为异常事故池预留一定内存。当应用程序无法从堆中分配异常对象时,就可以使用这个池中的内存。该内存池的大小可以通过 :ref:`CONFIG_COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE` 来设定。
|
|
||||||
|
|
||||||
如果 C++ 程序抛出了异常,但是程序中并没有 ``catch`` 代码块来捕获该异常,那么程序的运行就会被 ``abort`` 函数中止,然后打印回溯信息。有关回溯的更多信息,请参阅 :doc:`不可恢复错误 <fatal-errors>` 。
|
|
||||||
|
|
||||||
C++ 异常处理示例,请参考 :example:`cxx/exceptions`。
|
|
||||||
|
@ -43,4 +43,5 @@ API 指南
|
|||||||
:SOC_WIFI_SUPPORTED: wifi
|
:SOC_WIFI_SUPPORTED: wifi
|
||||||
:SOC_WIFI_SUPPORTED: wifi-security
|
:SOC_WIFI_SUPPORTED: wifi-security
|
||||||
:SOC_SUPPORT_COEXISTENCE: coexist
|
:SOC_SUPPORT_COEXISTENCE: coexist
|
||||||
reproducible-builds
|
reproducible-builds
|
||||||
|
cplusplus
|
||||||
|
3
examples/cxx/README.md
Normal file
3
examples/cxx/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# C++ Example Applications
|
||||||
|
|
||||||
|
The example applications here show that basic C++ features work in ESP-IDF. If you are looking for high-level C++ APIs, please take a look at [ESP-IDF-CXX](https://github.com/espressif/esp-idf-cxx). It has a range of C++ wrapper classes which aim to be easy-to-use, safe, provide automatic resource management and check more at compile time to avoid run time errors.
|
@ -126,6 +126,7 @@ function(__build_set_lang_version)
|
|||||||
if(NOT IDF_TARGET STREQUAL "linux")
|
if(NOT IDF_TARGET STREQUAL "linux")
|
||||||
# Building for chip targets: we use a known version of the toolchain.
|
# Building for chip targets: we use a known version of the toolchain.
|
||||||
# Use latest supported versions.
|
# Use latest supported versions.
|
||||||
|
# Please update docs/en/api-guides/cplusplus.rst when changing this.
|
||||||
set(c_std gnu17)
|
set(c_std gnu17)
|
||||||
set(cxx_std gnu++20)
|
set(cxx_std gnu++20)
|
||||||
else()
|
else()
|
||||||
|
Loading…
Reference in New Issue
Block a user