factory.h 8.1 KB
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright (c) 2019 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 <map>
#include <string>
#include <utility>
G
guru4elephant 已提交
19 20
#include "core/sdk-cpp/include/common.h"
#include "core/sdk-cpp/include/stub_impl.h"
B
barrierye 已提交
21
#include "glog/raw_logging.h"
W
sdk-cpp  
wangguibao 已提交
22 23 24 25 26

namespace baidu {
namespace paddle_serving {
namespace sdk_cpp {

W
wangguibao 已提交
27 28 29 30
#ifdef BCLOUD
namespace brpc = baidu::rpc;
#endif

W
wangguibao 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
#define INLINE_REGIST_OBJECT(D, B, E)                                    \
  do {                                                                   \
    Factory<D, B>* factory = new (std::nothrow) Factory<D, B>();         \
    if (factory == NULL ||                                               \
        FactoryPool<B>::instance().register_factory(#D, factory) != 0) { \
      RAW_LOG_ERROR("Failed regist factory: %s->%s in macro!", #D, #B);  \
      return E;                                                          \
    }                                                                    \
  } while (0)

#define DECLARE_FACTORY_OBJECT(D, B)                                      \
  static int regist(const std::string& tag) {                             \
    Factory<D, B>* factory = new (std::nothrow) Factory<D, B>();          \
    if (factory == NULL ||                                                \
        FactoryPool<B>::instance().register_factory(tag, factory) != 0) { \
      RAW_LOG_ERROR("Failed regist factory: %s in macro!", #D);           \
      return -1;                                                          \
    }                                                                     \
    return 0;                                                             \
  }
W
sdk-cpp  
wangguibao 已提交
51 52

#define PDS_STR_CAT(a, b) PDS_STR_CAT_I(a, b)
W
wangguibao 已提交
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
#define PDS_STR_CAT_I(a, b) a##b

#define DEFINE_FACTORY_OBJECT(D)                                           \
  __attribute__((constructor)) static void PDS_STR_CAT(GlobalRegistObject, \
                                                       __LINE__)(void) {   \
    D::regist(#D);                                                         \
  }

#define REGIST_FACTORY_OBJECT_IMPL(D, B)                                       \
  __attribute__((constructor)) static void PDS_STR_CAT(GlobalRegistObject,     \
                                                       __LINE__)(void) {       \
    ::baidu::paddle_serving::sdk_cpp::Factory<D, B>* factory =                 \
        new (::std::nothrow)::baidu::paddle_serving::sdk_cpp::Factory<D, B>(); \
    if (factory == NULL ||                                                     \
        ::baidu::paddle_serving::sdk_cpp::FactoryPool<B>::instance()           \
                .register_factory(#D, factory) != 0) {                         \
      RAW_LOG_ERROR("Failed regist factory: %s->%s in macro!", #D, #B);        \
      return;                                                                  \
    }                                                                          \
    return;                                                                    \
  }

#define REGIST_FACTORY_OBJECT_IMPL_WITH_TAG(D, B, T)                           \
  __attribute__((constructor)) static void PDS_STR_CAT(GlobalRegistObject,     \
                                                       __LINE__)(void) {       \
    ::baidu::paddle_serving::sdk_cpp::Factory<D, B>* factory =                 \
        new (::std::nothrow)::baidu::paddle_serving::sdk_cpp::Factory<D, B>(); \
    if (factory == NULL ||                                                     \
        ::baidu::paddle_serving::sdk_cpp::FactoryPool<B>::instance()           \
                .register_factory(T, factory) != 0) {                          \
      RAW_LOG_ERROR(                                                           \
          "Failed regist factory: %s->%s, tag %s in macro!", #D, #B, T);       \
      return;                                                                  \
    }                                                                          \
    return;                                                                    \
  }

#define REGIST_ABTEST_OBJECT(D) \
  REGIST_FACTORY_OBJECT_IMPL(   \
      D, ::baidu::paddle_serving::sdk_cpp::ABTestRouterBase)

#define REGIST_ABTEST_OBJECT_WITH_TAG(D, T) \
  REGIST_FACTORY_OBJECT_IMPL_WITH_TAG(      \
      D, ::baidu::paddle_serving::sdk_cpp::ABTestRouterBase, T)

#define REGIST_STUB_OBJECT_WITH_TAG(D, C, R, I, O, T)                      \
  __attribute__((constructor)) static void PDS_STR_CAT(GlobalRegistObject, \
                                                       __LINE__)(void) {   \
    ::baidu::paddle_serving::sdk_cpp::Factory<                             \
        ::baidu::paddle_serving::sdk_cpp::StubImpl<D, C, R, I, O>,         \
        ::baidu::paddle_serving::sdk_cpp::Stub>* factory =                 \
        new (::std::nothrow)::baidu::paddle_serving::sdk_cpp::Factory<     \
            ::baidu::paddle_serving::sdk_cpp::StubImpl<D, C, R, I, O>,     \
            ::baidu::paddle_serving::sdk_cpp::Stub>();                     \
    if (factory == NULL ||                                                 \
        ::baidu::paddle_serving::sdk_cpp::FactoryPool<                     \
            ::baidu::paddle_serving::sdk_cpp::Stub>::instance()            \
                .register_factory(T, factory) != 0) {                      \
      RAW_LOG_ERROR(                                                       \
          "Failed regist factory: %s->Stub, tag: %s in macro!", #D, T);    \
      return;                                                              \
    }                                                                      \
    return;                                                                \
  }
W
sdk-cpp  
wangguibao 已提交
117 118 119 120 121

class Stub;
class EndpointRouterBase;
class VariantRouterBase;

W
wangguibao 已提交
122
template <typename B>
W
sdk-cpp  
wangguibao 已提交
123
class FactoryBase {
W
wangguibao 已提交
124 125 126
 public:
  virtual B* gen() = 0;
  virtual void del(B* obj) = 0;
W
sdk-cpp  
wangguibao 已提交
127 128
};

W
wangguibao 已提交
129
template <typename D, typename B>
W
sdk-cpp  
wangguibao 已提交
130
class Factory : public FactoryBase<B> {
W
wangguibao 已提交
131 132
 public:
  B* gen() { return new (std::nothrow) D(); }
W
sdk-cpp  
wangguibao 已提交
133

W
wangguibao 已提交
134
  void del(B* obj) { delete dynamic_cast<D*>(obj); }
W
sdk-cpp  
wangguibao 已提交
135 136
};

W
wangguibao 已提交
137
template <typename B>
W
sdk-cpp  
wangguibao 已提交
138
class FactoryPool {
W
wangguibao 已提交
139 140 141 142 143 144 145 146 147 148 149 150
 public:
  static FactoryPool<B>& instance() {
    static FactoryPool<B> singleton;
    return singleton;
  }

  int register_factory(const std::string& tag, FactoryBase<B>* factory) {
    typename std::map<std::string, FactoryBase<B>*>::iterator it =
        _pool.find(tag);
    if (it != _pool.end()) {
      RAW_LOG_ERROR("Insert duplicate with tag: %s", tag.c_str());
      return -1;
W
sdk-cpp  
wangguibao 已提交
151 152
    }

W
wangguibao 已提交
153 154 155 156 157
    std::pair<typename std::map<std::string, FactoryBase<B>*>::iterator, bool>
        r = _pool.insert(std::make_pair(tag, factory));
    if (!r.second) {
      RAW_LOG_ERROR("Failed insert new factory with: %s", tag.c_str());
      return -1;
W
sdk-cpp  
wangguibao 已提交
158 159
    }

W
wangguibao 已提交
160 161 162 163 164 165 166 167 168 169 170
    return 0;
  }

  B* generate_object(const std::string& tag) {
    typename std::map<std::string, FactoryBase<B>*>::iterator it =
        _pool.find(tag);
    if (it == _pool.end() || it->second == NULL) {
      RAW_LOG_ERROR("Not found factory pool, tag: %s, pool size: %u",
                    tag.c_str(),
                    _pool.size());
      return NULL;
W
sdk-cpp  
wangguibao 已提交
171 172
    }

W
wangguibao 已提交
173 174 175 176 177 178 179 180
    return it->second->gen();
  }

  template <typename D>
  void return_object(B* object) {
    Factory<D, B> factory;
    factory->del(object);
  }
W
sdk-cpp  
wangguibao 已提交
181

W
wangguibao 已提交
182 183
 private:
  std::map<std::string, FactoryBase<B>*> _pool;
W
sdk-cpp  
wangguibao 已提交
184 185 186 187 188 189 190 191
};

typedef FactoryPool<Stub> StubFactory;
typedef FactoryPool<brpc::CallMapper> CallMapperFactory;
typedef FactoryPool<brpc::ResponseMerger> ResponseMergerFactory;
typedef FactoryPool<EndpointRouterBase> EndpointRouterFactory;
typedef FactoryPool<VariantRouterBase> VariantRouterFactory;

W
wangguibao 已提交
192 193 194
}  // namespace sdk_cpp
}  // namespace paddle_serving
}  // namespace baidu