/* * \brief Representation of an open file system node within the component * \author Christian Prochaska * \date 2017-06-09 */ /* * Copyright (C) 2017 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU Affero General Public License version 3. */ #ifndef _OPEN_NODE_H_ #define _OPEN_NODE_H_ /* Genode includes */ #include #include namespace File_system { /* * \param NODE component-specific node type */ template class Open_node; } template class File_system::Open_node : public File_system::Node { private: Genode::Id_space::Element _element; NODE &_node; Genode::Constructible _listener; Listener::Version const _version_when_opened = _node.curr_version(); /* * Flag to track whether the underlying file-system node was * modified via this 'Open_node'. That is, if closing the 'Open_node' * should notify listeners of the file. */ bool _was_written = false; public: Open_node(NODE &node, Genode::Id_space &id_space) : _element(*this, id_space), _node(node) { } ~Open_node() { if (_listener.constructed()) { _node.remove_listener(&*_listener); _listener.destruct(); } /* * Notify remaining listeners about the changed file */ if (_was_written) _node.notify_listeners(); } NODE &node() { return _node; } File_system::Listener &listener() { return *_listener; } Genode::Id_space::Id id() { return _element.id(); } /** * Register packet stream sink to be notified of node changes */ void register_notify(File_system::Sink &sink) { /* * If there was already a handler registered for the node, * remove the old handler. */ if (_listener.constructed()) { _node.remove_listener(&*_listener); _listener.destruct(); } /* * Register new handler */ _listener.construct(sink, id(), _version_when_opened); _node.add_listener(&*_listener); } void mark_as_written() { _was_written = true; } }; #endif /* _OPEN_NODE_H_ */