Branch data Line data Source code
1 : : /* 2 : : * Copyright (C) 2026 by Thun Lu. All rights reserved. 3 : : * Author: Thun Lu <thun.lu@zohomail.cn> 4 : : * Repo: https://github.com/thun-res/vlink 5 : : * _ __ __ _ __ 6 : : * | | / / / / (_) ____ / /__ 7 : : * | | / / / / / / / __ \ / //_/ 8 : : * | |/ / / /___ / / / / / / / ,< 9 : : * |___/ /_____/ /_/ /_/ /_/ /_/|_| 10 : : * 11 : : * Licensed under the Apache License, Version 2.0 (the "License"); 12 : : * you may not use this file except in compliance with the License. 13 : : * You may obtain a copy of the License at 14 : : * 15 : : * http://www.apache.org/licenses/LICENSE-2.0 16 : : * 17 : : * Unless required by applicable law or agreed to in writing, software 18 : : * distributed under the License is distributed on an "AS IS" BASIS, 19 : : * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 20 : : * See the License for the specific language governing permissions and 21 : : * limitations under the License. 22 : : */ 23 : : 24 : : #include "./intra_server_impl.h" 25 : : 26 : : #include <utility> 27 : : 28 : : #include "./base/helpers.h" 29 : : 30 : : namespace vlink { 31 : : 32 : : // IntraServerImpl 33 [ + - ]: 39 : IntraServerImpl::IntraServerImpl(const IntraConf& conf) : conf_(conf) { 34 [ + + ]: 39 : if (conf.type == "direct") { 35 : 11 : type_ = IntraType::kDirect; 36 : : } 37 : 39 : } 38 : : 39 : 36 : void IntraServerImpl::init() { 40 [ + + + - : 36 : static auto& factory = IntraFactory::get(); + - - - ] 41 : : 42 : 36 : conf_.hash_code = Helpers::get_hash_code(conf_.event); 43 : : 44 [ + - ]: 36 : object_ = factory.get_object<Object>({kImplType, conf_.address, conf_.pipeline, type_}); 45 : : 46 [ + - ]: 36 : if (object_->req_resp_map_is_empty()) { 47 : 36 : object_->add_impl(this); 48 : : 49 [ + - + - ]: 36 : object_->traverse_server_connect_callback([](NodeImpl*, const auto& callback) { callback(true); }); 50 : : } else { 51 : 0 : object_->add_impl(this); 52 : : } 53 : 36 : } 54 : : 55 : 36 : void IntraServerImpl::deinit() { 56 : 36 : object_->remove_impl(this); 57 : : 58 [ + + ]: 36 : if (object_->req_resp_map_is_empty()) { 59 [ + - + - ]: 37 : object_->traverse_server_connect_callback([](NodeImpl*, const auto& callback) { callback(false); }); 60 : : } 61 : 36 : } 62 : : 63 : 2 : bool IntraServerImpl::suspend() { 64 : 2 : has_suspend = true; 65 : : 66 : 2 : return true; 67 : : } 68 : : 69 : 2 : bool IntraServerImpl::resume() { 70 : 2 : has_suspend = false; 71 : : 72 : 2 : return true; 73 : : } 74 : : 75 : 2 : bool IntraServerImpl::is_suspend() const { return has_suspend; } 76 : : 77 : 46 : const Conf* IntraServerImpl::get_conf() const { return &conf_; } 78 : : 79 : 1 : const AbstractNode* IntraServerImpl::get_abstract_node() const { return object_.get(); } 80 : : 81 : 1 : bool IntraServerImpl::attach(class MessageLoop*) { 82 [ + - + - ]: 2 : VLOG_W("Function [attach] is not supported."); 83 : 1 : return false; 84 : : } 85 : : 86 : 1 : bool IntraServerImpl::detach() { 87 [ + - + - ]: 2 : VLOG_W("Function [detach] is not supported."); 88 : 1 : return false; 89 : : } 90 : : 91 : 0 : bool IntraServerImpl::has_clients() const { return !object_->server_connect_map_is_empty(); } 92 : : 93 : 35 : bool IntraServerImpl::listen(ReqRespCallback&& callback) { 94 : 35 : object_->register_req_resp_callback(this, std::move(callback)); 95 : : 96 : 35 : return true; 97 : : } 98 : : 99 : : } // namespace vlink