oss_api.h 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934
  1. #ifndef LIBOSS_API_H
  2. #define LIBOSS_API_H
  3. #include "aos_util.h"
  4. #include "aos_string.h"
  5. #include "aos_status.h"
  6. #include "oss_define.h"
  7. #include "oss_util.h"
  8. OSS_CPP_START
  9. /*
  10. * @brief create oss bucket
  11. * @param[in] options the oss request options
  12. * @param[in] bucket the oss bucket name
  13. * @param[in] oss_acl the oss bucket acl
  14. * @param[out] resp_headers oss server response headers
  15. * @return aos_status_t, code is 2xx success, other failure
  16. */
  17. aos_status_t *oss_create_bucket(const oss_request_options_t *options,
  18. const aos_string_t *bucket,
  19. oss_acl_e oss_acl,
  20. aos_table_t **resp_headers);
  21. /*
  22. * @brief delete oss bucket
  23. * @param[in] options the oss request options
  24. * @param[in] bucket the oss bucket name
  25. * @param[out] resp_headers oss server response headers
  26. * @return aos_status_t, code is 2xx success, other failure
  27. */
  28. aos_status_t *oss_delete_bucket(const oss_request_options_t *options,
  29. const aos_string_t *bucket,
  30. aos_table_t **resp_headers);
  31. /*
  32. * @brief put oss bucket acl
  33. * @param[in] options the oss request options
  34. * @param[in] bucket the oss bucket name
  35. * @param[in] oss_acl the oss bucket acl
  36. * @param[out] resp_headers oss server response headers
  37. * @return aos_status_t, code is 2xx success, other failure
  38. */
  39. aos_status_t *oss_put_bucket_acl(const oss_request_options_t *options,
  40. const aos_string_t *bucket,
  41. oss_acl_e oss_acl,
  42. aos_table_t **resp_headers);
  43. /*
  44. * @brief get oss bucket acl
  45. * @param[in] options the oss request options
  46. * @param[in] bucket the oss bucket name
  47. * @param[out] oss_acl the oss bucket acl
  48. * @param[out] resp_headers oss server response headers
  49. * @return aos_status_t, code is 2xx success, other failure
  50. */
  51. aos_status_t *oss_get_bucket_acl(const oss_request_options_t *options,
  52. const aos_string_t *bucket,
  53. aos_string_t *oss_acl,
  54. aos_table_t **resp_headers);
  55. /*
  56. * @brief put oss bucket lifecycle
  57. * @param[in] options the oss request options
  58. * @param[in] bucket the oss bucket name
  59. * @param[in] lifecycle_rule_list the oss bucket lifecycle list
  60. * @param[out] resp_headers oss server response headers
  61. * @return aos_status_t, code is 2xx success, other failure
  62. */
  63. aos_status_t *oss_put_bucket_lifecycle(const oss_request_options_t *options,
  64. const aos_string_t *bucket,
  65. aos_list_t *lifecycle_rule_list,
  66. aos_table_t **resp_headers);
  67. /*
  68. * @brief get oss bucket lifecycle
  69. * @param[in] options the oss request options
  70. * @param[in] bucket the oss bucket name
  71. * @param[out] lifecycle_rule_list the oss bucket lifecycle list
  72. * @param[out] resp_headers oss server response headers
  73. * @return aos_status_t, code is 2xx success, other failure
  74. */
  75. aos_status_t *oss_get_bucket_lifecycle(const oss_request_options_t *options,
  76. const aos_string_t *bucket,
  77. aos_list_t *lifecycle_rule_list,
  78. aos_table_t **resp_headers);
  79. /*
  80. * @brief delete oss bucket lifecycle
  81. * @param[in] options the oss request options
  82. * @param[in] bucket the oss bucket name
  83. * @param[out] resp_headers oss server response headers
  84. * @return aos_status_t, code is 2xx success, other failure
  85. */
  86. aos_status_t *oss_delete_bucket_lifecycle(const oss_request_options_t *options,
  87. const aos_string_t *bucket,
  88. aos_table_t **resp_headers);
  89. /*
  90. * @brief list oss objects
  91. * @param[in] options the oss request options
  92. * @param[in] bucket the oss bucket name
  93. * @param[in] params input params for list object request,
  94. including prefix, marker, delimiter, max_ret
  95. * @param[out] params output params for list object response,
  96. including truncated, next_marker, obje list
  97. * @param[out] resp_headers oss server response headers
  98. * @return aos_status_t, code is 2xx success, other failure
  99. */
  100. aos_status_t *oss_list_object(const oss_request_options_t *options,
  101. const aos_string_t *bucket,
  102. oss_list_object_params_t *params,
  103. aos_table_t **resp_headers);
  104. /*
  105. * @brief put oss object from buffer
  106. * @param[in] options the oss request options
  107. * @param[in] bucket the oss bucket name
  108. * @param[in] object the oss object name
  109. * @param[in] buffer the buffer containing object content
  110. * @param[in] headers the headers for request
  111. * @param[out] resp_headers oss server response headers
  112. * @return aos_status_t, code is 2xx success, other failure
  113. */
  114. aos_status_t *oss_put_object_from_buffer(const oss_request_options_t *options,
  115. const aos_string_t *bucket,
  116. const aos_string_t *object,
  117. aos_list_t *buffer,
  118. aos_table_t *headers,
  119. aos_table_t **resp_headers);
  120. /*
  121. * @brief put oss object from file
  122. * @param[in] options the oss request options
  123. * @param[in] bucket the oss bucket name
  124. * @param[in] object the oss object name
  125. * @param[in] filename the filename to put
  126. * @param[in] headers the headers for request
  127. * @param[out] resp_headers oss server response headers
  128. * @return aos_status_t, code is 2xx success, other failure
  129. */
  130. aos_status_t *oss_put_object_from_file(const oss_request_options_t *options,
  131. const aos_string_t *bucket,
  132. const aos_string_t *object,
  133. const aos_string_t *filename,
  134. aos_table_t *headers,
  135. aos_table_t **resp_headers);
  136. /*
  137. * @brief put oss object from buffer
  138. * @param[in] options the oss request options
  139. * @param[in] bucket the oss bucket name
  140. * @param[in] object the oss object name
  141. * @param[in] buffer the buffer containing object content
  142. * @param[in] headers the headers for request
  143. * @param[in] params the params for request
  144. * @param[in] progress_callback the progress callback function
  145. * @param[out] resp_headers oss server response headers
  146. * @param[out] resp_body oss server response body
  147. * @return aos_status_t, code is 2xx success, other failure
  148. */
  149. aos_status_t *oss_do_put_object_from_buffer(const oss_request_options_t *options,
  150. const aos_string_t *bucket,
  151. const aos_string_t *object,
  152. aos_list_t *buffer,
  153. aos_table_t *headers,
  154. aos_table_t *params,
  155. oss_progress_callback progress_callback,
  156. aos_table_t **resp_headers,
  157. aos_list_t *resp_body);
  158. /*
  159. * @brief put oss object from file
  160. * @param[in] options the oss request options
  161. * @param[in] bucket the oss bucket name
  162. * @param[in] object the oss object name
  163. * @param[in] filename the filename to put
  164. * @param[in] headers the headers for request
  165. * @param[in] params the params for request
  166. * @param[in] progress_callback the progress callback function
  167. * @param[out] resp_headers oss server response headers
  168. * @param[out] resp_body oss server response body
  169. * @return aos_status_t, code is 2xx success, other failure
  170. */
  171. aos_status_t *oss_do_put_object_from_file(const oss_request_options_t *options,
  172. const aos_string_t *bucket,
  173. const aos_string_t *object,
  174. const aos_string_t *filename,
  175. aos_table_t *headers,
  176. aos_table_t *params,
  177. oss_progress_callback progress_callback,
  178. aos_table_t **resp_headers,
  179. aos_list_t *resp_body);
  180. /*
  181. * @brief get oss object to buffer
  182. * @param[in] options the oss request options
  183. * @param[in] bucket the oss bucket name
  184. * @param[in] object the oss object name
  185. * @param[in] headers the headers for request
  186. * @param[in] params the params for request
  187. * @param[out] buffer the buffer containing object content
  188. * @param[out] resp_headers oss server response headers
  189. * @return aos_status_t, code is 2xx success, other failure
  190. */
  191. aos_status_t *oss_get_object_to_buffer(const oss_request_options_t *options,
  192. const aos_string_t *bucket,
  193. const aos_string_t *object,
  194. aos_table_t *headers,
  195. aos_table_t *params,
  196. aos_list_t *buffer,
  197. aos_table_t **resp_headers);
  198. /*
  199. * @brief get oss object to buffer
  200. * @param[in] options the oss request options
  201. * @param[in] bucket the oss bucket name
  202. * @param[in] object the oss object name
  203. * @param[in] headers the headers for request
  204. * @param[in] params the params for request
  205. * @param[in] progress_callback the progress callback function
  206. * @param[out] buffer the buffer containing object content
  207. * @param[out] resp_headers oss server response headers
  208. * @return aos_status_t, code is 2xx success, other failure
  209. */
  210. aos_status_t *oss_do_get_object_to_buffer(const oss_request_options_t *options,
  211. const aos_string_t *bucket,
  212. const aos_string_t *object,
  213. aos_table_t *headers,
  214. aos_table_t *params,
  215. aos_list_t *buffer,
  216. oss_progress_callback progress_callback,
  217. aos_table_t **resp_headers);
  218. /*
  219. * @brief get oss object to file
  220. * @param[in] options the oss request options
  221. * @param[in] bucket the oss bucket name
  222. * @param[in] object the oss object name
  223. * @param[in] headers the headers for request
  224. * @param[in] params the params for request
  225. * @param[in] filename the filename storing object content
  226. * @param[out] resp_headers oss server response headers
  227. * @return aos_status_t, code is 2xx success, other failure
  228. */
  229. aos_status_t *oss_get_object_to_file(const oss_request_options_t *options,
  230. const aos_string_t *bucket,
  231. const aos_string_t *object,
  232. aos_table_t *headers,
  233. aos_table_t *params,
  234. aos_string_t *filename,
  235. aos_table_t **resp_headers);
  236. /*
  237. * @brief get oss object to file
  238. * @param[in] options the oss request options
  239. * @param[in] bucket the oss bucket name
  240. * @param[in] object the oss object name
  241. * @param[in] headers the headers for request
  242. * @param[in] params the params for request
  243. * @param[in] filename the filename storing object content
  244. * @param[in] progress_callback the progress callback function
  245. * @param[out] resp_headers oss server response headers
  246. * @return aos_status_t, code is 2xx success, other failure
  247. */
  248. aos_status_t *oss_do_get_object_to_file(const oss_request_options_t *options,
  249. const aos_string_t *bucket,
  250. const aos_string_t *object,
  251. aos_table_t *headers,
  252. aos_table_t *params,
  253. aos_string_t *filename,
  254. oss_progress_callback progress_callback,
  255. aos_table_t **resp_headers);
  256. /*
  257. * @brief head oss object
  258. * @param[in] options the oss request options
  259. * @param[in] bucket the oss bucket name
  260. * @param[in] object the oss object name
  261. * @param[in] headers the headers for request
  262. * @param[out] resp_headers oss server response headers containing object meta
  263. * @return aos_status_t, code is 2xx success, other failure
  264. */
  265. aos_status_t *oss_head_object(const oss_request_options_t *options,
  266. const aos_string_t *bucket,
  267. const aos_string_t *object,
  268. aos_table_t *headers,
  269. aos_table_t **resp_headers);
  270. /*
  271. * @brief delete oss object
  272. * @param[in] options the oss request options
  273. * @param[in] bucket the oss bucket name
  274. * @param[in] object the oss object name
  275. * @param[out] resp_headers oss server response headers
  276. * @return aos_status_t, code is 2xx success, other failure
  277. */
  278. aos_status_t *oss_delete_object(const oss_request_options_t *options,
  279. const aos_string_t *bucket,
  280. const aos_string_t *object,
  281. aos_table_t **resp_headers);
  282. /*
  283. * @brief delete oss objects
  284. * @param[in] options the oss request options
  285. * @param[in] bucket the oss bucket name
  286. * @param[in] object_list the oss object list name
  287. * @param[in] is_quiet is quiet or verbose
  288. * @param[out] resp_headers oss server response headers
  289. * @param[out] deleted_object_list deleted object list
  290. * @return aos_status_t, code is 2xx success, other failure
  291. */
  292. aos_status_t *oss_delete_objects(const oss_request_options_t *options,
  293. const aos_string_t *bucket,
  294. aos_list_t *object_list,
  295. int is_quiet,
  296. aos_table_t **resp_headers,
  297. aos_list_t *deleted_object_list);
  298. /*
  299. * @brief delete oss objects by prefix
  300. * @param[in] options the oss request options
  301. * @param[in] bucket the oss bucket name
  302. * @param[in] prefix prefix of delete objects
  303. * @return aos_status_t, code is 2xx success, other failure
  304. */
  305. aos_status_t *oss_delete_objects_by_prefix(oss_request_options_t *options,
  306. const aos_string_t *bucket,
  307. const aos_string_t *prefix);
  308. /*
  309. * @brief copy oss objects
  310. * @param[in] options the oss request options
  311. * @param[in] source_bucket the oss source bucket name
  312. * @param[in] object_list the oss source object list name
  313. * @param[in] dest_bucket the oss dest bucket name
  314. * @param[in] dest_list the oss dest object list name
  315. * @param[in] headers the headers for request
  316. * @param[out] resp_headers oss server response headers
  317. * @return aos_status_t, code is 2xx success, other failure
  318. */
  319. aos_status_t *oss_copy_object(const oss_request_options_t *options,
  320. const aos_string_t *source_bucket,
  321. const aos_string_t *source_object,
  322. const aos_string_t *dest_bucket,
  323. const aos_string_t *dest_object,
  324. aos_table_t *headers,
  325. aos_table_t **resp_headers);
  326. /*
  327. * @brief append oss object from buffer
  328. * @param[in] options the oss request options
  329. * @param[in] bucket the oss bucket name
  330. * @param[in] object the oss object name
  331. * @param[in] position the start position append
  332. * @param[in] buffer the buffer containing object content
  333. * @param[in] headers the headers for request
  334. * @param[out] resp_headers oss server response headers
  335. * @return aos_status_t, code is 2xx success, other failure
  336. */
  337. aos_status_t *oss_append_object_from_buffer(const oss_request_options_t *options,
  338. const aos_string_t *bucket,
  339. const aos_string_t *object,
  340. int64_t position,
  341. aos_list_t *buffer,
  342. aos_table_t *headers,
  343. aos_table_t **resp_headers);
  344. /*
  345. * @brief append oss object from buffer
  346. * @param[in] options the oss request options
  347. * @param[in] bucket the oss bucket name
  348. * @param[in] object the oss object name
  349. * @param[in] position the start position append
  350. * @param[in] init_crc the initial crc value
  351. * @param[in] buffer the buffer containing object content
  352. * @param[in] headers the headers for request
  353. * @param[in] params the params for request
  354. * @param[in] progress_callback the progress callback function
  355. * @param[out] resp_headers oss server response headers
  356. * @param[out] resp_body oss server response body
  357. * @return aos_status_t, code is 2xx success, other failure
  358. */
  359. aos_status_t *oss_do_append_object_from_buffer(const oss_request_options_t *options,
  360. const aos_string_t *bucket,
  361. const aos_string_t *object,
  362. int64_t position,
  363. uint64_t init_crc,
  364. aos_list_t *buffer,
  365. aos_table_t *headers,
  366. aos_table_t *params,
  367. oss_progress_callback progress_callback,
  368. aos_table_t **resp_headers,
  369. aos_list_t *resp_body);
  370. /*
  371. * @brief append oss object from file
  372. * @param[in] options the oss request options
  373. * @param[in] bucket the oss bucket name
  374. * @param[in] object the oss object name
  375. * @param[in] position the start position append
  376. * @param[in] append_file the file containing appending content
  377. * @param[in] headers the headers for request
  378. * @param[out] resp_headers oss server response headers
  379. * @return aos_status_t, code is 2xx success, other failure
  380. */
  381. aos_status_t *oss_append_object_from_file(const oss_request_options_t *options,
  382. const aos_string_t *bucket,
  383. const aos_string_t *object,
  384. int64_t position,
  385. const aos_string_t *append_file,
  386. aos_table_t *headers,
  387. aos_table_t **resp_headers);
  388. /*
  389. * @brief append oss object from file
  390. * @param[in] options the oss request options
  391. * @param[in] bucket the oss bucket name
  392. * @param[in] object the oss object name
  393. * @param[in] position the start position append
  394. * @param[in] init_crc the initial crc value
  395. * @param[in] append_file the file containing appending content
  396. * @param[in] headers the headers for request
  397. * @param[in] params the params for request
  398. * @param[in] progress_callback the progress callback function
  399. * @param[out] resp_headers oss server response headers
  400. * @param[out] resp_body oss server response body
  401. * @return aos_status_t, code is 2xx success, other failure
  402. */
  403. aos_status_t *oss_do_append_object_from_file(const oss_request_options_t *options,
  404. const aos_string_t *bucket,
  405. const aos_string_t *object,
  406. int64_t position,
  407. uint64_t init_crc,
  408. const aos_string_t *append_file,
  409. aos_table_t *headers,
  410. aos_table_t *params,
  411. oss_progress_callback progress_callback,
  412. aos_table_t **resp_headers,
  413. aos_list_t *resp_body);
  414. /*
  415. * @brief gen signed url for oss object api
  416. * @param[in] options the oss request options
  417. * @param[in] bucket the oss bucket name
  418. * @param[in] object the oss object name
  419. * @param[in] expires the end expire time for signed url
  420. * @param[in] req the aos http request
  421. * @return signed url, non-NULL success, NULL failure
  422. */
  423. char *oss_gen_signed_url(const oss_request_options_t *options,
  424. const aos_string_t *bucket,
  425. const aos_string_t *object,
  426. int64_t expires,
  427. aos_http_request_t *req);
  428. /*
  429. * @brief oss put object from buffer using signed url
  430. * @param[in] options the oss request options
  431. * @param[in] signed_url the signed url for put object
  432. * @param[in] buffer the buffer containing object content
  433. * @param[in] headers the headers for request
  434. * @param[out] resp_headers oss server response headers
  435. * @return aos_status_t, code is 2xx success, other failure
  436. */
  437. aos_status_t *oss_put_object_from_buffer_by_url(const oss_request_options_t *options,
  438. const aos_string_t *signed_url,
  439. aos_list_t *buffer,
  440. aos_table_t *headers,
  441. aos_table_t **resp_headers);
  442. /*
  443. * @brief oss put object from file using signed url
  444. * @param[in] options the oss request options
  445. * @param[in] signed_url the signed url for put object
  446. * @param[in] filename the filename containing object content
  447. * @param[in] headers the headers for request
  448. * @param[out] resp_headers oss server response headers
  449. * @return aos_status_t, code is 2xx success, other failure
  450. */
  451. aos_status_t *oss_put_object_from_file_by_url(const oss_request_options_t *options,
  452. const aos_string_t *signed_url,
  453. aos_string_t *filename,
  454. aos_table_t *headers,
  455. aos_table_t **resp_headers);
  456. /*
  457. * @brief oss get object to buffer using signed url
  458. * @param[in] options the oss request options
  459. * @param[in] signed_url the signed url for put object
  460. * @param[in] buffer the buffer containing object content
  461. * @param[in] headers the headers for request
  462. * @param[in] params the params for request
  463. * @param[out] resp_headers oss server response headers
  464. * @return aos_status_t, code is 2xx success, other failure
  465. */
  466. aos_status_t *oss_get_object_to_buffer_by_url(const oss_request_options_t *options,
  467. const aos_string_t *signed_url,
  468. aos_table_t *headers,
  469. aos_table_t *params,
  470. aos_list_t *buffer,
  471. aos_table_t **resp_headers);
  472. /*
  473. * @brief oss get object to file using signed url
  474. * @param[in] options the oss request options
  475. * @param[in] signed_url the signed url for put object
  476. * @param[in] headers the headers for request
  477. * @param[in] params the params for request
  478. * @param[in] filename the filename containing object content
  479. * @param[out] resp_headers oss server response headers
  480. * @return aos_status_t, code is 2xx success, other failure
  481. */
  482. aos_status_t *oss_get_object_to_file_by_url(const oss_request_options_t *options,
  483. const aos_string_t *signed_url,
  484. aos_table_t *headers,
  485. aos_table_t *params,
  486. aos_string_t *filename,
  487. aos_table_t **resp_headers);
  488. /*
  489. * @brief oss head object using signed url
  490. * @param[in] options the oss request options
  491. * @param[in] signed_url the signed url for put object
  492. * @param[in] headers the headers for request
  493. * @param[out] resp_headers oss server response headers
  494. * @return aos_status_t, code is 2xx success, other failure
  495. */
  496. aos_status_t *oss_head_object_by_url(const oss_request_options_t *options,
  497. const aos_string_t *signed_url,
  498. aos_table_t *headers,
  499. aos_table_t **resp_headers);
  500. /*
  501. * @brief oss init multipart upload
  502. * @param[in] options the oss request options
  503. * @param[in] bucket the oss bucket name
  504. * @param[in] object the oss object name
  505. * @param[in] upload_id the upload id to upload if has
  506. * @param[in] headers the headers for request
  507. * @param[out] resp_headers oss server response headers
  508. * @return aos_status_t, code is 2xx success, other failure
  509. */
  510. aos_status_t *oss_init_multipart_upload(const oss_request_options_t *options,
  511. const aos_string_t *bucket,
  512. const aos_string_t *object,
  513. aos_string_t *upload_id,
  514. aos_table_t *headers,
  515. aos_table_t **resp_headers);
  516. /*
  517. * @brief oss upload part from buffer
  518. * @param[in] options the oss request options
  519. * @param[in] bucket the oss bucket name
  520. * @param[in] object the oss object name
  521. * @param[in] upload_id the upload id to upload if has
  522. * @param[in] part_num the upload part number
  523. * @param[in] buffer the buffer containing upload part content
  524. * @param[out] resp_headers oss server response headers
  525. * @return aos_status_t, code is 2xx success, other failure
  526. */
  527. aos_status_t *oss_upload_part_from_buffer(const oss_request_options_t *options,
  528. const aos_string_t *bucket,
  529. const aos_string_t *object,
  530. const aos_string_t *upload_id,
  531. int part_num,
  532. aos_list_t *buffer,
  533. aos_table_t **resp_headers);
  534. /*
  535. * @brief oss upload part from buffer
  536. * @param[in] options the oss request options
  537. * @param[in] bucket the oss bucket name
  538. * @param[in] object the oss object name
  539. * @param[in] upload_id the upload id to upload if has
  540. * @param[in] part_num the upload part number
  541. * @param[in] buffer the buffer containing upload part content
  542. * @param[in] progress_callback the progress callback function
  543. * @param[in] headers the headers for request
  544. * @param[in] params the params for request
  545. * @param[out] resp_headers oss server response headers
  546. * @param[out] resp_body oss server response body
  547. * @return aos_status_t, code is 2xx success, other failure
  548. */
  549. aos_status_t *oss_do_upload_part_from_buffer(const oss_request_options_t *options,
  550. const aos_string_t *bucket,
  551. const aos_string_t *object,
  552. const aos_string_t *upload_id,
  553. int part_num,
  554. aos_list_t *buffer,
  555. oss_progress_callback progress_callback,
  556. aos_table_t *headers,
  557. aos_table_t *params,
  558. aos_table_t **resp_headers,
  559. aos_list_t *resp_body);
  560. /*
  561. * @brief oss upload part from file
  562. * @param[in] options the oss request options
  563. * @param[in] bucket the oss bucket name
  564. * @param[in] object the oss object name
  565. * @param[in] upload_id the upload id to upload if has
  566. * @param[in] part_num the upload part number
  567. * @param[in] upload_file the file containing upload part content
  568. * @param[out] resp_headers oss server response headers
  569. * @return aos_status_t, code is 2xx success, other failure
  570. */
  571. aos_status_t *oss_upload_part_from_file(const oss_request_options_t *options,
  572. const aos_string_t *bucket,
  573. const aos_string_t *object,
  574. const aos_string_t *upload_id,
  575. int part_num,
  576. oss_upload_file_t *upload_file,
  577. aos_table_t **resp_headers);
  578. /*
  579. * @brief oss upload part from file
  580. * @param[in] options the oss request options
  581. * @param[in] bucket the oss bucket name
  582. * @param[in] object the oss object name
  583. * @param[in] upload_id the upload id to upload if has
  584. * @param[in] part_num the upload part number
  585. * @param[in] upload_file the file containing upload part content
  586. * @param[in] progress_callback the progress callback function
  587. * @param[in] headers the headers for request
  588. * @param[in] params the params for request
  589. * @param[out] resp_headers oss server response headers
  590. * @param[out] resp_body oss server response body
  591. * @return aos_status_t, code is 2xx success, other failure
  592. */
  593. aos_status_t *oss_do_upload_part_from_file(const oss_request_options_t *options,
  594. const aos_string_t *bucket,
  595. const aos_string_t *object,
  596. const aos_string_t *upload_id,
  597. int part_num,
  598. oss_upload_file_t *upload_file,
  599. oss_progress_callback progress_callback,
  600. aos_table_t *headers,
  601. aos_table_t *params,
  602. aos_table_t **resp_headers,
  603. aos_list_t *resp_body);
  604. /*
  605. * @brief oss abort multipart upload
  606. * @param[in] options the oss request options
  607. * @param[in] bucket the oss bucket name
  608. * @param[in] object the oss object name
  609. * @param[in] upload_id the upload id to upload if has
  610. * @param[out] resp_headers oss server response headers
  611. * @return aos_status_t, code is 2xx success, other failure
  612. */
  613. aos_status_t *oss_abort_multipart_upload(const oss_request_options_t *options,
  614. const aos_string_t *bucket,
  615. const aos_string_t *object,
  616. aos_string_t *upload_id,
  617. aos_table_t **resp_headers);
  618. /*
  619. * @brief oss complete multipart upload
  620. * @param[in] options the oss request options
  621. * @param[in] bucket the oss bucket name
  622. * @param[in] object the oss object name
  623. * @param[in] upload_id the upload id to upload if has
  624. * @param[in] part_list the uploaded part list to complete
  625. * @param[in] headers the headers for request
  626. * @param[out] resp_headers oss server response headers
  627. * @return aos_status_t, code is 2xx success, other failure
  628. */
  629. aos_status_t *oss_complete_multipart_upload(const oss_request_options_t *options,
  630. const aos_string_t *bucket,
  631. const aos_string_t *object,
  632. const aos_string_t *upload_id,
  633. aos_list_t *part_list,
  634. aos_table_t *headers,
  635. aos_table_t **resp_headers);
  636. /*
  637. * @brief oss complete multipart upload
  638. * @param[in] options the oss request options
  639. * @param[in] bucket the oss bucket name
  640. * @param[in] object the oss object name
  641. * @param[in] upload_id the upload id to upload if has
  642. * @param[in] part_list the uploaded part list to complete
  643. * @param[in] headers the headers for request
  644. * @param[in] params the params for request
  645. * @param[out] resp_headers oss server response headers
  646. * @param[out] resp_body oss server response body
  647. * @return aos_status_t, code is 2xx success, other failure
  648. */
  649. aos_status_t *oss_do_complete_multipart_upload(const oss_request_options_t *options,
  650. const aos_string_t *bucket,
  651. const aos_string_t *object,
  652. const aos_string_t *upload_id,
  653. aos_list_t *part_list,
  654. aos_table_t *headers,
  655. aos_table_t *params,
  656. aos_table_t **resp_headers,
  657. aos_list_t *resp_body);
  658. /*
  659. * @brief oss list upload part with specific upload_id for object
  660. * @param[in] options the oss request options
  661. * @param[in] bucket the oss bucket name
  662. * @param[in] object the oss object name
  663. * @param[in] upload_id the upload id to upload if has
  664. * @param[in] params the input list upload part parameters,
  665. incluing part_number_marker, max_ret
  666. * @param[out] params the output params,
  667. including next_part_number_marker, part_list, truncated
  668. * @param[out] resp_headers oss server response headers
  669. * @return aos_status_t, code is 2xx success, other failure
  670. */
  671. aos_status_t *oss_list_upload_part(const oss_request_options_t *options,
  672. const aos_string_t *bucket,
  673. const aos_string_t *object,
  674. const aos_string_t *upload_id,
  675. oss_list_upload_part_params_t *params,
  676. aos_table_t **resp_headers);
  677. /*
  678. * @brief oss list multipart upload for bucket
  679. * @param[in] options the oss request options
  680. * @param[in] bucket the oss bucket name
  681. * @param[in] params the input list multipart upload parameters
  682. * @param[out] params the output params including next_key_marker, next_upload_id_markert, upload_list etc
  683. * @param[out] resp_headers oss server response headers
  684. * @return aos_status_t, code is 2xx success, other failure
  685. */
  686. aos_status_t *oss_list_multipart_upload(const oss_request_options_t *options,
  687. const aos_string_t *bucket,
  688. oss_list_multipart_upload_params_t *params,
  689. aos_table_t **resp_headers);
  690. /*
  691. * @brief oss copy large object using upload part copy
  692. * @param[in] options the oss request options
  693. * @param[in] paramsthe upload part copy parameters
  694. * @param[in] headers the headers for request
  695. * @param[out] resp_headers oss server response headers
  696. * @return aos_status_t, code is 2xx success, other failure
  697. */
  698. aos_status_t *oss_upload_part_copy(const oss_request_options_t *options,
  699. oss_upload_part_copy_params_t *params,
  700. aos_table_t *headers,
  701. aos_table_t **resp_headers);
  702. /*
  703. * @brief oss upload file using multipart upload
  704. * @param[in] options the oss request options
  705. * @param[in] bucket the oss bucket name
  706. * @param[in] object the oss object name
  707. * @param[in] upload_id the upload id to upload if has
  708. * @param[in] filename the filename containing object content
  709. * @param[in] part_size the part size for multipart upload
  710. * @param[in] headers the headers for request
  711. * @return aos_status_t, code is 2xx success, other failure
  712. */
  713. aos_status_t *oss_upload_file(oss_request_options_t *options,
  714. const aos_string_t *bucket,
  715. const aos_string_t *object,
  716. aos_string_t *upload_id,
  717. aos_string_t *filename,
  718. int64_t part_size,
  719. aos_table_t *headers);
  720. /*
  721. * @brief oss upload file with mulit-thread and resumable
  722. * @param[in] options the oss request options
  723. * @param[in] bucket the oss bucket name
  724. * @param[in] object the oss object name
  725. * @param[in] filename the filename containing object content
  726. * @param[in] headers the headers for request
  727. * @param[in] params the params for request
  728. * @param[in] clt_params the control params of upload
  729. * @param[in] progress_callback the progress callback function
  730. * @param[out] resp_headers oss server response headers
  731. * @param[out] resp_body oss server response body
  732. * @return aos_status_t, code is 2xx success, other failure
  733. */
  734. aos_status_t *oss_resumable_upload_file(oss_request_options_t *options,
  735. aos_string_t *bucket,
  736. aos_string_t *object,
  737. aos_string_t *filepath,
  738. aos_table_t *headers,
  739. aos_table_t *params,
  740. oss_resumable_clt_params_t *clt_params,
  741. oss_progress_callback progress_callback,
  742. aos_table_t **resp_headers,
  743. aos_list_t *resp_body);
  744. /*
  745. * @brief oss create live channel
  746. * @param[in] options the oss request options
  747. * @param[in] bucket the oss bucket name
  748. * @param[in] config the oss live channel configuration
  749. * @param[in] publish_url_list the publish url list
  750. * @param[in] play_url_list the play url list
  751. * @param[out] resp_headers oss server response headers
  752. * @return aos_status_t, code is 2xx success, other failure
  753. */
  754. aos_status_t *oss_create_live_channel(const oss_request_options_t *options,
  755. const aos_string_t *bucket,
  756. oss_live_channel_configuration_t *config,
  757. aos_list_t *publish_url_list,
  758. aos_list_t *play_url_list,
  759. aos_table_t **resp_headers);
  760. /*
  761. * @brief oss set live channel status
  762. * @param[in] options the oss request options
  763. * @param[in] bucket the oss bucket name
  764. * @param[in] live_channel the oss live channel name
  765. * @param[in] live_channel_status the oss live channel status, enabled or disabled
  766. * @param[out] resp_headers oss server response headers
  767. * @return aos_status_t, code is 2xx success, other failure
  768. */
  769. aos_status_t *oss_put_live_channel_status(const oss_request_options_t *options,
  770. const aos_string_t *bucket,
  771. const aos_string_t *live_channel,
  772. const aos_string_t *live_channel_status,
  773. aos_table_t **resp_headers);
  774. /*
  775. * @brief oss get live channel information
  776. * @param[in] options the oss request options
  777. * @param[in] bucket the oss bucket name
  778. * @param[in] live_channel the oss live channel name
  779. * @param[out] info the oss live channel information
  780. * @param[out] resp_headers oss server response headers
  781. * @return aos_status_t, code is 2xx success, other failure
  782. */
  783. aos_status_t *oss_get_live_channel_info(const oss_request_options_t *options,
  784. const aos_string_t *bucket,
  785. const aos_string_t *live_channel,
  786. oss_live_channel_configuration_t *info,
  787. aos_table_t **resp_headers);
  788. /*
  789. * @brief oss get live channel stat
  790. * @param[in] options the oss request options
  791. * @param[in] bucket the oss bucket name
  792. * @param[in] live_channel the oss live channel name
  793. * @param[out] stat the oss live channel stat
  794. * @param[out] resp_headers oss server response headers
  795. * @return aos_status_t, code is 2xx success, other failure
  796. */
  797. aos_status_t *oss_get_live_channel_stat(const oss_request_options_t *options,
  798. const aos_string_t *bucket,
  799. const aos_string_t *live_channel,
  800. oss_live_channel_stat_t *stat,
  801. aos_table_t **resp_headers);
  802. /*
  803. * @brief delete oss live channel
  804. * @param[in] options the oss request options
  805. * @param[in] bucket the oss bucket name
  806. * @param[in] live_channel the oss live channel name
  807. * @param[out] resp_headers oss server response headers
  808. * @return aos_status_t, code is 2xx success, other failure
  809. */
  810. aos_status_t *oss_delete_live_channel(const oss_request_options_t *options,
  811. const aos_string_t *bucket,
  812. const aos_string_t *live_channel,
  813. aos_table_t **resp_headers);
  814. /*
  815. * @brief list oss live channels
  816. * @param[in] options the oss request options
  817. * @param[in] bucket the oss bucket name
  818. * @param[in] params input params for list live channel request,
  819. including prefix, marker, max_key
  820. * @param[out] params output params for list object response,
  821. including truncated, next_marker, live channel list
  822. * @param[out] resp_headers oss server response headers
  823. * @return aos_status_t, code is 2xx success, other failure
  824. */
  825. aos_status_t *oss_list_live_channel(const oss_request_options_t *options,
  826. const aos_string_t *bucket,
  827. oss_list_live_channel_params_t *params,
  828. aos_table_t **resp_headers);
  829. /*
  830. * @brief oss get live record history of live channel
  831. * @param[in] options the oss request options
  832. * @param[in] bucket the oss bucket name
  833. * @param[in] live_channel the oss live channel name
  834. * @param[out] live_record_list the oss live records of live channel
  835. * @param[out] resp_headers oss server response headers
  836. * @return aos_status_t, code is 2xx success, other failure
  837. */
  838. aos_status_t *oss_get_live_channel_history(const oss_request_options_t *options,
  839. const aos_string_t *bucket,
  840. const aos_string_t *live_channel,
  841. aos_list_t *live_record_list,
  842. aos_table_t **resp_headers);
  843. /*
  844. * @brief generate vod play list for a period of time
  845. * @param[in] options the oss request options
  846. * @param[in] bucket the oss bucket name
  847. * @param[in] live_channel the oss live channel name
  848. * @param[in] play_list_name the oss live channel play list name
  849. * @param[in] start_time the start epoch time of play list, such as 1459922368
  850. * @param[in] end_time the end epoch time of play list, such as 1459922563
  851. * @param[out] resp_headers oss server response headers
  852. * @return aos_status_t, code is 2xx success, other failure
  853. */
  854. aos_status_t *oss_gen_vod_play_list(const oss_request_options_t *options,
  855. const aos_string_t *bucket,
  856. const aos_string_t *live_channel,
  857. const aos_string_t *play_list_name,
  858. const int64_t start_time,
  859. const int64_t end_time,
  860. aos_table_t **resp_headers);
  861. /*
  862. * @brief gen signed url for put rtmp stream
  863. * @param[in] options the oss request options
  864. * @param[in] bucket the oss bucket name
  865. * @param[in] live_channel the oss live channel name
  866. * @param[in] play_list_name the oss live channel play list name
  867. * @param[in] expires the end expire time for signed url
  868. * @return signed url, non-NULL success, NULL failure
  869. */
  870. char *oss_gen_rtmp_signed_url(const oss_request_options_t *options,
  871. const aos_string_t *bucket,
  872. const aos_string_t *live_channel,
  873. const aos_string_t *play_list_name,
  874. const int64_t expires);
  875. OSS_CPP_END
  876. #endif