tools_http_utils.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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_system.h"
  25. #include "pb.h"
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /**
  30. * @brief Type definition for a callback function used in HTTP download.
  31. *
  32. * @param data Pointer to the downloaded data buffer.
  33. * @param len Length of the data buffer.
  34. * @param context User-defined context passed to the callback.
  35. */
  36. typedef void (*http_download_cb_t)(uint8_t* data, size_t len, void* context);
  37. /**
  38. * @brief Downloads data from a specified URL.
  39. *
  40. * This function initializes an HTTP client and starts a download task.
  41. * It uses a callback mechanism to return the downloaded data.
  42. *
  43. * @param url The URL from which to download data.
  44. * @param max The maximum size of data to download.
  45. * @param callback The callback function to be called with the downloaded data.
  46. * @param context User-defined context to be passed to the callback function.
  47. */
  48. void http_download(char* url, size_t max, http_download_cb_t callback, void* context);
  49. /**
  50. * @brief Decodes a URL-encoded string.
  51. *
  52. * This function replaces percent-encoded characters in the URL with their ASCII representations.
  53. * Spaces encoded as '+' are also converted to space characters.
  54. *
  55. * @param url The URL-encoded string to be decoded in place.
  56. */
  57. void url_decode(char* url);
  58. /**
  59. * @brief Callback function for output streaming with HTTP binding.
  60. *
  61. * This function is designed to be used with NanoPB for streaming output data over HTTP.
  62. * It sends the given buffer over an HTTP connection.
  63. *
  64. * @param stream The output stream provided by NanoPB.
  65. * @param buf The buffer containing data to be sent.
  66. * @param count The number of bytes in the buffer to be sent.
  67. * @return Returns true on successful transmission, false otherwise.
  68. */
  69. bool out_http_binding(pb_ostream_t* stream, const uint8_t* buf, size_t count);
  70. /**
  71. * @brief Callback function for input streaming with HTTP binding.
  72. *
  73. * This function is designed to be used with NanoPB for streaming input data over HTTP.
  74. * It reads data into the given buffer from an HTTP connection.
  75. *
  76. * The function is typically used as a callback in a `pb_istream_t` structure,
  77. * allowing NanoPB to receive data in a streaming manner from an HTTP source.
  78. *
  79. * @param stream The input stream provided by NanoPB.
  80. * @param buf The buffer where data should be stored.
  81. * @param count The size of the buffer, indicating the maximum number of bytes to read.
  82. * @return Returns true on successful reception of data, false otherwise. When false
  83. * is returned, it indicates an error in data reception or end of stream.
  84. */
  85. bool in_http_binding(pb_istream_t* stream, pb_byte_t* buf, size_t count);
  86. #ifdef __cplusplus
  87. }
  88. #endif