25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

159 satır
5.0KB

  1. /*
  2. * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
  3. *
  4. * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
  5. *
  6. * Use of this source code is governed by MIT license that can be found in the
  7. * LICENSE file in the root of the source tree. All contributing project authors
  8. * may be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef MK_HTTPCLIENT_H_
  11. #define MK_HTTPCLIENT_H_
  12. #include "mk_common.h"
  13. #include "mk_events_objects.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. ///////////////////////////////////////////HttpDownloader/////////////////////////////////////////////
  18. typedef void *mk_http_downloader;
  19. /**
  20. * @param user_data 用户数据指针
  21. * @param code 错误代码,0代表成功
  22. * @param err_msg 错误提示
  23. * @param file_path 文件保存路径
  24. */
  25. typedef void(API_CALL *on_mk_download_complete)(void *user_data, int code, const char *err_msg, const char *file_path);
  26. /**
  27. * 创建http[s]下载器
  28. * @return 下载器指针
  29. */
  30. API_EXPORT mk_http_downloader API_CALL mk_http_downloader_create();
  31. /**
  32. * 销毁http[s]下载器
  33. * @param ctx 下载器指针
  34. */
  35. API_EXPORT void API_CALL mk_http_downloader_release(mk_http_downloader ctx);
  36. /**
  37. * 开始http[s]下载
  38. * @param ctx 下载器指针
  39. * @param url http[s]下载url
  40. * @param file 文件保存路径
  41. * @param cb 回调函数
  42. * @param user_data 用户数据指针
  43. */
  44. API_EXPORT void API_CALL mk_http_downloader_start(mk_http_downloader ctx, const char *url, const char *file, on_mk_download_complete cb, void *user_data);
  45. ///////////////////////////////////////////HttpRequester/////////////////////////////////////////////
  46. typedef void *mk_http_requester;
  47. /**
  48. * http请求结果回调
  49. * 在code == 0时代表本次http会话是完整的(收到了http回复)
  50. * 用户应该通过user_data获取到mk_http_requester对象
  51. * 然后通过mk_http_requester_get_response等函数获取相关回复数据
  52. * 在回调结束时,应该通过mk_http_requester_release函数销毁该对象
  53. * 或者调用mk_http_requester_clear函数后再复用该对象
  54. * @param user_data 用户数据指针
  55. * @param code 错误代码,0代表成功
  56. * @param err_msg 错误提示
  57. */
  58. typedef void(API_CALL *on_mk_http_requester_complete)(void *user_data, int code, const char *err_msg);
  59. /**
  60. * 创建HttpRequester
  61. */
  62. API_EXPORT mk_http_requester API_CALL mk_http_requester_create();
  63. /**
  64. * 在复用mk_http_requester对象时才需要用到此方法
  65. */
  66. API_EXPORT void API_CALL mk_http_requester_clear(mk_http_requester ctx);
  67. /**
  68. * 销毁HttpRequester
  69. * 如果调用了mk_http_requester_start函数且正在等待http回复,
  70. * 也可以调用mk_http_requester_release方法取消本次http请求
  71. */
  72. API_EXPORT void API_CALL mk_http_requester_release(mk_http_requester ctx);
  73. /**
  74. * 设置HTTP方法,譬如GET/POST
  75. */
  76. API_EXPORT void API_CALL mk_http_requester_set_method(mk_http_requester ctx,const char *method);
  77. /**
  78. * 批量设置设置HTTP头
  79. * @param header 譬如 {"Content-Type","text/html",NULL} 必须以NULL结尾
  80. */
  81. API_EXPORT void API_CALL mk_http_requester_set_header(mk_http_requester ctx, const char *header[]);
  82. /**
  83. * 添加HTTP头
  84. * @param key 譬如Content-Type
  85. * @param value 譬如 text/html
  86. * @param force 如果已经存在该key,是否强制替换
  87. */
  88. API_EXPORT void API_CALL mk_http_requester_add_header(mk_http_requester ctx,const char *key,const char *value,int force);
  89. /**
  90. * 设置消息体,
  91. * @param body mk_http_body对象,通过mk_http_body_from_string等函数生成,使用完毕后请调用mk_http_body_release释放之
  92. */
  93. API_EXPORT void API_CALL mk_http_requester_set_body(mk_http_requester ctx, mk_http_body body);
  94. /**
  95. * 在收到HTTP回复后可调用该方法获取状态码
  96. * @return 譬如 200 OK
  97. */
  98. API_EXPORT const char* API_CALL mk_http_requester_get_response_status(mk_http_requester ctx);
  99. /**
  100. * 在收到HTTP回复后可调用该方法获取响应HTTP头
  101. * @param key HTTP头键名
  102. * @return HTTP头键值
  103. */
  104. API_EXPORT const char* API_CALL mk_http_requester_get_response_header(mk_http_requester ctx,const char *key);
  105. /**
  106. * 在收到HTTP回复后可调用该方法获取响应HTTP body
  107. * @param length 返回body长度,可以为null
  108. * @return body指针
  109. */
  110. API_EXPORT const char* API_CALL mk_http_requester_get_response_body(mk_http_requester ctx, size_t *length);
  111. /**
  112. * 在收到HTTP回复后可调用该方法获取响应
  113. * @return 响应对象
  114. */
  115. API_EXPORT mk_parser API_CALL mk_http_requester_get_response(mk_http_requester ctx);
  116. /**
  117. * 设置回调函数
  118. * @param cb 回调函数,不能为空
  119. * @param user_data 用户数据指针
  120. */
  121. API_EXPORT void API_CALL mk_http_requester_set_cb(mk_http_requester ctx,on_mk_http_requester_complete cb, void *user_data);
  122. /**
  123. * 开始url请求
  124. * @param url 请求url,支持http/https
  125. * @param timeout_second 最大超时时间
  126. */
  127. API_EXPORT void API_CALL mk_http_requester_start(mk_http_requester ctx,const char *url, float timeout_second);
  128. #ifdef __cplusplus
  129. }
  130. #endif
  131. #endif /* MK_HTTPCLIENT_H_ */