当前位置: 首页>>代码示例>>C++>>正文


C++ Endpoint::set_uuid方法代码示例

本文整理汇总了C++中Endpoint::set_uuid方法的典型用法代码示例。如果您正苦于以下问题:C++ Endpoint::set_uuid方法的具体用法?C++ Endpoint::set_uuid怎么用?C++ Endpoint::set_uuid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Endpoint的用法示例。


在下文中一共展示了Endpoint::set_uuid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: recreate_host_endpoint_from_db

void DiscoveryManager::recreate_host_endpoint_from_db(const Uuid& fabric_uuid,
                                                      const Uuid& switch_uuid,
                                                      const Port& port) const {

    log_debug("pnc-discovery", "Recreate host endpoint from db");

    PncStabilizer stabilizer{};
    Switch pcie_switch = get_manager<Switch>().get_entry(switch_uuid);

    FabricEntity fabric_db{fabric_uuid};

    auto endpoints_uuids = fabric_db.get_multiple_values(db_keys::ENDPOINTS);
    auto zones_uuids = fabric_db.get_multiple_values(db_keys::ZONES);

    for (const auto& endpoint_uuid : endpoints_uuids) {

        EndpointEntity endpoint_db{endpoint_uuid};

        auto role_db = endpoint_db.get(db_keys::ENDPOINT_ROLE);

        if (literals::Endpoint::INITIATOR == role_db) {

            log_debug("pnc-discovery", "Found host endpoint in fabric db, endpoint uuid: " << endpoint_uuid);

            auto port_uuid_db = endpoint_db.get(db_keys::PORT);

            const Uuid predicted_port_uuid = stabilizer.dry_stabilize(port, pcie_switch);

            if (predicted_port_uuid == port_uuid_db) {

                EndpointBuilder endpoint_builder;
                endpoint_builder.init(fabric_uuid);

                Endpoint endpoint = endpoint_builder.add_host_entity().build();
                endpoint.set_uuid(endpoint_uuid);
                endpoint.set_status(attribute::Status(enums::State::Enabled, enums::Health::OK));

                agent_framework::discovery::IdentifierBuilder::set_uuid(endpoint, endpoint_uuid);

                log_and_add<Endpoint>(endpoint);

                get_m2m_manager<Endpoint, Port>().add_entry(endpoint_uuid, port.get_uuid());

                log_debug("pnc-discovery", "Created host endpoint from fabric db, endpoint uuid: " << endpoint_uuid);

                agent::pnc::discovery::utils::update_endpoint_zone_binding_from_db(zones_uuids, endpoint_uuid);

                break;
            }
        }
    }
}
开发者ID:01org,项目名称:intelRSD,代码行数:52,代码来源:discovery_manager.cpp


注:本文中的Endpoint::set_uuid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。