Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
DataHandler.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 DataHandler::canHandle(const char* method, const char* url) {
19 static const char* kBaseUrl = "/data";
20 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
21 0 == strncmp(url, kBaseUrl, strlen(kBaseUrl));
22}
23
24int DataHandler::handle(Request* request, MHD_Connection* connection,
25 const char* url, const char* method,
26 const char* upload_data, size_t* upload_data_size) {
27 TArray<SkString> commands;
28 SkStrSplit(url, "/", &commands);
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}
static T * SkRef(T *obj)
Definition SkRefCnt.h:132
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
T * get() const
Definition SkRefCnt.h:303
int SendData(MHD_Connection *connection, const SkData *data, const char *type, bool setContentDisposition, const char *dispositionString)
Definition Response.cpp:64