forked from scylladb/seastar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction_handlers.hh
126 lines (108 loc) · 4.48 KB
/
function_handlers.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Copyright 2015 Cloudius Systems
*/
#pragma once
#include "handlers.hh"
#include <functional>
#include "json/json_elements.hh"
namespace seastar {
namespace httpd {
/**
* A request function is a lambda expression that gets only the request
* as its parameter
*/
typedef std::function<sstring(const_req req)> request_function;
/**
* A handle function is a lambda expression that gets request and reply
*/
typedef std::function<sstring(const_req req, reply&)> handle_function;
/**
* A json request function is a lambda expression that gets only the request
* as its parameter and return a json response.
* Using the json response is done implicitly.
*/
typedef std::function<json::json_return_type(const_req req)> json_request_function;
/**
* A future_json_function is a function that returns a future json reponse.
* Similiar to the json_request_function, using the json reponse is done
* implicitly.
*/
typedef std::function<
future<json::json_return_type>(std::unique_ptr<request> req)> future_json_function;
typedef std::function<
future<std::unique_ptr<reply>>(std::unique_ptr<request> req,
std::unique_ptr<reply> rep)> future_handler_function;
/**
* The function handler get a lambda expression in the constructor.
* it will call that expression to get the result
* This is suited for very simple handlers
*
*/
class function_handler : public handler_base {
public:
function_handler(const handle_function & f_handle, const sstring& type)
: _f_handle(
[f_handle](std::unique_ptr<request> req, std::unique_ptr<reply> rep) {
rep->_content += f_handle(*req.get(), *rep.get());
return make_ready_future<std::unique_ptr<reply>>(std::move(rep));
}), _type(type) {
}
function_handler(const future_handler_function& f_handle, const sstring& type)
: _f_handle(f_handle), _type(type) {
}
function_handler(const request_function & _handle, const sstring& type)
: _f_handle(
[_handle](std::unique_ptr<request> req, std::unique_ptr<reply> rep) {
rep->_content += _handle(*req.get());
return make_ready_future<std::unique_ptr<reply>>(std::move(rep));
}), _type(type) {
}
function_handler(const json_request_function& _handle)
: _f_handle(
[_handle](std::unique_ptr<request> req, std::unique_ptr<reply> rep) {
json::json_return_type res = _handle(*req.get());
rep->_content += res._res;
return make_ready_future<std::unique_ptr<reply>>(std::move(rep));
}), _type("json") {
}
function_handler(const future_json_function& _handle)
: _f_handle(
[_handle](std::unique_ptr<request> req, std::unique_ptr<reply> rep) {
return _handle(std::move(req)).then([rep = std::move(rep)](json::json_return_type res) mutable {
rep->_content += res._res;
return make_ready_future<std::unique_ptr<reply>>(std::move(rep));
}
);
}), _type("json") {
}
future<std::unique_ptr<reply>> handle(const sstring& path,
std::unique_ptr<request> req, std::unique_ptr<reply> rep) override {
return _f_handle(std::move(req), std::move(rep)).then(
[this](std::unique_ptr<reply> rep) {
rep->done(_type);
return make_ready_future<std::unique_ptr<reply>>(std::move(rep));
});
}
protected:
future_handler_function _f_handle;
sstring _type;
};
}
}