#include <UrlHandler.h>
|
bool | canHandle (const char *method, const char *url) override |
|
int | handle (Request *request, MHD_Connection *connection, const char *url, const char *method, const char *upload_data, size_t *upload_data_size) override |
|
Public Member Functions inherited from UrlHandler |
virtual | ~UrlHandler () |
|
virtual bool | canHandle (const char *method, const char *url)=0 |
|
virtual int | handle (Request *request, MHD_Connection *connection, const char *url, const char *method, const char *upload_data, size_t *upload_data_size)=0 |
|
Definition at line 108 of file UrlHandler.h.
◆ canHandle()
bool DataHandler::canHandle |
( |
const char * |
method, |
|
|
const char * |
url |
|
) |
| |
|
overridevirtual |
Implements UrlHandler.
Definition at line 18 of file DataHandler.cpp.
18 {
19 static const char* kBaseUrl = "/data";
20 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
21 0 == strncmp(url, kBaseUrl, strlen(kBaseUrl));
22}
◆ handle()
int DataHandler::handle |
( |
Request * |
request, |
|
|
MHD_Connection * |
connection, |
|
|
const char * |
url, |
|
|
const char * |
method, |
|
|
const char * |
upload_data, |
|
|
size_t * |
upload_data_size |
|
) |
| |
|
overridevirtual |
Implements UrlHandler.
Definition at line 24 of file DataHandler.cpp.
26 {
29
30 if (!request->hasPicture() ||
commands.size() != 2) {
31 return MHD_NO;
32 }
33
35 SkRef(request->fUrlDataManager.getDataFromUrl(
SkString(url))));
36
37 if (urlData) {
38 return SendData(connection, urlData->fData.get(), urlData->fContentType.c_str());
39 }
40 return MHD_NO;
41}
void SkStrSplit(const char *str, const char *delimiters, SkStrSplitMode splitMode, TArray< SkString > *out)
int SendData(MHD_Connection *connection, const SkData *data, const char *type, bool setContentDisposition, const char *dispositionString)
The documentation for this class was generated from the following files: