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 [ + - ]: 43 : IntraServerImpl::IntraServerImpl(const IntraConf& conf) : conf_(conf) { 34 [ + + ]: 43 : if (conf.type == "direct") { 35 : 13 : type_ = IntraType::kDirect; 36 : : } 37 : 43 : } 38 : : 39 : 40 : void IntraServerImpl::init() { 40 [ + + + - : 40 : static auto& factory = IntraFactory::get(); + - - - ] 41 : : 42 : 40 : conf_.hash_code = Helpers::get_hash_code(conf_.event); 43 : : 44 [ + - ]: 40 : object_ = factory.get_object<Object>({kImplType, conf_.address, conf_.pipeline, type_, conf_.hash_code}); 45 : 40 : object_->add_impl(this); 46 : 40 : } 47 : : 48 : 40 : void IntraServerImpl::deinit() { 49 : 40 : object_->remove_impl(this); 50 : 40 : is_listened = false; 51 : : 52 [ + - ]: 40 : if (object_->req_resp_map_is_empty()) { 53 [ + - + - ]: 43 : object_->traverse_server_connect_callback([](NodeImpl*, const auto& callback) { callback(false); }); 54 : : } 55 : 40 : } 56 : : 57 : 2 : bool IntraServerImpl::suspend() { 58 : 2 : has_suspend = true; 59 : : 60 : 2 : return true; 61 : : } 62 : : 63 : 2 : bool IntraServerImpl::resume() { 64 : 2 : has_suspend = false; 65 : : 66 : 2 : return true; 67 : : } 68 : : 69 : 2 : bool IntraServerImpl::is_suspend() const { return has_suspend; } 70 : : 71 : 44 : const Conf* IntraServerImpl::get_conf() const { return &conf_; } 72 : : 73 : 1 : const AbstractNode* IntraServerImpl::get_abstract_node() const { return object_.get(); } 74 : : 75 : 1 : bool IntraServerImpl::attach(class MessageLoop*) { 76 [ + - + - ]: 2 : VLOG_W("Function [attach] is not supported."); 77 : 1 : return false; 78 : : } 79 : : 80 : 1 : bool IntraServerImpl::detach() { 81 [ + - + - ]: 2 : VLOG_W("Function [detach] is not supported."); 82 : 1 : return false; 83 : : } 84 : : 85 : 0 : bool IntraServerImpl::has_clients() const { return !object_->server_connect_map_is_empty(); } 86 : : 87 : 39 : bool IntraServerImpl::listen(ReqRespCallback&& callback) { 88 : 39 : const bool was_empty = object_->req_resp_map_is_empty(); 89 : : 90 : 39 : object_->register_req_resp_callback(this, std::move(callback)); 91 : : 92 [ + - ]: 39 : if VLIKELY (was_empty) { 93 [ + - + - ]: 46 : object_->traverse_server_connect_callback([](NodeImpl*, const auto& target_callback) { target_callback(true); }); 94 : : } 95 : : 96 : 39 : return true; 97 : : } 98 : : 99 : : } // namespace vlink