forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clockspec.cpp
241 lines (205 loc) · 6.62 KB
/
clockspec.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
/* Copyright 2012-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
#include "make_unique.h"
static int proc_pid;
static uint64_t proc_start_time;
void ClockSpec::init() {
struct timeval tv;
proc_pid = (int)getpid();
if (gettimeofday(&tv, NULL) == -1) {
w_log(W_LOG_FATAL, "gettimeofday failed: %s\n", strerror(errno));
}
proc_start_time = (uint64_t)tv.tv_sec;
}
ClockSpec::ClockSpec(const json_ref& value) {
auto parseClockString = [=](const char* str) {
uint64_t start_time;
int pid;
uint32_t root_number;
uint32_t ticks;
// Parse a >= 2.8.2 version clock string
if (sscanf(
str,
"c:%" PRIu64 ":%d:%" PRIu32 ":%" PRIu32,
&start_time,
&pid,
&root_number,
&ticks) == 4) {
tag = w_cs_clock;
clock.start_time = start_time;
clock.pid = pid;
clock.position.rootNumber = root_number;
clock.position.ticks = ticks;
return true;
}
if (sscanf(str, "c:%d:%" PRIu32, &pid, &ticks) == 2) {
// old-style clock value (<= 2.8.2) -- by setting clock time and root
// number to 0 we guarantee that this is treated as a fresh instance
tag = w_cs_clock;
clock.start_time = 0;
clock.pid = pid;
clock.position.rootNumber = root_number;
clock.position.ticks = ticks;
return true;
}
return false;
};
switch (json_typeof(value)) {
case JSON_INTEGER:
tag = w_cs_timestamp;
timestamp = (time_t)json_integer_value(value);
return;
case JSON_OBJECT: {
auto clockStr = value.get_default("clock");
if (clockStr) {
if (!parseClockString(json_string_value(clockStr))) {
throw std::domain_error("invalid clockspec");
}
} else {
tag = w_cs_clock;
clock.start_time = 0;
clock.pid = 0;
clock.position.rootNumber = 0;
clock.position.ticks = 0;
}
auto scm = value.get_default("scm");
if (scm) {
scmMergeBase = json_to_w_string(
scm.get_default("mergebase", w_string_to_json("")));
scmMergeBaseWith = json_to_w_string(scm.get("mergebase-with"));
}
return;
}
case JSON_STRING: {
auto str = json_string_value(value);
if (str[0] == 'n' && str[1] == ':') {
tag = w_cs_named_cursor;
named_cursor.cursor = json_to_w_string(value);
return;
}
if (parseClockString(str)) {
return;
}
/* fall through to default case and throw error.
* The redundant looking comment below is a hint to
* gcc that it is ok to fall through. */
}
/* fall through */
default:
throw std::domain_error("invalid clockspec");
}
}
std::unique_ptr<ClockSpec> ClockSpec::parseOptionalClockSpec(
const json_ref& value) {
if (json_is_null(value)) {
return nullptr;
}
return watchman::make_unique<ClockSpec>(value);
}
ClockSpec::ClockSpec() : tag(w_cs_timestamp), timestamp(0) {}
ClockSpec::ClockSpec(const ClockPosition& position)
: tag(w_cs_clock), clock{proc_start_time, proc_pid, position} {}
w_query_since ClockSpec::evaluate(
const ClockPosition& position,
const uint32_t lastAgeOutTick,
watchman::Synchronized<std::unordered_map<w_string, uint32_t>>* cursorMap)
const {
w_query_since since;
switch (tag) {
case w_cs_timestamp:
// just copy the values over
since.is_timestamp = true;
since.timestamp = timestamp;
return since;
case w_cs_named_cursor: {
if (!cursorMap) {
// This is checked for and handled at parse time in SinceExpr::parse,
// so this should be impossible to hit.
throw std::runtime_error(
"illegal to use a named cursor in this context");
}
{
auto wlock = cursorMap->wlock();
auto& cursors = *wlock;
auto it = cursors.find(named_cursor.cursor);
if (it == cursors.end()) {
since.clock.is_fresh_instance = true;
since.clock.ticks = 0;
} else {
since.clock.ticks = it->second;
since.clock.is_fresh_instance = since.clock.ticks < lastAgeOutTick;
}
// record the current tick value against the cursor so that we use that
// as the basis for a subsequent query.
cursors[named_cursor.cursor] = position.ticks;
}
watchman::log(
watchman::DBG,
"resolved cursor ",
named_cursor.cursor,
" -> ",
since.clock.ticks,
"\n");
return since;
}
case w_cs_clock: {
if (clock.start_time == proc_start_time && clock.pid == proc_pid &&
clock.position.rootNumber == position.rootNumber) {
since.clock.is_fresh_instance = clock.position.ticks < lastAgeOutTick;
if (since.clock.is_fresh_instance) {
since.clock.ticks = 0;
} else {
since.clock.ticks = clock.position.ticks;
}
} else {
// If the pid, start time or root number don't match, they asked a
// different incarnation of the server or a different instance of this
// root, so we treat them as having never spoken to us before.
since.clock.is_fresh_instance = true;
since.clock.ticks = 0;
}
return since;
}
default:
throw std::runtime_error("impossible case in ClockSpec::evaluate");
}
}
bool clock_id_string(uint32_t root_number, uint32_t ticks, char *buf,
size_t bufsize) {
int res = snprintf(buf, bufsize, "c:%" PRIu64 ":%d:%u:%" PRIu32,
proc_start_time, proc_pid, root_number, ticks);
if (res == -1) {
return false;
}
return (size_t)res < bufsize;
}
w_string ClockPosition::toClockString() const {
char clockbuf[128];
if (!clock_id_string(rootNumber, ticks, clockbuf, sizeof(clockbuf))) {
throw std::runtime_error("clock is too big for clockbuf");
}
return w_string(clockbuf, W_STRING_UNICODE);
}
/* Add the current clock value to the response */
void annotate_with_clock(
const std::shared_ptr<w_root_t>& root,
json_ref& resp) {
resp.set("clock", w_string_to_json(root->view()->getCurrentClockString()));
}
json_ref ClockSpec::toJson() const {
if (hasScmParams()) {
return json_object(
{{"clock", w_string_to_json(position().toClockString())},
{"scm",
json_object(
{{"mergebase", w_string_to_json(scmMergeBase)},
{"mergebase-with", w_string_to_json(scmMergeBaseWith)}})}});
}
return w_string_to_json(position().toClockString());
}
bool ClockSpec::hasScmParams() const {
return scmMergeBase;
}
/* vim:ts=2:sw=2:et:
*/