]> git.lyx.org Git - lyx.git/blob - src/support/FileMonitor2.cpp
2cf8cb917a459c9d5c120ae17eefd8046f30b8c5
[lyx.git] / src / support / FileMonitor2.cpp
1 /**
2  * \file FileMonitor.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Guillaume Munch
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "support/FileMonitor2.h"
14
15 #include "support/debug.h"
16 #include "support/FileName.h"
17 #include "support/qstring_helpers.h"
18 #include "support/unique_ptr.h"
19
20 #include <QFile>
21 #include <QSignalBlocker>
22 #include <QTimer>
23
24 #include <algorithm>
25
26 using namespace std;
27
28 namespace lyx {
29 namespace support {
30
31
32 FileSystemWatcher & FileSystemWatcher::instance()
33 {
34         // This thread-safe because QFileSystemWatcher is thread-safe.
35         static FileSystemWatcher f;
36         return f;
37 }
38
39
40 FileSystemWatcher::FileSystemWatcher()
41         : qwatcher_(make_unique<QFileSystemWatcher>())
42 {}
43
44
45 //static
46 FileMonitorPtr FileSystemWatcher::monitor(FileName const & file_with_path)
47 {
48         FileSystemWatcher & f = instance();
49         string const filename = file_with_path.absFileName();
50         weak_ptr<FileMonitorGuard> & wptr = f.store_[filename];
51         if (shared_ptr<FileMonitorGuard> mon = wptr.lock())
52                 return make_unique<FileMonitor2>(mon);
53         auto mon = make_shared<FileMonitorGuard>(filename, f.qwatcher_.get());
54         wptr = mon;
55         return make_unique<FileMonitor2>(mon);
56 }
57
58
59 //static
60 void FileSystemWatcher::debug()
61 {
62         FileSystemWatcher & f = instance();
63         QStringList q_files = f.qwatcher_->files();
64         for (pair<string, weak_ptr<FileMonitorGuard>> pair : f.store_) {
65                 string const & name = pair.first;
66                 if (!pair.second.expired()) {
67                         if (!q_files.contains(toqstr(name)))
68                                 LYXERR0("Monitored but not QFileSystemWatched (bad): " << name);
69                         else {
70                                 //LYXERR0("Monitored and QFileSystemWatched (good): " << name);
71                         }
72                 }
73         }
74         for (QString const & qname : q_files) {
75                 string const name = fromqstr(qname);
76                 weak_ptr<FileMonitorGuard> & wptr = f.store_[name];
77                 if (wptr.expired())
78                         LYXERR0("QFileSystemWatched but not monitored (bad): " << name);
79         }
80 }
81
82
83 FileMonitorGuard::FileMonitorGuard(string const & filename,
84                                    QFileSystemWatcher * qwatcher)
85         : filename_(filename), qwatcher_(qwatcher)
86 {
87         QObject::connect(qwatcher, SIGNAL(fileChanged(QString const &)),
88                          this, SLOT(notifyChange(QString const &)));
89         if (qwatcher_->files().contains(toqstr(filename)))
90                 LYXERR0("This file is already being QFileSystemWatched: " << filename
91                         << ". This should not happen.");
92         refresh();
93 }
94
95
96 FileMonitorGuard::~FileMonitorGuard()
97 {
98         qwatcher_->removePath(toqstr(filename_));
99 }
100
101
102 void FileMonitorGuard::refresh(bool new_file)
103 {
104         QString const qfilename = toqstr(filename_);
105         if(!qwatcher_->files().contains(qfilename)) {
106                 bool exists = QFile(qfilename).exists();
107                 if (!exists || !qwatcher_->addPath(qfilename)) {
108                         if (exists)
109                                 LYXERR(Debug::FILES,
110                                        "Could not add path to QFileSystemWatcher: "
111                                        << filename_);
112                         QTimer::singleShot(1000, this, [=](){
113                                         refresh(new_file || !exists);
114                                 });
115                 } else if (exists && new_file)
116                         Q_EMIT fileChanged();
117         }
118 }
119
120
121 void FileMonitorGuard::notifyChange(QString const & path)
122 {
123         if (path == toqstr(filename_)) {
124                 Q_EMIT fileChanged();
125                 // If the file has been modified by delete-move, we are notified of the
126                 // deletion but we no longer track the file. See
127                 // <https://bugreports.qt.io/browse/QTBUG-46483> (not a bug).
128                 refresh();
129         }
130 }
131
132
133 FileMonitor2::FileMonitor2(std::shared_ptr<FileMonitorGuard> monitor)
134         : monitor_(monitor)
135 {
136         connectToFileMonitorGuard();
137         refresh();
138 }
139
140
141 void FileMonitor2::connectToFileMonitorGuard()
142 {
143         QObject::connect(monitor_.get(), SIGNAL(fileChanged()),
144                          this, SLOT(changed()));
145 }
146
147
148 boost::signals2::connection
149 FileMonitor2::connect(sig::slot_type const & slot)
150 {
151         return fileChanged_.connect(slot);
152 }
153
154
155 void FileMonitor2::disconnect()
156 {
157         fileChanged_.disconnect_all_slots();
158         QObject::disconnect(this, SIGNAL(fileChanged()));
159 }
160
161
162 void FileMonitor2::changed()
163 {
164         // emit boost signal
165         fileChanged_();
166         Q_EMIT fileChanged();
167 }
168
169
170 FileMonitorBlocker FileMonitor2::block(int delay)
171 {
172         FileMonitorBlocker blocker = blocker_.lock();
173         if (!blocker)
174                 blocker_ = blocker = make_shared<FileMonitorBlockerGuard>(this);
175         blocker->setDelay(delay);
176         return blocker;
177 }
178
179
180 FileMonitorBlockerGuard::FileMonitorBlockerGuard(FileMonitor2 * parent)
181         : QObject(parent), parent_(parent), delay_(0)
182 {
183         QObject::disconnect(parent_->monitor_.get(), SIGNAL(fileChanged()),
184                             parent_, SLOT(changed()));
185 }
186
187
188 void FileMonitorBlockerGuard::setDelay(int delay)
189 {
190         delay_ = max(delay_, delay);
191 }
192
193
194 FileMonitorBlockerGuard::~FileMonitorBlockerGuard()
195 {
196         // closures can only copy local copies
197         FileMonitor2 * parent = parent_;
198         // parent is also our QObject::parent() so we are deleted before parent.
199         // Even if delay_ is 0, the QTimer is necessary. Indeed, the notifications
200         // from QFileSystemWatcher that we meant to ignore are not going to be
201         // treated immediately, so we must yield to give us the opportunity to
202         // ignore them.
203         QTimer::singleShot(delay_, parent, [parent]() {
204                         parent->connectToFileMonitorGuard();
205                 });
206 }
207
208 } // namespace support
209 } // namespace lyx
210
211 #include "moc_FileMonitor2.cpp"