From cb65ffce0f0496c603cba6d6e12b20d66372cb9a Mon Sep 17 00:00:00 2001 From: Jayanth Othayoth Date: Tue, 16 Oct 2018 08:29:32 -0500 Subject: Enable clang code format Change-Id: Ib640ef7cea99ff505965182ec9900a2d53a8986e Signed-off-by: Jayanth Othayoth Signed-off-by: Brad Bishop --- watch.hpp | 139 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 67 insertions(+), 72 deletions(-) (limited to 'watch.hpp') diff --git a/watch.hpp b/watch.hpp index da1ffad..5452b20 100644 --- a/watch.hpp +++ b/watch.hpp @@ -1,13 +1,14 @@ #pragma once +#include "dump_utils.hpp" + +#include +#include + #include #include -#include -#include #include -#include "dump_utils.hpp" - namespace phosphor { namespace dump @@ -17,10 +18,10 @@ namespace inotify namespace fs = std::experimental::filesystem; -//User specific call back function input map(path:event) type. +// User specific call back function input map(path:event) type. using UserMap = std::map; -//User specific callback function wrapper type. +// User specific callback function wrapper type. using UserType = std::function; /** @class Watch @@ -33,72 +34,66 @@ using UserType = std::function; */ class Watch { - public: - /** @brief ctor - hook inotify watch with sd-event - * - * @param[in] eventObj - Event loop object - * @param[in] flags - inotify flags - * @param[in] mask - Mask of events - * @param[in] events - Events to be watched - * @param[in] path - File path to be watched - * @param[in] userFunc - User specific callback fnction wrapper. - * - */ - Watch(const EventPtr& eventObj, - int flags, - uint32_t mask, - uint32_t events, - const fs::path& path, - UserType userFunc); - - Watch(const Watch&) = delete; - Watch& operator=(const Watch&) = delete; - Watch(Watch&&) = default; - Watch& operator=(Watch&&) = default; - - /* @brief dtor - remove inotify watch and close fd's */ - ~Watch(); - - private: - /** @brief sd-event callback. - * @details Collects the files and event info and call the - * appropriate user function for further action. - * - * @param[in] s - event source, floating (unused) in our case - * @param[in] fd - inotify fd - * @param[in] revents - events that matched for fd - * @param[in] userdata - pointer to Watch object - * - * @returns 0 on success, -1 on fail - */ - static int callback(sd_event_source* s, - int fd, - uint32_t revents, - void* userdata); - - /** initialize an inotify instance and returns file descriptor */ - int inotifyInit(); - - /** @brief inotify flags */ - int flags; - - /** @brief Mask of events */ - uint32_t mask; - - /** @brief Events to be watched */ - uint32_t events; - - /** @brief File path to be watched */ - fs::path path; - - /** @brief dump file directory watch descriptor */ - int wd = -1; - - /** @brief file descriptor manager */ - CustomFd fd; - - /** @brief The user level callback function wrapper */ - UserType userFunc; + public: + /** @brief ctor - hook inotify watch with sd-event + * + * @param[in] eventObj - Event loop object + * @param[in] flags - inotify flags + * @param[in] mask - Mask of events + * @param[in] events - Events to be watched + * @param[in] path - File path to be watched + * @param[in] userFunc - User specific callback fnction wrapper. + * + */ + Watch(const EventPtr& eventObj, int flags, uint32_t mask, uint32_t events, + const fs::path& path, UserType userFunc); + + Watch(const Watch&) = delete; + Watch& operator=(const Watch&) = delete; + Watch(Watch&&) = default; + Watch& operator=(Watch&&) = default; + + /* @brief dtor - remove inotify watch and close fd's */ + ~Watch(); + + private: + /** @brief sd-event callback. + * @details Collects the files and event info and call the + * appropriate user function for further action. + * + * @param[in] s - event source, floating (unused) in our case + * @param[in] fd - inotify fd + * @param[in] revents - events that matched for fd + * @param[in] userdata - pointer to Watch object + * + * @returns 0 on success, -1 on fail + */ + static int callback(sd_event_source* s, int fd, uint32_t revents, + void* userdata); + + /** initialize an inotify instance and returns file descriptor */ + int inotifyInit(); + + /** @brief inotify flags */ + int flags; + + /** @brief Mask of events */ + uint32_t mask; + + /** @brief Events to be watched */ + uint32_t events; + + /** @brief File path to be watched */ + fs::path path; + + /** @brief dump file directory watch descriptor */ + int wd = -1; + + /** @brief file descriptor manager */ + CustomFd fd; + + /** @brief The user level callback function wrapper */ + UserType userFunc; }; } // namespace inotify -- cgit v1.2.1