1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
Functions
=========
ms3_library_init()
------------------
.. c:function:: void ms3_library_init(void)
Initializes the library for use.
Should be called before any threads are spawned.
ms3_library_deinit()
--------------------
.. c:function:: void ms3_library_deinit(void)
Cleans up the library, typically for the end of the application's execution.
ms3_library_init_malloc()
-------------------------
.. c:function:: uint8_t ms3_library_init_malloc(ms3_malloc_callback m, ms3_free_callback f, ms3_realloc_callback r, ms3_strdup_callback s, ms3_calloc_callback c)
Initialize the library for use with custom allocator replacement functions. These functions are also fed into libcurl. The function prototypes should be as follows:
.. c:function:: void *ms3_malloc_callback(size_t size)
To replace ``malloc()``.
.. c:function:: void ms3_free_callback(void *ptr)
To replace ``free()``.
.. c:function:: void *ms3_realloc_callback(void *ptr, size_t size)
To replace ``realloc()``.
.. c:function:: char *ms3_strdup_callback(const char *str)
To replace ``strdup()``.
.. c:function:: void *ms3_calloc_callback(size_t nmemb, size_t size)
To replace ``calloc()``.
Should be called before any threads are spawned. All parameters are required or the function *will* fail.
Remember: With great power comes great responsibility.
:param m: The malloc callback
:param f: The free callback
:param r: The realloc callback
:param s: The strdup callback
:param c: The calloc callback
:returns: ``0`` on success, ``MS3_ERR_PARAMETER`` if a parameter is ``NULL``
ms3_init()
----------
.. c:function:: ms3_st *ms3_init(const char *s3key, const char *s3secret, const char *region, const char *base_domain)
Initializes a :c:type:`ms3_st` object. This object should only be used in
the thread that created it because it reuses connections. But it is safe to
have other :c:type:`ms3_st` objects running at the same time in other threads.
.. note::
You *MUST* call :c:func:`ms3_library_init` before
spawning threads when using this access method.
:param s3key: The AWS access key
:param s3secret: The AWS secret key
:param region: The AWS region to use (such as ``us-east-1``)
:param base_domain: A domain name to use if AWS S3 is not the desired server (set to ``NULL`` for S3)
:returns: A newly allocated marias3 object
ms3_deinit()
------------
.. c:function:: void ms3_deinit(ms3_st *ms3)
Cleans up and frees a :c:type:`ms3_st` object.
:param ms3: The marias3 object
ms3_server_error()
------------------
.. c:function:: const char *ms3_server_error(ms3_st *ms3)
Returns the last error message from the S3 server or underlying Curl library.
:param ms3: The marias3 object
:returns: The error message string or ``NULL`` if there is no message.
ms3_error()
-----------
.. c:function:: const char *ms3_error(uint8_t errcode)
Returns an error message for a given error code
:param errcode: The error code to translate
:returns: The error message
ms3_debug()
-----------
.. c:function:: void ms3_debug(int debug_state)
Enables and disables debugging output on stderr.
:param debug_state: Set to 1 to enable debugging, zero to disable.
Note::
This enables/disables globally for the library
ms3_list()
----------
.. c:function:: uint8_t ms3_list(ms3_st *ms3, const char *bucket, const char *prefix, ms3_list_st **list)
Retrieves a list of files from a given S3 bucket and fills it into a :c:type:`ms3_list_st`.
The list generated is the eqivilent of a recursive directory listing but only has files in it, no entries for directories.
The list will automatically be freed on the next list/list_dir call or :c:func:`ms3_deinit`
:param ms3: The marias3 object
:param bucket: The bucket name to use
:param prefix: An optional path/file prefix to use (``NULL`` for all files)
:param list: A pointer to a pointer that will contain the returned list
:returns: ``0`` on success, a positive integer on failure
Example
^^^^^^^
.. code-block:: c
char *s3key= getenv("S3KEY");
char *s3secret= getenv("S3SECRET");
char *s3region= getenv("S3REGION");
char *s3bucket= getenv("S3BUCKET");
ms3_list_st *list= NULL, *list_it= NULL;
uint8_t res;
ms3_library_init();
ms3_st *ms3= ms3_thread_init(s3key, s3secret, s3region, NULL);
res= ms3_list(ms3, s3bucket, NULL, &list);
if (res)
{
printf("Error occurred: %d\n", res);
return;
}
list_it= list;
while(list_it)
{
printf("File: %s, size: %ld, tstamp: %ld\n", list_it->key, list_it->length, list_it->created);
list_it= list_it->next;
}
ms3_deinit(ms3);
ms3_list_dir()
--------------
.. c:function:: uint8_t ms3_list_dir(ms3_st *ms3, const char *bucket, const char *prefix, ms3_list_st **list)
Retrieves a list of files from a given S3 bucket and fills it into a :c:type:`ms3_list_st`.
The list generated will automatically add the delimiter ``/`` and therefore filter up to the first ``/`` after the prefix. Unlike :c:func:`ms3_list` it includes directory entries. This is the eqivilent of doing a regular directory listing in a current directory (as designated by ``prefix``).
The list will automatically be freed on the next list/list_dir call or :c:func:`ms3_deinit`
:param ms3: The marias3 object
:param bucket: The bucket name to use
:param prefix: An optional path/file prefix to use (``NULL`` for all files)
:param list: A pointer to a pointer that will contain the returned list
:returns: ``0`` on success, a positive integer on failure
ms3_list_free()
---------------
.. c:function:: void ms3_list_free(ms3_list_st *list)
.. deprecated:: 3.1.1
Now a NULL operation which be removed in 4.0
A NULL operation, previously free'd :c:func:`ms3_list`, but this is now done internally on :c:func:`ms3_deinit` or when a new list is requested.
:param list: The list to free
ms3_put()
---------
.. c:function:: uint8_t ms3_put(ms3_st *ms3, const char *bucket, const char *key, const uint8_t *data, size_t length)
Puts a binary data from a given pointer into S3 at a given key/filename. If an existing key/file exists with the same name this will be overwritten.
:param ms3: The marias3 object
:param bucket: The bucket name to use
:param key: The key/filename to create/overwrite
:param data: A pointer to the data to write
:param length: The length of the data to write
:returns: ``0`` on success, a positive integer on failure
Example
^^^^^^^
.. code-block:: c
char *s3key= getenv("S3KEY");
char *s3secret= getenv("S3SECRET");
char *s3region= getenv("S3REGION");
char *s3bucket= getenv("S3BUCKET");
uint8_t res;
const char *test_string= "Another one bites the dust";
ms3_library_init();
ms3_st *ms3= ms3_thread_init(s3key, s3secret, s3region, NULL);
res= ms3_put(ms3, s3bucket, "test/ms3.txt", (const uint8_t*)test_string, strlen(test_string));
if (res)
{
printf("Error occurred: %d\n", res);
return;
}
ms3_deinit(ms3);
ms3_copy()
----------
.. c:function:: uint8_t ms3_copy(ms3_st *ms3, const char *source_bucket, const char *source_key, const char *dest_bucket, const char *dest_key)
S3 internally copies an object from a source bucket and key to a destination bucket and key.
:param ms3: The marias3 object
:param source_bucket: The bucket where the source object is
:param source_key: The key/filename of the source object
:param dest_bucket: The destination bucket (can be the same as source)
:param dest_key: The destination key/filename
:returns: ``0`` on success, a positive integer on failure
ms3_move()
----------
.. c:function:: uint8_t ms3_move(ms3_st *ms3, const char *source_bucket, const char *source_key, const char *dest_bucket, const char *dest_key)
Moves an object from source to destination. Internally the library performs a copy and if successful performs a delete on the source object.
:param ms3: The marias3 object
:param source_bucket: The bucket where the source object is
:param source_key: The key/filename of the source object
:param dest_bucket: The destination bucket (can be the same as source)
:param dest_key: The destination key/filename
:returns: ``0`` on success, a positive integer on failure
ms3_get()
---------
.. c:function:: uint8_t ms3_get(ms3_st *ms3, const char *bucket, const char *key, uint8_t **data, size_t *length)
Retrieves a given object from S3.
.. Note::
The application is expected to free the resulting data pointer after use
:param ms3: The marias3 object
:param bucket: The bucket name to use
:param key: The key/filename to retrieve
:param data: A pointer to a pointer the data to be retrieved into
:param length: A pointer to the data length
:returns: ``0`` on success, a positive integer on failure
Example
^^^^^^^
.. code-block:: c
char *s3key= getenv("S3KEY");
char *s3secret= getenv("S3SECRET");
char *s3region= getenv("S3REGION");
char *s3bucket= getenv("S3BUCKET");
uint8_t res;
uint8_t *data= NULL;
size_t length;
ms3_library_init();
ms3_st *ms3= ms3_thread_init(s3key, s3secret, s3region, NULL);
res= ms3_get(ms3, s3bucket, "test/ms3.txt", &data, &length);
if (res)
{
printf("Error occurred: %d\n", res);
return;
}
printf("File contents: %s\n", data);
printf("File length: %ld\n", length);
ms3_free(data);
ms3_deinit(ms3);
ms3_free()
----------
.. c:function:: void ms3_free(uint8_t *data)
Used to free the data allocated by :c:func:`ms3_get`.
:param data: The data to free
ms3_set_option()
----------------
.. c:function:: uint8_t ms3_set_option(ms3_st *ms3, ms3_set_option_t option, void *value)
Sets a given connection option. See :c:type:`ms3_set_option_t` for a list of options.
:param ms3: The marias3 object
:param option: The option to set
:param value: A pointer to the value for the option (if required, ``NULL`` if not)
:returns: ``0`` on success, a positive integer on failure
ms3_delete()
------------
.. c:function:: uint8_t ms3_delete(ms3_st *ms3, const char *bucket, const char *key)
Deletes an object from an S3 bucket
:param ms3: The marias3 object
:param bucket: The bucket name to use
:param key: The key/filename to delete
:returns: ``0`` on success, a positive integer on failure
Example
^^^^^^^
.. code-block:: c
char *s3key= getenv("S3KEY");
char *s3secret= getenv("S3SECRET");
char *s3region= getenv("S3REGION");
char *s3bucket= getenv("S3BUCKET");
uint8_t res;
ms3_library_init();
ms3_st *ms3= ms3_thread_init(s3key, s3secret, s3region, NULL);
res = ms3_delete(ms3, s3bucket, "test/ms3.txt");
if (res)
{
printf("Error occurred: %d\n", res);
return;
}
ms3_deinit(ms3);
ms3_status()
------------
.. c:function:: uint8_t ms3_status(ms3_st *ms3, const char *bucket, const char *key, ms3_status_st *status)
Retreives the status of a given filename/key into a :c:type:`ms3_status_st` object. Will return an error if not found.
:param ms3: The marias3 object
:param bucket: The bucket name to use
:param key: The key/filename to status check
:param status: A status object to fill
:returns: ``0`` on success, a positive integer on failure
Example
^^^^^^^
.. code-block:: c
char *s3key= getenv("S3KEY");
char *s3secret= getenv("S3SECRET");
char *s3region= getenv("S3REGION");
char *s3bucket= getenv("S3BUCKET");
uint8_t res;
ms3_status_st status;
ms3_library_init();
ms3_st *ms3= ms3_thread_init(s3key, s3secret, s3region, NULL);
res= ms3_status(ms3, s3bucket, "test/ms3.txt", &status);
if (res)
{
printf("Error occurred: %d\n", res);
return;
}
printf("File length: %ld\n", status.length);
printf("File timestamp: %ld\n", status.created);
ms3_deinit(ms3);
ms3_set_content_type()
----------------------
.. c:function:: void ms3_set_content_type(ms3_st *ms3, const char *content_type)
Sets the ``Content-Type:`` header for subsequent PUT requests. Note that this
is not copied, so it should remain in scope for each :c:func:`ms3_put()` call.
Setting this to ``NULL`` will clear the ``Content-Type`` header to the default.
:param ms3: The marias3 object
:param content_type: The mime type to set
ms3_get_content_type()
----------------------
.. c:function:: const char *ms3_get_content_type(ms3_st *ms3)
Gets the ``Content-Type:`` header for the previous response from the S3 server.
This will automatically freed as part of the request handling, it will lose
scope on the next request and should not be freed by the application.
:param ms3: The marias3 object
:param content_type: The mime type for the previous request
|