rpc_server.h 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#pragma once

#include <set>
#include <string>
#include <thread>  // NOLINT
#include <utility>
#include <vector>
22

23
#include "paddle/fluid/operators/distributed/request_handler.h"
24

25 26 27
DECLARE_int32(rpc_server_profile_period);
DECLARE_string(rpc_server_profile_path);

28 29
namespace paddle {
namespace operators {
30
namespace distributed {
31

32 33 34 35 36 37 38 39 40 41 42
class RPCServerProfiler {
 public:
  RPCServerProfiler(int profile_period, const std::string& profile_log_path);
  void OneStep();

 private:
  const int profile_period_;
  std::string profile_log_path_;
  int step_;
};

43 44 45 46
class RPCServer {
 public:
  explicit RPCServer(const std::string& address, int client_num)
      : cur_cond_(0),
47 48
        profiler_(FLAGS_rpc_server_profile_period,
                  FLAGS_rpc_server_profile_path),
49 50 51 52 53 54 55 56 57 58 59 60 61 62
        bind_address_(address),
        exit_flag_(false),
        selected_port_(0),
        client_num_(client_num) {}

  virtual ~RPCServer() {}
  virtual void StartServer() = 0;
  virtual void WaitServerReady() = 0;

  void ShutDown();

  bool IsExit() { return exit_flag_.load(); }

  int GetSelectedPort() const { return selected_port_; }
Y
Yancey1989 已提交
63

Y
Yancey1989 已提交
64
  int GetClientNum();
Y
Yancey1989 已提交
65

66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  void SavePort() const;

  // RegisterRPC, register the rpc method name to a handler
  // class, and auto generate a condition id for this call
  // to be used for the barrier.
  void RegisterRPC(const std::string& rpc_name, RequestHandler* handler,
                   int thread_num = 5);

  // Wait util all the clients have reached the barrier for one
  // rpc method. This function should be called in the
  // RequestHandler if you want to run the server/client in a
  // synchronous mode.
  void WaitBarrier(const std::string& rpc_name);

  void SetCond(const std::string& rpc_name);
  void WaitCond(const std::string& rpc_name);
  void IncreaseBatchBarrier(const std::string rpc_name);
Y
Yancey1989 已提交
83

Y
Yancey1989 已提交
84
  void Complete();
Y
Yancey1989 已提交
85

86
  void ResetBarrierCounter();
87
  RPCServerProfiler& Profiler() { return profiler_; }
88 89 90 91 92 93 94 95 96 97 98 99

 protected:
  virtual void ShutDownImpl() = 0;

 private:
  std::mutex mutex_;
  std::unordered_map<std::string, int> barrier_counter_;
  std::condition_variable barrier_cond_;

  std::unordered_map<std::string, int> rpc_cond_map_;
  std::atomic<int> cur_cond_;
  std::condition_variable rpc_cond_;
100
  RPCServerProfiler profiler_;
101 102 103 104 105

 protected:
  std::string bind_address_;
  std::atomic<int> exit_flag_;
  int selected_port_;
W
Wu Yi 已提交
106
  int client_num_;
107 108 109 110 111 112

  std::unordered_map<std::string, RequestHandler*> rpc_call_map_;
  std::unordered_map<std::string, int> rpc_thread_num_;
  friend class RequestHandler;
};

113
};  // namespace distributed
114 115
};  // namespace operators
};  // namespace paddle