再開可能アップロードでは、オブジェクトは複数のパーツに分割され、別々にアップロードされます。 すべてのパーツがアップロードされると、各パーツは完全オブジェクトにマージされてアップロードが完了します。
現在のアップロードの進行状況は、アップロード中にチェックポイントファイルに記録されます。 処理中にパーツのアップロードに失敗した場合、オブジェクトはアップロードの再開時にチェックポイントファイルに記録されている再開可能なアップロードパーツからアップロードされます。 アップロードが完了すると、チェックポイントは削除されます。
再開可能アップロードを実現するには、oss_resumable_clt_params_t
メソッドを使用します。 このメソッドで使用される一般的なパラメーターは次のとおりです。
パラメーター | 説明 |
---|---|
thread_num | 同時スレッド数。既定では 1 です。 |
enable_checkpoint | 再開可能アップロードを有効にするかどうか。既定では無効になっています。 |
partSize | パーツサイズ。100 KB から 5 GB の範囲です。 |
checkpoint_path | チェックポイントファイルが保存されているパス。既定では "{upload_file_path} .cp" です。 |
次のコードを実行することで、再開可能アップロードを実行します。
#include "oss_api.h"
#include "aos_http_io.h"
const char *endpoint = "<yourEndpoint>";
const char *access_key_id = "<yourAccessKeyId>";
const char *access_key_secret = "<yourAccessKeySecret>";
const char *bucket_name = "<yourBucketName>";
const char *object_name = "<yourObjectName>";
const char *local_filename = "<yourLocalFilename>";
void init_options(oss_request_options_t *options)
{
options->config = oss_config_create(options->pool);
/* Use a char* string to initialize the aos_string_t type. */
aos_str_set(&options->config->endpoint, endpoint);
aos_str_set(&options->config->access_key_id, access_key_id);
aos_str_set(&options->config->access_key_secret, access_key_secret);
/* Deternube whether the CNAME is used. 0 indicates that it is not used. */
options->config->is_cname = 0;
/* Used to configure network parameters, such as timeout. */
options->ctl = aos_http_controller_create(options->pool, 0);
}
int main(int argc, char *argv[])
{
/* Call the aos_http_io_initialize method in main() to initialize global resources, such as networks and memories. */
if (aos_http_io_initialize(NULL, 0) ! = AOSE_OK) {
exit(1);
}
/* Memory pool used to manage memories, which is equivalent to apr_pool_t. The implementation code is included in the apr library. */
aos_pool_t *pool;
/* Re-create a new memory pool. The second parameter is NULL, indicating that it does not inherit from any other memory pools. */
aos_pool_create(&pool, NULL);
/* Create and initialize options. This parameter mainly includes global configuration information, such as endpoint, access_key_id, acces_key_secret, is_cname, and curl. */
oss_request_options_t *oss_client_options;
/* Allocate memories in the memory pool to options. */
oss_client_options = oss_request_options_create(pool);
/* Use oss_client_options to initialize client options */
init_options(oss_client_options);
/* Initialization parameters. */
aos_string_t bucket;
aos_string_t object;
aos_string_t file;
aos_list_t resp_body;
aos_table_t *headers = NULL;
aos_table_t *resp_headers = NULL;
aos_status_t *resp_status = NULL;
oss_resumable_clt_params_t *clt_params;
aos_str_set(&bucket, bucket_name);
aos_str_set(&object, object_name);
aos_str_set(&file, local_filename);
aos_list_init(&resp_body);
/* Resumable upload. */
clt_params = oss_create_resumable_clt_params_content(pool, 1024 * 100, 3, AOS_TRUE, NULL);
resp_status = oss_resumable_upload_file(oss_client_options, &bucket, &object, &file, headers, NULL, clt_params, NULL, &resp_headers, &resp_body);
if (aos_status_is_ok(resp_status)) {
printf("resumable upload succeeded\n");
} else {
printf("resumable upload failed\n");
}
/* Release the memory pool, that is, memories allocated to resources during the request. */
aos_pool_destroy(pool);
/* Release allocated global resources. */
aos_http_io_deinitialize();
return 0;
}