/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation Copyright (C) 2017-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM 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 3 of the License, or (at your option) any later version. OpenFOAM 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 General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::fileMonitor Description Checking for changes to files. Note The default is to use stat to get the timestamp. Compile with FOAM_USE_INOTIFY to use the inotify (Linux specific, since 2.6.13) framework. The problem is that inotify does not work on nfs3 mounted directories!! SourceFiles fileMonitor.C \*---------------------------------------------------------------------------*/ #ifndef Foam_fileMonitor_H #define Foam_fileMonitor_H #include "DynamicList.H" #include #include // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // Forward Declarations class fileMonitor; class fileMonitorWatcher; template class Enum; /*---------------------------------------------------------------------------*\ Class fileMonitor Declaration \*---------------------------------------------------------------------------*/ class fileMonitor { public: // Public Data Types //- Enumeration defining the file state. enum fileState { UNMODIFIED = 0, MODIFIED = 1, DELETED = 2 }; static const Enum fileStateNames_; private: // Private Data //- Whether to use inotify (requires -DFOAM_USE_INOTIFY, see above) const bool useInotify_; //- State for all watchFds based on local files mutable DynamicList localState_; //- State for all watchFds - synchronised mutable DynamicList state_; //- Filename for all watchFds DynamicList watchFile_; //- Free watchFds DynamicList