// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. #ifndef ISC_WATCHER_H #define ISC_WATCHER_H #include #include #include #include namespace isc { namespace yang { /// @brief This represents a base class for all watchers. /// /// Isc_Watcher is an object that receives callback notification /// from sysrepo (in YANG format) and converts it to appropriate /// JSON that can be sent over control channel and understood by Kea. class Watcher { public: // Constructor (requires xpath to install a callback) Watcher(SysrepoConnection &connection, const std::string &xpath); virtual ~Watcher(); virtual std::string getXPath(); // This method will be called when the callback returns. // Need to figure out the type used. void setYangData(void *data); // This method translates Netconf data to JSON format // understood by Kea. virtual void translate() = 0; // Once setYangData is called, isc::data::ElementPtr getJSON(); protected: std::string xpath_; void *netconf_data_; isc::data::ElementPtr json_; SysrepoConnection &connection_; }; typedef boost::shared_ptr WatcherPtr; } // namespace isc::yang } // namespace isc #endif /* ISC_WATCHER_H */