oss_resumable.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. #ifndef LIBOSS_RESUMABLE_H
  2. #define LIBOSS_RESUMABLE_H
  3. #include "aos_define.h"
  4. #include "apr_atomic.h"
  5. #include "apr_queue.h"
  6. #include "apr_thread_pool.h"
  7. AOS_CPP_START
  8. #define OSS_CP_UPLOAD 1
  9. #define OSS_CP_DOWNLOAD 2
  10. typedef struct {
  11. int32_t index; // the index of part, start from 0
  12. int64_t offset; // the offset point of part
  13. int64_t size; // the size of part
  14. int completed; // AOS_TRUE completed, AOS_FALSE uncompleted
  15. aos_string_t etag; // the etag of part, for upload
  16. } oss_checkpoint_part_t;
  17. typedef struct {
  18. aos_string_t md5; // the md5 of checkout content
  19. int cp_type; // 1 upload, 2 download
  20. apr_file_t *thefile; // the handle of checkpoint file
  21. aos_string_t file_path; // local file path
  22. int64_t file_size; // local file size, for upload
  23. apr_time_t file_last_modified; // local file last modified time, for upload
  24. aos_string_t file_md5; // the md5 of the local file content, for upload, reserved
  25. aos_string_t object_name; // object name
  26. int64_t object_size; // object size, for download
  27. aos_string_t object_last_modified; // object last modified time, for download
  28. aos_string_t object_etag; // object etag, for download
  29. aos_string_t upload_id; // upload id
  30. int part_num; // the total number of parts
  31. int64_t part_size; // the part size, byte
  32. oss_checkpoint_part_t *parts; // the parts of local or object, from 0
  33. } oss_checkpoint_t;
  34. typedef struct {
  35. oss_checkpoint_part_t *part;
  36. aos_status_t *s;
  37. aos_string_t etag;
  38. } oss_part_task_result_t;
  39. typedef struct {
  40. oss_request_options_t options;
  41. aos_string_t *bucket;
  42. aos_string_t *object;
  43. aos_string_t *upload_id;
  44. aos_string_t *filepath;
  45. oss_checkpoint_part_t *part;
  46. oss_part_task_result_t *result;
  47. apr_uint32_t *launched; // the number of launched part tasks, use atomic
  48. apr_uint32_t *failed; // the number of failed part tasks, use atomic
  49. apr_uint32_t *completed; // the number of completed part tasks, use atomic
  50. apr_queue_t *failed_parts; // the queue of failed parts tasks, thread safe
  51. apr_queue_t *completed_parts; // the queue of completed parts tasks, thread safe
  52. } oss_upload_thread_params_t;
  53. int32_t oss_get_thread_num(oss_resumable_clt_params_t *clt_params);
  54. void oss_get_checkpoint_path(oss_resumable_clt_params_t *clt_params, const aos_string_t *filepath,
  55. aos_pool_t *pool, aos_string_t *checkpoint_path);
  56. int oss_get_file_info(const aos_string_t *filepath, aos_pool_t *pool, apr_finfo_t *finfo);
  57. int oss_does_file_exist(const aos_string_t *filepath, aos_pool_t *pool);
  58. int oss_open_checkpoint_file(aos_pool_t *pool, aos_string_t *checkpoint_path, oss_checkpoint_t *checkpoint);
  59. int oss_open_checkpoint_file(aos_pool_t *pool, aos_string_t *checkpoint_path, oss_checkpoint_t *checkpoint);
  60. int oss_get_part_num(int64_t file_size, int64_t part_size);
  61. void oss_build_parts(int64_t file_size, int64_t part_size, oss_checkpoint_part_t *parts);
  62. void oss_build_thread_params(oss_upload_thread_params_t *thr_params, int part_num,
  63. aos_pool_t *parent_pool, oss_request_options_t *options,
  64. aos_string_t *bucket, aos_string_t *object, aos_string_t *filepath,
  65. aos_string_t *upload_id, oss_checkpoint_part_t *parts,
  66. oss_part_task_result_t *result);
  67. void oss_destroy_thread_pool(oss_upload_thread_params_t *thr_params, int part_num);
  68. void oss_set_task_tracker(oss_upload_thread_params_t *thr_params, int part_num,
  69. apr_uint32_t *launched, apr_uint32_t *failed, apr_uint32_t *completed,
  70. apr_queue_t *failed_parts, apr_queue_t *completed_parts);
  71. int oss_verify_checkpoint_md5(aos_pool_t *pool, const oss_checkpoint_t *checkpoint);
  72. void oss_build_upload_checkpoint(aos_pool_t *pool, oss_checkpoint_t *checkpoint, aos_string_t *file_path,
  73. apr_finfo_t *finfo, aos_string_t *upload_id, int64_t part_size);
  74. int oss_dump_checkpoint(aos_pool_t *pool, const oss_checkpoint_t *checkpoint);
  75. int oss_load_checkpoint(aos_pool_t *pool, const aos_string_t *filepath, oss_checkpoint_t *checkpoint);
  76. int oss_is_upload_checkpoint_valid(aos_pool_t *pool, oss_checkpoint_t *checkpoint, apr_finfo_t *finfo);
  77. void oss_update_checkpoint(aos_pool_t *pool, oss_checkpoint_t *checkpoint, int32_t part_index, aos_string_t *etag);
  78. void oss_get_checkpoint_undo_parts(oss_checkpoint_t *checkpoint, int *part_num, oss_checkpoint_part_t *parts);
  79. void * APR_THREAD_FUNC upload_part(apr_thread_t *thd, void *data);
  80. aos_status_t *oss_resumable_upload_file_without_cp(oss_request_options_t *options,
  81. aos_string_t *bucket,
  82. aos_string_t *object,
  83. aos_string_t *filepath,
  84. aos_table_t *headers,
  85. aos_table_t *params,
  86. int32_t thread_num,
  87. int64_t part_size,
  88. apr_finfo_t *finfo,
  89. oss_progress_callback progress_callback,
  90. aos_table_t **resp_headers,
  91. aos_list_t *resp_body);
  92. aos_status_t *oss_resumable_upload_file_with_cp(oss_request_options_t *options,
  93. aos_string_t *bucket,
  94. aos_string_t *object,
  95. aos_string_t *filepath,
  96. aos_table_t *headers,
  97. aos_table_t *params,
  98. int32_t thread_num,
  99. int64_t part_size,
  100. aos_string_t *checkpoint_path,
  101. apr_finfo_t *finfo,
  102. oss_progress_callback progress_callback,
  103. aos_table_t **resp_headers,
  104. aos_list_t *resp_body);
  105. AOS_CPP_END
  106. #endif