forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebug.cpp
204 lines (167 loc) · 5.59 KB
/
debug.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
/* Copyright 2013-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
static void cmd_debug_recrawl(
struct watchman_client* client,
const json_ref& args) {
/* resolve the root */
if (json_array_size(args) != 2) {
send_error_response(
client, "wrong number of arguments for 'debug-recrawl'");
return;
}
auto root = resolveRoot(client, args);
auto resp = make_response();
root->scheduleRecrawl("debug-recrawl");
resp.set("recrawl", json_true());
send_and_dispose_response(client, std::move(resp));
}
W_CMD_REG("debug-recrawl", cmd_debug_recrawl, CMD_DAEMON, w_cmd_realpath_root)
static void cmd_debug_show_cursors(
struct watchman_client* client,
const json_ref& args) {
json_ref cursors;
/* resolve the root */
if (json_array_size(args) != 2) {
send_error_response(
client, "wrong number of arguments for 'debug-show-cursors'");
return;
}
auto root = resolveRoot(client, args);
auto resp = make_response();
{
auto map = root->inner.cursors.rlock();
cursors = json_object_of_size(map->size());
for (const auto& it : *map) {
const auto& name = it.first;
const auto& ticks = it.second;
cursors.set(name.c_str(), json_integer(ticks));
}
}
resp.set("cursors", std::move(cursors));
send_and_dispose_response(client, std::move(resp));
}
W_CMD_REG(
"debug-show-cursors",
cmd_debug_show_cursors,
CMD_DAEMON,
w_cmd_realpath_root)
/* debug-ageout */
static void cmd_debug_ageout(
struct watchman_client* client,
const json_ref& args) {
/* resolve the root */
if (json_array_size(args) != 3) {
send_error_response(client, "wrong number of arguments for 'debug-ageout'");
return;
}
auto root = resolveRoot(client, args);
std::chrono::seconds min_age(json_integer_value(json_array_get(args, 2)));
auto resp = make_response();
root->performAgeOut(min_age);
resp.set("ageout", json_true());
send_and_dispose_response(client, std::move(resp));
}
W_CMD_REG("debug-ageout", cmd_debug_ageout, CMD_DAEMON, w_cmd_realpath_root)
static void cmd_debug_poison(
struct watchman_client* client,
const json_ref& args) {
struct timeval now;
auto root = resolveRoot(client, args);
gettimeofday(&now, NULL);
set_poison_state(
root->root_path,
now,
"debug-poison",
std::error_code(ENOMEM, std::generic_category()));
auto resp = make_response();
resp.set("poison", typed_string_to_json(poisoned_reason, W_STRING_UNICODE));
send_and_dispose_response(client, std::move(resp));
}
W_CMD_REG("debug-poison", cmd_debug_poison, CMD_DAEMON, w_cmd_realpath_root)
static void cmd_debug_drop_privs(
struct watchman_client* client,
const json_ref&) {
client->client_is_owner = false;
auto resp = make_response();
resp.set("owner", json_boolean(client->client_is_owner));
send_and_dispose_response(client, std::move(resp));
}
W_CMD_REG("debug-drop-privs", cmd_debug_drop_privs, CMD_DAEMON, NULL);
static void cmd_debug_set_subscriptions_paused(
struct watchman_client* clientbase,
const json_ref& args) {
auto client = (struct watchman_user_client*)clientbase;
const auto& paused = args.at(1);
auto& paused_map = paused.object();
for (auto& it : paused_map) {
auto sub_iter = client->subscriptions.find(it.first);
if (sub_iter == client->subscriptions.end()) {
send_error_response(
client,
"this client does not have a subscription named '%s'",
it.first.c_str());
return;
}
if (!it.second.isBool()) {
send_error_response(
client,
"new value for subscription '%s' not a boolean",
it.first.c_str());
return;
}
}
auto states = json_object();
for (auto& it : paused_map) {
auto sub_iter = client->subscriptions.find(it.first);
bool old_paused = sub_iter->second->debug_paused;
bool new_paused = it.second.asBool();
sub_iter->second->debug_paused = new_paused;
states.set(
it.first,
json_object({{"old", json_boolean(old_paused)}, {"new", it.second}}));
}
auto resp = make_response();
resp.set("paused", std::move(states));
send_and_dispose_response(clientbase, std::move(resp));
}
W_CMD_REG(
"debug-set-subscriptions-paused",
cmd_debug_set_subscriptions_paused,
CMD_DAEMON,
nullptr)
static void cmd_debug_get_subscriptions(
struct watchman_client* clientbase,
const json_ref& args) {
auto client = (watchman_user_client*)clientbase;
auto root = resolveRoot(client, args);
auto resp = make_response();
auto debug_info = root->unilateralResponses->getDebugInfo();
// copy over all the key-value pairs from debug_info
resp.object().insert(debug_info.object().begin(), debug_info.object().end());
send_and_dispose_response(clientbase, std::move(resp));
}
W_CMD_REG(
"debug-get-subscriptions",
cmd_debug_get_subscriptions,
CMD_DAEMON,
w_cmd_realpath_root)
static void cmd_debug_get_asserted_states(
struct watchman_client* clientbase,
const json_ref& args) {
auto client = (watchman_user_client*)clientbase;
auto root = resolveRoot(client, args);
auto response = make_response();
// copy over all the key-value pairs to stateSet and release lock
auto states = root->assertedStates.rlock()->debugStates();
response.set({{"root", w_string_to_json(root->root_path)},
{"states", std::move(states)}});
send_and_dispose_response(clientbase, std::move(response));
}
W_CMD_REG(
"debug-get-asserted-states",
cmd_debug_get_asserted_states,
CMD_DAEMON,
w_cmd_realpath_root)
/* vim:ts=2:sw=2:et:
*/