123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934 |
- #ifndef LIBOSS_API_H
- #define LIBOSS_API_H
- #include "aos_util.h"
- #include "aos_string.h"
- #include "aos_status.h"
- #include "oss_define.h"
- #include "oss_util.h"
- OSS_CPP_START
- /*
- * @brief create oss bucket
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] oss_acl the oss bucket acl
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_create_bucket(const oss_request_options_t *options,
- const aos_string_t *bucket,
- oss_acl_e oss_acl,
- aos_table_t **resp_headers);
- /*
- * @brief delete oss bucket
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_delete_bucket(const oss_request_options_t *options,
- const aos_string_t *bucket,
- aos_table_t **resp_headers);
- /*
- * @brief put oss bucket acl
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] oss_acl the oss bucket acl
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_bucket_acl(const oss_request_options_t *options,
- const aos_string_t *bucket,
- oss_acl_e oss_acl,
- aos_table_t **resp_headers);
- /*
- * @brief get oss bucket acl
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[out] oss_acl the oss bucket acl
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_bucket_acl(const oss_request_options_t *options,
- const aos_string_t *bucket,
- aos_string_t *oss_acl,
- aos_table_t **resp_headers);
- /*
- * @brief put oss bucket lifecycle
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] lifecycle_rule_list the oss bucket lifecycle list
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_bucket_lifecycle(const oss_request_options_t *options,
- const aos_string_t *bucket,
- aos_list_t *lifecycle_rule_list,
- aos_table_t **resp_headers);
- /*
- * @brief get oss bucket lifecycle
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[out] lifecycle_rule_list the oss bucket lifecycle list
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_bucket_lifecycle(const oss_request_options_t *options,
- const aos_string_t *bucket,
- aos_list_t *lifecycle_rule_list,
- aos_table_t **resp_headers);
- /*
- * @brief delete oss bucket lifecycle
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_delete_bucket_lifecycle(const oss_request_options_t *options,
- const aos_string_t *bucket,
- aos_table_t **resp_headers);
- /*
- * @brief list oss objects
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] params input params for list object request,
- including prefix, marker, delimiter, max_ret
- * @param[out] params output params for list object response,
- including truncated, next_marker, obje list
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_list_object(const oss_request_options_t *options,
- const aos_string_t *bucket,
- oss_list_object_params_t *params,
- aos_table_t **resp_headers);
- /*
- * @brief put oss object from buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] buffer the buffer containing object content
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_object_from_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_list_t *buffer,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief put oss object from file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] filename the filename to put
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_object_from_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *filename,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief put oss object from buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] buffer the buffer containing object content
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] progress_callback the progress callback function
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_put_object_from_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_list_t *buffer,
- aos_table_t *headers,
- aos_table_t *params,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief put oss object from file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] filename the filename to put
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] progress_callback the progress callback function
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_put_object_from_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *filename,
- aos_table_t *headers,
- aos_table_t *params,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief get oss object to buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[out] buffer the buffer containing object content
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_object_to_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_table_t *headers,
- aos_table_t *params,
- aos_list_t *buffer,
- aos_table_t **resp_headers);
- /*
- * @brief get oss object to buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] progress_callback the progress callback function
- * @param[out] buffer the buffer containing object content
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_get_object_to_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_table_t *headers,
- aos_table_t *params,
- aos_list_t *buffer,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers);
- /*
- * @brief get oss object to file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] filename the filename storing object content
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_object_to_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_table_t *headers,
- aos_table_t *params,
- aos_string_t *filename,
- aos_table_t **resp_headers);
- /*
- * @brief get oss object to file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] filename the filename storing object content
- * @param[in] progress_callback the progress callback function
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_get_object_to_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_table_t *headers,
- aos_table_t *params,
- aos_string_t *filename,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers);
- /*
- * @brief head oss object
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers containing object meta
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_head_object(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief delete oss object
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_delete_object(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_table_t **resp_headers);
- /*
- * @brief delete oss objects
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object_list the oss object list name
- * @param[in] is_quiet is quiet or verbose
- * @param[out] resp_headers oss server response headers
- * @param[out] deleted_object_list deleted object list
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_delete_objects(const oss_request_options_t *options,
- const aos_string_t *bucket,
- aos_list_t *object_list,
- int is_quiet,
- aos_table_t **resp_headers,
- aos_list_t *deleted_object_list);
- /*
- * @brief delete oss objects by prefix
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] prefix prefix of delete objects
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_delete_objects_by_prefix(oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *prefix);
- /*
- * @brief copy oss objects
- * @param[in] options the oss request options
- * @param[in] source_bucket the oss source bucket name
- * @param[in] object_list the oss source object list name
- * @param[in] dest_bucket the oss dest bucket name
- * @param[in] dest_list the oss dest object list name
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_copy_object(const oss_request_options_t *options,
- const aos_string_t *source_bucket,
- const aos_string_t *source_object,
- const aos_string_t *dest_bucket,
- const aos_string_t *dest_object,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief append oss object from buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] position the start position append
- * @param[in] buffer the buffer containing object content
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_append_object_from_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- int64_t position,
- aos_list_t *buffer,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief append oss object from buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] position the start position append
- * @param[in] init_crc the initial crc value
- * @param[in] buffer the buffer containing object content
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] progress_callback the progress callback function
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_append_object_from_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- int64_t position,
- uint64_t init_crc,
- aos_list_t *buffer,
- aos_table_t *headers,
- aos_table_t *params,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief append oss object from file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] position the start position append
- * @param[in] append_file the file containing appending content
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_append_object_from_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- int64_t position,
- const aos_string_t *append_file,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief append oss object from file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] position the start position append
- * @param[in] init_crc the initial crc value
- * @param[in] append_file the file containing appending content
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] progress_callback the progress callback function
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_append_object_from_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- int64_t position,
- uint64_t init_crc,
- const aos_string_t *append_file,
- aos_table_t *headers,
- aos_table_t *params,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief gen signed url for oss object api
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] expires the end expire time for signed url
- * @param[in] req the aos http request
- * @return signed url, non-NULL success, NULL failure
- */
- char *oss_gen_signed_url(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- int64_t expires,
- aos_http_request_t *req);
- /*
- * @brief oss put object from buffer using signed url
- * @param[in] options the oss request options
- * @param[in] signed_url the signed url for put object
- * @param[in] buffer the buffer containing object content
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_object_from_buffer_by_url(const oss_request_options_t *options,
- const aos_string_t *signed_url,
- aos_list_t *buffer,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief oss put object from file using signed url
- * @param[in] options the oss request options
- * @param[in] signed_url the signed url for put object
- * @param[in] filename the filename containing object content
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_object_from_file_by_url(const oss_request_options_t *options,
- const aos_string_t *signed_url,
- aos_string_t *filename,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief oss get object to buffer using signed url
- * @param[in] options the oss request options
- * @param[in] signed_url the signed url for put object
- * @param[in] buffer the buffer containing object content
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_object_to_buffer_by_url(const oss_request_options_t *options,
- const aos_string_t *signed_url,
- aos_table_t *headers,
- aos_table_t *params,
- aos_list_t *buffer,
- aos_table_t **resp_headers);
- /*
- * @brief oss get object to file using signed url
- * @param[in] options the oss request options
- * @param[in] signed_url the signed url for put object
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] filename the filename containing object content
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_object_to_file_by_url(const oss_request_options_t *options,
- const aos_string_t *signed_url,
- aos_table_t *headers,
- aos_table_t *params,
- aos_string_t *filename,
- aos_table_t **resp_headers);
- /*
- * @brief oss head object using signed url
- * @param[in] options the oss request options
- * @param[in] signed_url the signed url for put object
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_head_object_by_url(const oss_request_options_t *options,
- const aos_string_t *signed_url,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief oss init multipart upload
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_init_multipart_upload(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_string_t *upload_id,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief oss upload part from buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] part_num the upload part number
- * @param[in] buffer the buffer containing upload part content
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_upload_part_from_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- int part_num,
- aos_list_t *buffer,
- aos_table_t **resp_headers);
- /*
- * @brief oss upload part from buffer
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] part_num the upload part number
- * @param[in] buffer the buffer containing upload part content
- * @param[in] progress_callback the progress callback function
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_upload_part_from_buffer(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- int part_num,
- aos_list_t *buffer,
- oss_progress_callback progress_callback,
- aos_table_t *headers,
- aos_table_t *params,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief oss upload part from file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] part_num the upload part number
- * @param[in] upload_file the file containing upload part content
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_upload_part_from_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- int part_num,
- oss_upload_file_t *upload_file,
- aos_table_t **resp_headers);
- /*
- * @brief oss upload part from file
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] part_num the upload part number
- * @param[in] upload_file the file containing upload part content
- * @param[in] progress_callback the progress callback function
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_upload_part_from_file(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- int part_num,
- oss_upload_file_t *upload_file,
- oss_progress_callback progress_callback,
- aos_table_t *headers,
- aos_table_t *params,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief oss abort multipart upload
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_abort_multipart_upload(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_string_t *upload_id,
- aos_table_t **resp_headers);
- /*
- * @brief oss complete multipart upload
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] part_list the uploaded part list to complete
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_complete_multipart_upload(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- aos_list_t *part_list,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief oss complete multipart upload
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] part_list the uploaded part list to complete
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_do_complete_multipart_upload(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- aos_list_t *part_list,
- aos_table_t *headers,
- aos_table_t *params,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief oss list upload part with specific upload_id for object
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] params the input list upload part parameters,
- incluing part_number_marker, max_ret
- * @param[out] params the output params,
- including next_part_number_marker, part_list, truncated
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_list_upload_part(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- const aos_string_t *upload_id,
- oss_list_upload_part_params_t *params,
- aos_table_t **resp_headers);
- /*
- * @brief oss list multipart upload for bucket
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] params the input list multipart upload parameters
- * @param[out] params the output params including next_key_marker, next_upload_id_markert, upload_list etc
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_list_multipart_upload(const oss_request_options_t *options,
- const aos_string_t *bucket,
- oss_list_multipart_upload_params_t *params,
- aos_table_t **resp_headers);
- /*
- * @brief oss copy large object using upload part copy
- * @param[in] options the oss request options
- * @param[in] paramsthe upload part copy parameters
- * @param[in] headers the headers for request
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_upload_part_copy(const oss_request_options_t *options,
- oss_upload_part_copy_params_t *params,
- aos_table_t *headers,
- aos_table_t **resp_headers);
- /*
- * @brief oss upload file using multipart upload
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] upload_id the upload id to upload if has
- * @param[in] filename the filename containing object content
- * @param[in] part_size the part size for multipart upload
- * @param[in] headers the headers for request
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_upload_file(oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *object,
- aos_string_t *upload_id,
- aos_string_t *filename,
- int64_t part_size,
- aos_table_t *headers);
- /*
- * @brief oss upload file with mulit-thread and resumable
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] object the oss object name
- * @param[in] filename the filename containing object content
- * @param[in] headers the headers for request
- * @param[in] params the params for request
- * @param[in] clt_params the control params of upload
- * @param[in] progress_callback the progress callback function
- * @param[out] resp_headers oss server response headers
- * @param[out] resp_body oss server response body
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_resumable_upload_file(oss_request_options_t *options,
- aos_string_t *bucket,
- aos_string_t *object,
- aos_string_t *filepath,
- aos_table_t *headers,
- aos_table_t *params,
- oss_resumable_clt_params_t *clt_params,
- oss_progress_callback progress_callback,
- aos_table_t **resp_headers,
- aos_list_t *resp_body);
- /*
- * @brief oss create live channel
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] config the oss live channel configuration
- * @param[in] publish_url_list the publish url list
- * @param[in] play_url_list the play url list
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_create_live_channel(const oss_request_options_t *options,
- const aos_string_t *bucket,
- oss_live_channel_configuration_t *config,
- aos_list_t *publish_url_list,
- aos_list_t *play_url_list,
- aos_table_t **resp_headers);
- /*
- * @brief oss set live channel status
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[in] live_channel_status the oss live channel status, enabled or disabled
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_put_live_channel_status(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- const aos_string_t *live_channel_status,
- aos_table_t **resp_headers);
- /*
- * @brief oss get live channel information
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[out] info the oss live channel information
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_live_channel_info(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- oss_live_channel_configuration_t *info,
- aos_table_t **resp_headers);
- /*
- * @brief oss get live channel stat
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[out] stat the oss live channel stat
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_live_channel_stat(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- oss_live_channel_stat_t *stat,
- aos_table_t **resp_headers);
- /*
- * @brief delete oss live channel
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_delete_live_channel(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- aos_table_t **resp_headers);
- /*
- * @brief list oss live channels
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] params input params for list live channel request,
- including prefix, marker, max_key
- * @param[out] params output params for list object response,
- including truncated, next_marker, live channel list
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_list_live_channel(const oss_request_options_t *options,
- const aos_string_t *bucket,
- oss_list_live_channel_params_t *params,
- aos_table_t **resp_headers);
- /*
- * @brief oss get live record history of live channel
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[out] live_record_list the oss live records of live channel
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_get_live_channel_history(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- aos_list_t *live_record_list,
- aos_table_t **resp_headers);
- /*
- * @brief generate vod play list for a period of time
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[in] play_list_name the oss live channel play list name
- * @param[in] start_time the start epoch time of play list, such as 1459922368
- * @param[in] end_time the end epoch time of play list, such as 1459922563
- * @param[out] resp_headers oss server response headers
- * @return aos_status_t, code is 2xx success, other failure
- */
- aos_status_t *oss_gen_vod_play_list(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- const aos_string_t *play_list_name,
- const int64_t start_time,
- const int64_t end_time,
- aos_table_t **resp_headers);
- /*
- * @brief gen signed url for put rtmp stream
- * @param[in] options the oss request options
- * @param[in] bucket the oss bucket name
- * @param[in] live_channel the oss live channel name
- * @param[in] play_list_name the oss live channel play list name
- * @param[in] expires the end expire time for signed url
- * @return signed url, non-NULL success, NULL failure
- */
- char *oss_gen_rtmp_signed_url(const oss_request_options_t *options,
- const aos_string_t *bucket,
- const aos_string_t *live_channel,
- const aos_string_t *play_list_name,
- const int64_t expires);
- OSS_CPP_END
- #endif
|