File: tutorial-17-http_server.cc

package info (click to toggle)
srpc 0.10.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,108 kB
  • sloc: cpp: 22,937; python: 10; makefile: 8; sh: 6
file content (73 lines) | stat: -rw-r--r-- 1,920 bytes parent folder | download | duplicates (2)
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
/*
  Copyright (c) 2023 sogou, Inc.

  Licensed under the Apache License, Version 2.0 (the "License");
  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.
*/

#include <signal.h>
#include "workflow/WFFacilities.h"
#include "srpc/http_server.h"
#include "srpc/rpc_types.h"
#include "srpc/rpc_metrics_filter.h"
#include "srpc/rpc_trace_filter.h"

static WFFacilities::WaitGroup wait_group(1);

srpc::RPCMetricsPull  exporter;
srpc::RPCTraceDefault trace_log;
//srpc::RPCTraceOpenTelemetry otel("http://127.0.0.1:4318");

static void sig_handler(int signo)
{
	wait_group.done();
}

void process(WFHttpTask *task)
{
    fprintf(stderr, "http server get request_uri: %s\n",
            task->get_req()->get_request_uri());

    task->get_resp()->append_output_body("<html>Hello from server!</html>");
}

int main()
{
	signal(SIGINT, sig_handler);
	signal(SIGTERM, sig_handler);

	srpc::HttpServer server(process);

	exporter.init(8080); /* export port for prometheus */
	exporter.create_histogram("echo_request_size", "Echo request size",
							{1, 10, 100});
	exporter.create_summary("echo_test_quantiles", "Test quantile",
						  {{0.5, 0.05}, {0.9, 0.01}});

	server.add_filter(&trace_log);
//	server.add_filter(&otel);
	server.add_filter(&exporter);

	if (server.start(1412) == 0)
	{
		printf("HTTP protocol server is running on 1412\n"
			   "Try ./http_client to send requests.\n\n");
		wait_group.wait();
		server.stop();
	}
	else
		perror("server start");

	exporter.deinit();
	return 0;
}