#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 130 of file UrlHandler.h.
◆ canHandle()
bool OpBoundsHandler::canHandle |
( |
const char * |
method, |
|
|
const char * |
url |
|
) |
| |
|
overridevirtual |
Implements UrlHandler.
Definition at line 18 of file OpBoundsHandler.cpp.
18 {
19 static const char* kBasePath = "/gpuOpBounds/";
20 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
21 0 == strncmp(url, kBasePath, strlen(kBasePath));
22}
◆ handle()
int OpBoundsHandler::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 OpBoundsHandler.cpp.
25 {
28
29 if (!request->hasPicture() ||
commands.size() != 2) {
30 return MHD_NO;
31 }
32
33 int enabled;
34 sscanf(
commands[1].c_str(),
"%d", &enabled);
35
36 request->fDebugCanvas->setDrawGpuOpBounds(
SkToBool(enabled));
38}
void SkStrSplit(const char *str, const char *delimiters, SkStrSplitMode splitMode, TArray< SkString > *out)
static constexpr bool SkToBool(const T &x)
int SendOK(MHD_Connection *connection)
The documentation for this class was generated from the following files: