From efb1d5a4729ea892ea03b8d0265aae9e8fadfff1 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Sun, 24 Mar 2019 16:54:11 -0700 Subject: rfnoc: Add properties, nodes, and accessors Adds the following classes: - uhd::rfnoc::node_t, the base class for RFNoC nodes - uhd::rfnoc::node_accessor_t, a class to access private properties - uhd::rfnoc::res_source_info, a struct that identifies where properties come from - uhd::rfnoc::property_t, and property_base_t (its parent) - uhd::rfnoc::prop_accessor_t, a class to access properties Add always dirty property (dirtifier). Also adds unit tests for properties. --- host/lib/include/uhdlib/rfnoc/node_accessor.hpp | 84 +++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 host/lib/include/uhdlib/rfnoc/node_accessor.hpp (limited to 'host/lib/include/uhdlib/rfnoc/node_accessor.hpp') diff --git a/host/lib/include/uhdlib/rfnoc/node_accessor.hpp b/host/lib/include/uhdlib/rfnoc/node_accessor.hpp new file mode 100644 index 000000000..26e6a5607 --- /dev/null +++ b/host/lib/include/uhdlib/rfnoc/node_accessor.hpp @@ -0,0 +1,84 @@ +// +// Copyright 2019 Ettus Research, a National Instruments Brand +// +// SPDX-License-Identifier: GPL-3.0-or-later +// + +#ifndef INCLUDED_LIBUHD_NODE_ACCESSOR_HPP +#define INCLUDED_LIBUHD_NODE_ACCESSOR_HPP + +#include +#include + +namespace uhd { namespace rfnoc { + +//! Special class which may access nodes +// +// For the sake of property resolution, we require access to certain private +// members of nodes. Instead of giving the entire graph +// access to everything, we create this accessor class which is not available +// in the public API. +class node_accessor_t +{ +public: + using prop_ptrs_t = node_t::prop_ptrs_t; + + /*! Initializes the properties of a node. See node_t::init_props() for + * details. + */ + void init_props(node_t* node) + { + node->init_props(); + } + + /*! Does a local resolution of properties on \p node. + * + * See node_t::resolve_props for details. + */ + void resolve_props(node_t* node) + { + node->resolve_props(); + } + + /*! Returns a filtered list of properties. + * + * The return list contains all properties that match a given predicate. + */ + template + node_t::prop_ptrs_t filter_props(node_t* node, PredicateType&& predicate) + { + return node->filter_props(std::forward(predicate)); + } + + /*! Mark all properties on this node as clean + * + * See node_t::clean_props() for details. + */ + void clean_props(node_t* node) + { + node->clean_props(); + } + + /*! Set a resolver callback for the node + * + * See node_t::set_resolve_all_callback() for details. + */ + void set_resolve_all_callback(node_t* node, node_t::resolve_callback_t&& resolver) + { + node->set_resolve_all_callback(std::move(resolver)); + } + + /*! Forward an edge property to \p dst_node + * + * See node_t::forward_edge_property() for details. + */ + void forward_edge_property(node_t* dst_node, property_base_t* incoming_prop) + { + dst_node->forward_edge_property(incoming_prop); + } +}; + + +}} /* namespace uhd::rfnoc */ + +#endif /* INCLUDED_LIBUHD_NODE_ACCESSOR_HPP */ -- cgit v1.2.3