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_subscriber_impl.h" 25 : : 26 : : #include <utility> 27 : : 28 : : #include "./base/helpers.h" 29 : : 30 : : namespace vlink { 31 : : 32 : : // IntraSubscriberImpl 33 [ + - ]: 146 : IntraSubscriberImpl::IntraSubscriberImpl(const IntraConf& conf) : conf_(conf) { 34 [ + + ]: 146 : if (conf.type == "direct") { 35 : 6 : type_ = IntraType::kDirect; 36 : : } 37 : 146 : } 38 : : 39 : 145 : void IntraSubscriberImpl::init() { 40 [ + + + - : 145 : static auto& factory = IntraFactory::get(); + - - - ] 41 : : 42 : 145 : conf_.hash_code = Helpers::get_hash_code(conf_.event); 43 : : 44 [ + - ]: 145 : object_ = factory.get_object<Object>({kImplType, conf_.address, conf_.pipeline, type_}); 45 : : 46 [ + + ]: 145 : if (object_->msg_map_is_empty()) { 47 : 142 : object_->add_impl(this); 48 : : 49 [ + - + - ]: 288 : object_->traverse_sub_connect_callback([](NodeImpl*, const auto& callback) { callback(true); }); 50 : : } else { 51 : 3 : object_->add_impl(this); 52 : : } 53 : 145 : } 54 : : 55 : 145 : void IntraSubscriberImpl::deinit() { 56 : 145 : object_->remove_impl(this); 57 : : 58 [ + + ]: 145 : if (object_->msg_map_is_empty()) { 59 [ + - + - ]: 271 : object_->traverse_sub_connect_callback([](NodeImpl*, const auto& callback) { callback(false); }); 60 : : } 61 : 145 : } 62 : : 63 : 2 : bool IntraSubscriberImpl::suspend() { 64 : 2 : has_suspend = true; 65 : : 66 : 2 : return true; 67 : : } 68 : : 69 : 2 : bool IntraSubscriberImpl::resume() { 70 : 2 : has_suspend = false; 71 : : 72 : 2 : return true; 73 : : } 74 : : 75 : 4 : bool IntraSubscriberImpl::is_suspend() const { return has_suspend; } 76 : : 77 : 376 : const Conf* IntraSubscriberImpl::get_conf() const { return &conf_; } 78 : : 79 : 1 : const AbstractNode* IntraSubscriberImpl::get_abstract_node() const { return object_.get(); } 80 : : 81 : 1 : bool IntraSubscriberImpl::attach(class MessageLoop*) { 82 [ + - + - ]: 2 : VLOG_W("Function [attach] is not supported."); 83 : 1 : return false; 84 : : } 85 : : 86 : 1 : bool IntraSubscriberImpl::detach() { 87 [ + - + - ]: 2 : VLOG_W("Function [detach] is not supported."); 88 : 1 : return false; 89 : : } 90 : : 91 : 135 : bool IntraSubscriberImpl::listen(MsgCallback&& callback) { 92 : 135 : object_->register_msg_callback(this, std::move(callback)); 93 : : 94 : 135 : return true; 95 : : } 96 : : 97 : 8 : bool IntraSubscriberImpl::listen(IntraMsgCallback&& callback) { 98 : 8 : object_->register_intra_msg_callback(this, std::move(callback)); 99 : : 100 : 8 : return true; 101 : : } 102 : : 103 : : } // namespace vlink