Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
OpsHandler.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
9
10#include "microhttpd.h"
14
15using namespace skia_private;
16using namespace Response;
17
18bool OpsHandler::canHandle(const char* method, const char* url) {
19 const char* kBasePath = "/ops";
20 return 0 == strncmp(url, kBasePath, strlen(kBasePath));
21}
22
23int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
24 const char* method, const char* upload_data, size_t* upload_data_size) {
25 TArray<SkString> commands;
26 SkStrSplit(url, "/", &commands);
27
28 if (!request->hasPicture() || commands.size() > 1) {
29 return MHD_NO;
30 }
31
32 // /ops
33 if (0 == strcmp(method, MHD_HTTP_METHOD_GET)) {
34 sk_sp<SkData> data(request->getJsonOpsTask());
35 return SendData(connection, data.get(), "application/json");
36 }
37
38 return MHD_NO;
39}
void SkStrSplit(const char *str, const char *delimiters, SkStrSplitMode splitMode, TArray< SkString > *out)
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
int SendData(MHD_Connection *connection, const SkData *data, const char *type, bool setContentDisposition, const char *dispositionString)
Definition Response.cpp:64