forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatchlist.cpp
275 lines (226 loc) · 6.3 KB
/
watchlist.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* Copyright 2012-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
#include <vector>
watchman::Synchronized<std::unordered_map<w_string, std::shared_ptr<w_root_t>>>
watched_roots;
std::atomic<long> live_roots{0};
bool watchman_root::removeFromWatched() {
auto map = watched_roots.wlock();
auto it = map->find(root_path);
if (it == map->end()) {
return false;
}
// it's possible that the root has already been removed and replaced with
// another, so make sure we're removing the right object
if (it->second.get() == this) {
map->erase(it);
return true;
}
return false;
}
// Given a filename, walk the current set of watches.
// If a watch is a prefix match for filename then we consider it to
// be an enclosing watch and we'll return the root path and the relative
// path to filename.
// Returns NULL if there were no matches.
// If multiple watches have the same prefix, it is undefined which one will
// match.
char *w_find_enclosing_root(const char *filename, char **relpath) {
std::shared_ptr<w_root_t> root;
w_string name(filename, W_STRING_BYTE);
char *prefix = NULL;
{
auto map = watched_roots.rlock();
for (const auto& it : *map) {
auto root_name = it.first;
if (w_string_startswith(name, root_name) &&
(name.size() == root_name.size() /* exact match */ ||
is_slash(
name.data()[root_name.size()]) /* dir container matches */)) {
root = it.second;
break;
}
}
}
if (!root) {
return nullptr;
}
// extract the path portions
prefix = (char*)malloc(root->root_path.size() + 1);
if (!prefix) {
return nullptr;
}
memcpy(prefix, filename, root->root_path.size());
prefix[root->root_path.size()] = '\0';
if (root->root_path.size() == name.size()) {
*relpath = NULL;
} else {
*relpath = strdup(filename + root->root_path.size() + 1);
}
return prefix;
}
json_ref w_root_stop_watch_all(void) {
std::vector<w_root_t*> roots;
json_ref stopped = json_array();
// Funky looking loop because root->cancel() needs to acquire the
// watched_roots wlock and will invalidate any iterators we might
// otherwise have held. Therefore we just loop until the map is
// empty.
while (true) {
std::shared_ptr<w_root_t> root;
{
auto map = watched_roots.wlock();
if (map->empty()) {
break;
}
auto it = map->begin();
root = it->second;
}
root->cancel();
json_array_append_new(stopped, w_string_to_json(root->root_path));
}
w_state_save();
return stopped;
}
json_ref w_root_watch_list_to_json(void) {
auto arr = json_array();
auto map = watched_roots.rlock();
for (const auto& it : *map) {
auto root = it.second;
json_array_append_new(arr, w_string_to_json(root->root_path));
}
return arr;
}
bool w_root_save_state(json_ref& state) {
bool result = true;
auto watched_dirs = json_array();
w_log(W_LOG_DBG, "saving state\n");
{
auto map = watched_roots.rlock();
for (const auto& it : *map) {
auto root = it.second;
auto obj = json_object();
json_object_set_new(obj, "path", w_string_to_json(root->root_path));
auto triggers = root->triggerListToJson();
json_object_set_new(obj, "triggers", std::move(triggers));
json_array_append_new(watched_dirs, std::move(obj));
}
}
json_object_set_new(state, "watched", std::move(watched_dirs));
return result;
}
json_ref watchman_root::triggerListToJson() const {
auto arr = json_array();
{
auto map = triggers.rlock();
for (const auto& it : *map) {
const auto& cmd = it.second;
json_array_append(arr, cmd->definition);
}
}
return arr;
}
bool w_root_load_state(const json_ref& state) {
size_t i;
auto watched = state.get_default("watched");
if (!watched) {
return true;
}
if (!json_is_array(watched)) {
return false;
}
for (i = 0; i < json_array_size(watched); i++) {
const auto& obj = watched.at(i);
bool created = false;
const char *filename;
size_t j;
char *errmsg = NULL;
auto triggers = obj.get_default("triggers");
filename = json_string_value(json_object_get(obj, "path"));
auto root = root_resolve(filename, true, &created, &errmsg);
if (!root) {
free(errmsg);
continue;
}
{
auto wlock = root->triggers.wlock();
auto& map = *wlock;
/* re-create the trigger configuration */
for (j = 0; j < json_array_size(triggers); j++) {
const auto& tobj = triggers.at(j);
// Legacy rules format
auto rarray = tobj.get_default("rules");
if (rarray) {
continue;
}
auto cmd = watchman::make_unique<watchman_trigger_command>(
root, tobj, &errmsg);
if (errmsg) {
watchman::log(
watchman::ERR,
"loading trigger for ",
root->root_path,
": ",
errmsg,
"\n");
free(errmsg);
continue;
}
cmd->start(root);
map[cmd->triggername] = std::move(cmd);
}
}
if (created) {
try {
root->inner.view->startThreads(root);
} catch (const std::exception& e) {
watchman::log(
watchman::ERR,
"root_start(",
root->root_path,
") failed: ",
e.what(),
"\n");
root->cancel();
}
}
}
return true;
}
void w_root_free_watched_roots(void) {
int last, interval;
time_t started;
{
auto map = watched_roots.rlock();
for (const auto& it : *map) {
auto root = it.second;
if (!root->cancel()) {
root->signalThreads();
}
}
}
last = live_roots;
time(&started);
w_log(W_LOG_DBG, "waiting for roots to cancel and go away %d\n", last);
interval = 100;
for (;;) {
auto current = live_roots.load();
if (current == 0) {
break;
}
if (time(NULL) > started + 3) {
w_log(W_LOG_ERR, "%ld roots were still live at exit\n", current);
break;
}
if (current != last) {
w_log(W_LOG_DBG, "waiting: %ld live\n", current);
last = current;
}
usleep(interval);
interval = std::min(interval * 2, 1000000);
}
w_log(W_LOG_DBG, "all roots are gone\n");
}
/* vim:ts=2:sw=2:et:
*/