blob: ccc6c3b8f36f87a85139e9a26b8f053b84630713 [file] [log] [blame]
aa7133@att.com84bd3342020-03-16 18:04:57 +02001/*
2 * Copyright 2020 AT&T Intellectual Property
3 * Copyright 2020 Nokia
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18//
19// Created by adi ENZEL on 2/18/20.
20//
21
22#ifndef E2_HTTPSERVER_H
23#define E2_HTTPSERVER_H
24
25#include <pistache/http.h>
26#include <pistache/router.h>
27#include <pistache/endpoint.h>
28#include <pistache/net.h>
29
30
31using namespace std;
32using namespace Pistache;
33
34#define SA struct sockaddr
35
36class HttpServer {
37public:
38 explicit HttpServer(Address addr);
39
40 void init(size_t thr = 2);
41
42 void start();
43
44private:
45
46 long transactionCounter = 0;
47 int httpBaseSocket;
48 void setupRoutes();
49
50
51 void sendSetupReq(const Rest::Request& request, Http::ResponseWriter response);
52
53 std::shared_ptr<Http::Endpoint> httpEndpoint;
54 Rest::Router router;
55};
56
57#endif //E2_HTTPSERVER_H