/* * Copyright 2005,2006 Fabrice Colin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _INOTIFY_MONITOR_H #define _INOTIFY_MONITOR_H #include #include #include #include #include "MonitorInterface.h" /// Linux inotify monitor. class INotifyMonitor : public MonitorInterface { public: INotifyMonitor(); virtual ~INotifyMonitor(); /// Adds a watch for the specified location. virtual bool addLocation(const std::string &location, bool isDirectory); /// Removed the watch for the specified location. virtual bool removeLocation(const std::string &location); /// Retrieves pending events. virtual bool retrievePendingEvents(std::queue &events); protected: pthread_mutex_t m_mutex; std::queue m_internalEvents; std::map m_locations; std::map m_movedFrom; bool removeWatch(const std::string &location); private: INotifyMonitor(const INotifyMonitor &other); INotifyMonitor &operator=(const INotifyMonitor &other); }; #endif // _INOTIFY_MONITOR_H