network_services.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #pragma once
  24. #include "esp_netif.h"
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #define ADD_ROOT(name, ...) name,
  29. #define ADD_ROOT_LEAF(name, ...) name,
  30. #define ADD_LEAF(name, ...) name,
  31. #define ALL_NM_STATE \
  32. ADD_ROOT_LEAF(NETWORK_INSTANTIATED_STATE)\
  33. ADD_ROOT_LEAF(NETWORK_INITIALIZING_STATE)\
  34. ADD_ROOT(NETWORK_ETH_ACTIVE_STATE, Eth_Active_State)\
  35. ADD_ROOT(NETWORK_WIFI_ACTIVE_STATE, Wifi_Active_State)\
  36. ADD_ROOT(NETWORK_WIFI_CONFIGURING_ACTIVE_STATE, Wifi_Configuring_State)
  37. #define ALL_ETH_STATE(PARENT, LEVEL)\
  38. ADD_LEAF(ETH_STARTING_STATE,PARENT,LEVEL)\
  39. ADD_LEAF(ETH_ACTIVE_LINKUP_STATE,PARENT,LEVEL)\
  40. ADD_LEAF(ETH_ACTIVE_LINKDOWN_STATE,PARENT,LEVEL)\
  41. ADD_LEAF(ETH_ACTIVE_CONNECTED_STATE,PARENT,LEVEL)\
  42. ADD_LEAF(ETH_CONNECTING_NEW_STATE,PARENT,LEVEL)
  43. #define ALL_WIFI_STATE(PARENT, LEVEL)\
  44. ADD_LEAF(WIFI_INITIALIZING_STATE,PARENT,LEVEL)\
  45. ADD_LEAF(WIFI_CONNECTING_STATE,PARENT,LEVEL)\
  46. ADD_LEAF(WIFI_CONNECTING_SCAN_STATE,PARENT,LEVEL)\
  47. ADD_LEAF(WIFI_CONNECTING_NEW_STATE,PARENT,LEVEL)\
  48. ADD_LEAF(WIFI_CONNECTING_NEW_FAILED_STATE,PARENT,LEVEL)\
  49. ADD_LEAF(WIFI_CONNECTED_STATE,PARENT,LEVEL)\
  50. ADD_LEAF(WIFI_USER_DISCONNECTED_STATE,PARENT,LEVEL)\
  51. ADD_LEAF(WIFI_LOST_CONNECTION_STATE,PARENT,LEVEL)
  52. #define ALL_WIFI_CONFIGURING_STATE(PARENT, LEVEL)\
  53. ADD_LEAF(WIFI_CONFIGURING_STATE,PARENT,LEVEL)\
  54. ADD_LEAF(WIFI_CONFIGURING_CONNECT_STATE,PARENT,LEVEL)\
  55. ADD_LEAF(WIFI_CONFIGURING_CONNECT_SUCCESS_STATE,PARENT,LEVEL)
  56. typedef enum {
  57. ALL_NM_STATE
  58. TOTAL_NM_STATE
  59. } nm_state_t;
  60. typedef enum {
  61. ALL_WIFI_STATE(,)
  62. TOTAL_WIFI_ACTIVE_STATE
  63. } mn_wifi_active_state_t;
  64. typedef enum {
  65. ALL_ETH_STATE(,)
  66. TOTAL_ETH_ACTIVE_STATE
  67. } mn_eth_active_state_t;
  68. typedef enum {
  69. ALL_WIFI_CONFIGURING_STATE(,)
  70. TOTAL_WIFI_CONFIGURING_STATE
  71. } mn_wifi_configuring_state_t;
  72. #undef ADD_STATE
  73. #undef ADD_ROOT
  74. #undef ADD_ROOT_LEAF
  75. #undef ADD_LEAF
  76. typedef void (*network_status_reached_cb)(nm_state_t state_id, int sub_state);
  77. esp_err_t network_register_state_callback(nm_state_t state, int sub_state, const char* from, network_status_reached_cb cb);
  78. esp_netif_t * network_get_active_interface();
  79. esp_err_t network_get_hostname(const char **hostname);
  80. esp_err_t network_get_ip_info(tcpip_adapter_ip_info_t* ipInfo);
  81. #ifdef __cplusplus
  82. }
  83. #endif