master-server/deps/curl/docs/libcurl/curl_mime_data_cb.md

173 lines
5.2 KiB
Markdown
Raw Permalink Normal View History

2024-05-15 15:20:32 -04:00
---
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
SPDX-License-Identifier: curl
Title: curl_mime_data_cb
Section: 3
Source: libcurl
See-also:
- curl_easy_duphandle (3)
- curl_mime_addpart (3)
- curl_mime_data (3)
- curl_mime_name (3)
Protocol:
- HTTP
- IMAP
- SMTP
---
# NAME
2023-12-11 20:30:44 -05:00
curl_mime_data_cb - set a callback-based data source for a mime part's body
2024-05-15 15:20:32 -04:00
# SYNOPSIS
~~~c
2023-12-11 20:30:44 -05:00
#include <curl/curl.h>
size_t readfunc(char *buffer, size_t size, size_t nitems, void *arg);
int seekfunc(void *arg, curl_off_t offset, int origin);
void freefunc(void *arg);
CURLcode curl_mime_data_cb(curl_mimepart *part, curl_off_t datasize,
curl_read_callback readfunc,
curl_seek_callback seekfunc,
curl_free_callback freefunc, void *arg);
2024-05-15 15:20:32 -04:00
~~~
# DESCRIPTION
curl_mime_data_cb(3) sets the data source of a mime part's body content
2023-12-11 20:30:44 -05:00
from a data read callback function.
2024-05-15 15:20:32 -04:00
*part* is the part's to assign contents to.
2023-12-11 20:30:44 -05:00
2024-05-15 15:20:32 -04:00
*readfunc* is a pointer to a data read callback function, with a signature
2023-12-11 20:30:44 -05:00
as shown by the above prototype. It may not be set to NULL.
2024-05-15 15:20:32 -04:00
*seekfunc* is a pointer to a seek callback function, with a signature as
2023-12-11 20:30:44 -05:00
shown by the above prototype. This function is used when resending data (i.e.:
after a redirect); this pointer may be set to NULL, in which case a resend
might not be not possible.
2024-05-15 15:20:32 -04:00
*freefunc* is a pointer to a user resource freeing callback function, with
2023-12-11 20:30:44 -05:00
a signature as shown by the above prototype. If no resource is to be freed, it
may safely be set to NULL. This function is called upon mime structure
freeing.
2024-05-15 15:20:32 -04:00
*arg* is a user defined argument to callback functions.
2023-12-11 20:30:44 -05:00
The read callback function gets called by libcurl as soon as it needs to
read data in order to send it to the peer - like if you ask it to upload or
2024-05-15 15:20:32 -04:00
post data to the server. The data area pointed at by the pointer *buffer*
should be filled up with at most *size* multiplied with *nitems* number
2023-12-11 20:30:44 -05:00
of bytes by your function.
Your read function must then return the actual number of bytes that it stored
in that memory area. Returning 0 signals end-of-file to the library and cause
it to stop the current transfer.
If you stop the current transfer by returning 0 "pre-maturely" (i.e. before
the server expected it, like when you have said you intend to upload N bytes
and yet you upload less than N bytes), you may experience that the server
"hangs" waiting for the rest of the data that does not come.
2024-05-15 15:20:32 -04:00
The read callback may return *CURL_READFUNC_ABORT* to stop the current
operation immediately, resulting in a *CURLE_ABORTED_BY_CALLBACK* error
2023-12-11 20:30:44 -05:00
code from the transfer.
2024-05-15 15:20:32 -04:00
The callback can return *CURL_READFUNC_PAUSE* to cause reading from this
connection to pause. See curl_easy_pause(3) for further details.
2023-12-11 20:30:44 -05:00
The seek function gets called by libcurl to rewind input stream data or to
seek to a certain position. The function shall work like fseek(3) or lseek(3)
2024-05-15 15:20:32 -04:00
and it gets SEEK_SET, SEEK_CUR or SEEK_END as argument for *origin*,
2023-12-11 20:30:44 -05:00
although libcurl currently only passes SEEK_SET.
2024-05-15 15:20:32 -04:00
The callback function must return *CURL_SEEKFUNC_OK* on success,
*CURL_SEEKFUNC_FAIL* to cause the upload operation to fail or
*CURL_SEEKFUNC_CANTSEEK* to indicate that while the seek failed, libcurl
2023-12-11 20:30:44 -05:00
is free to work around the problem if possible. The latter can sometimes be
done by instead reading from the input or similar.
Care must be taken if the part is bound to a curl easy handle that is later
2024-05-15 15:20:32 -04:00
duplicated: the *arg* pointer argument is also duplicated, resulting in
2023-12-11 20:30:44 -05:00
the pointed item to be shared between the original and the copied handle. In
2024-05-15 15:20:32 -04:00
particular, special attention should be given to the *freefunc* procedure
2023-12-11 20:30:44 -05:00
code since it then gets called twice with the same argument.
2024-05-15 15:20:32 -04:00
# EXAMPLE
2023-12-11 20:30:44 -05:00
Sending a huge data string causes the same amount of memory to be allocated:
to avoid overhead resources consumption, one might want to use a callback
source to avoid data duplication. In this case, original data must be retained
until after the transfer terminates.
2024-05-15 15:20:32 -04:00
~~~c
2023-12-11 20:30:44 -05:00
#include <string.h> /* for memcpy */
char hugedata[512000];
struct ctl {
char *buffer;
curl_off_t size;
curl_off_t position;
};
size_t read_callback(char *buffer, size_t size, size_t nitems, void *arg)
{
struct ctl *p = (struct ctl *) arg;
curl_off_t sz = p->size - p->position;
nitems *= size;
if(sz > nitems)
sz = nitems;
if(sz)
memcpy(buffer, p->buffer + p->position, sz);
p->position += sz;
return sz;
}
int seek_callback(void *arg, curl_off_t offset, int origin)
{
struct ctl *p = (struct ctl *) arg;
switch(origin) {
case SEEK_END:
offset += p->size;
break;
case SEEK_CUR:
offset += p->position;
break;
}
if(offset < 0)
return CURL_SEEKFUNC_FAIL;
p->position = offset;
return CURL_SEEKFUNC_OK;
}
int main(void)
{
CURL *curl = curl_easy_init();
if(curl) {
curl_mime *mime = curl_mime_init(curl);
curl_mimepart *part = curl_mime_addpart(mime);
struct ctl hugectl;
hugectl.buffer = hugedata;
hugectl.size = sizeof(hugedata);
hugectl.position = 0;
curl_mime_data_cb(part, hugectl.size, read_callback, seek_callback, NULL,
&hugectl);
}
}
2024-05-15 15:20:32 -04:00
~~~
# AVAILABILITY
2023-12-11 20:30:44 -05:00
As long as at least one of HTTP, SMTP or IMAP is enabled. Added in 7.56.0.
2024-05-15 15:20:32 -04:00
# RETURN VALUE
2023-12-11 20:30:44 -05:00
CURLE_OK or a CURL error code upon failure.