server.cpp 3.76 KB
Newer Older
1
// Copyright (c) 2016 Baidu, Inc.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// 
// 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.

// A server to receive EchoRequest and send back EchoResponse.

#include <gflags/gflags.h>
#include <butil/logging.h>
#include <brpc/server.h>
#include <brpc/thrift_service.h>

22 23
#include <thrift/protocol/TBinaryProtocol.h>
#include <thrift/transport/TBufferTransports.h>
24 25 26 27 28 29 30

#include "gen-cpp/EchoService.h"
#include "gen-cpp/echo_types.h"

DEFINE_int32(port, 8019, "TCP Port of this server");
DEFINE_int32(idle_timeout_s, -1, "Connection will be closed if there is no "
             "read/write operations during the last `idle_timeout_s'");
31
DEFINE_int32(max_concurrency, 0, "Limit of request processing in parallel");
32

33 34 35 36 37 38
class EchoServiceHandler : virtual public example::EchoServiceIf {
public:
    EchoServiceHandler() {}

    void Echo(example::EchoResponse& res, const example::EchoRequest& req) {
        // Process request, just attach a simple string.
39
        res.data = req.data + " (processed by handler)";
40 41 42 43 44
        return;
    }

};

45 46
static std::atomic<int> g_counter(0);

47
// Adapt your own thrift-based protocol to use brpc 
wangxuefeng's avatar
wangxuefeng committed
48
class MyThriftProtocol : public brpc::ThriftService {
49
public:
50
    explicit MyThriftProtocol(EchoServiceHandler* handler) : _handler(handler) { }
wangxuefeng's avatar
wangxuefeng committed
51

52
    void ProcessThriftFramedRequest(const brpc::Server&,
53
                              brpc::Controller* cntl,
54 55
                              brpc::ThriftFramedMessage* request,
                              brpc::ThriftFramedMessage* response,
wangxuefeng's avatar
wangxuefeng committed
56
                              brpc::ThriftClosure* done) {
57 58 59 60 61 62 63 64 65 66 67
        // This object helps you to call done->Run() in RAII style. If you need
        // to process the request asynchronously, pass done_guard.release().
        brpc::ClosureGuard done_guard(done);

        if (cntl->Failed()) {
            // NOTE: You can send back a response containing error information
            // back to client instead of closing the connection.
            cntl->CloseConnection("Close connection due to previous error");
            return;
        }

68 69
        example::EchoRequest* req = request->Cast<example::EchoRequest>();
        example::EchoResponse* res = response->Cast<example::EchoResponse>();
70

71 72 73 74 75 76
        if (g_counter++ % 2 == 0) {
            if (!_handler) {
                cntl->CloseConnection("Close connection due to no valid handler");
                LOG(ERROR) << "No valid handler";
                return;
            }
wangxuefeng's avatar
wangxuefeng committed
77 78
            _handler->Echo(*res, *req);
        } else {
79
            res->data = req->data + " (processed directly)";
wangxuefeng's avatar
wangxuefeng committed
80
        }
81
    }
82

wangxuefeng's avatar
wangxuefeng committed
83 84 85
private:
    EchoServiceHandler* _handler;

86 87 88 89 90 91 92 93
};

int main(int argc, char* argv[]) {
    // Parse gflags. We recommend you to use gflags as well.
    google::ParseCommandLineFlags(&argc, &argv, true);

    brpc::Server server;
    brpc::ServerOptions options;
wangxuefeng's avatar
wangxuefeng committed
94

95 96
    EchoServiceHandler thrift_service_handler;
    options.thrift_service = new MyThriftProtocol(&thrift_service_handler);
97 98 99 100 101 102 103 104 105 106 107 108 109
    options.idle_timeout_sec = FLAGS_idle_timeout_s;
    options.max_concurrency = FLAGS_max_concurrency;

    // Start the server.
    if (server.Start(FLAGS_port, &options) != 0) {
        LOG(ERROR) << "Fail to start EchoServer";
        return -1;
    }

    // Wait until Ctrl-C is pressed, then Stop() and Join() the server.
    server.RunUntilAskedToQuit();
    return 0;
}