forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watchman.h
995 lines (846 loc) · 27.6 KB
/
watchman.h
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
/* Copyright 2012-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#ifndef WATCHMAN_H
#define WATCHMAN_H
#ifdef __cplusplus
extern "C" {
#endif
#define _GNU_SOURCE 1
#include "config.h"
#include <assert.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <ctype.h>
#include <stdint.h>
#include <sys/stat.h>
#if HAVE_SYS_INOTIFY_H
# include <sys/inotify.h>
#endif
#if HAVE_SYS_EVENT_H
# include <sys/event.h>
#endif
#if HAVE_PORT_H
# include <port.h>
#endif
#include <signal.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <stdbool.h>
#include <sys/time.h>
#include <time.h>
#ifndef _WIN32
#include <libgen.h>
#endif
#include <inttypes.h>
#include <limits.h>
#ifndef _WIN32
#include <sys/socket.h>
#include <sys/un.h>
#endif
#include <fcntl.h>
#if defined(__linux__) && !defined(O_CLOEXEC)
# define O_CLOEXEC 02000000 /* set close_on_exec, from asm/fcntl.h */
#endif
#ifndef O_CLOEXEC
# define O_CLOEXEC 0
#endif
#ifndef _WIN32
#include <sys/poll.h>
#include <sys/wait.h>
#endif
#ifdef HAVE_PCRE_H
# include <pcre.h>
#endif
#ifdef HAVE_EXECINFO_H
# include <execinfo.h>
#endif
#ifndef _WIN32
#include <sys/uio.h>
#include <pwd.h>
#include <sysexits.h>
#endif
#include <spawn.h>
#include <stddef.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
#endif
#ifndef _WIN32
// Not explicitly exported on Darwin, so we get to define it.
extern char **environ;
#endif
#ifdef _WIN32
# define PRIsize_t "Iu"
#else
# define PRIsize_t "zu"
#endif
#ifndef WATCHMAN_DIR_SEP
# define WATCHMAN_DIR_SEP '/'
# define WATCHMAN_DIR_DOT '.'
#endif
#ifdef _WIN32
# define PRIsize_t "Iu"
#else
# define PRIsize_t "zu"
#endif
extern char *poisoned_reason;
#include "watchman_hash.h"
#include "watchman_stream.h"
#include "jansson.h"
#ifdef HAVE_CORESERVICES_CORESERVICES_H
# include <CoreServices/CoreServices.h>
# if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070
# define HAVE_FSEVENTS 0
# else
# define HAVE_FSEVENTS 1
# endif
#endif
// Helpers for pasting __LINE__ for symbol generation
#define w_paste2(pre, post) pre ## post
#define w_paste1(pre, post) w_paste2(pre, post)
#define w_gen_symbol(pre) w_paste1(pre, __LINE__)
// We make use of constructors to glue together modules
// without maintaining static lists of things in the build
// configuration. These are helpers to make this work
// more portably
#ifdef _WIN32
#pragma section(".CRT$XCU", read)
# define w_ctor_fn_type(sym) void __cdecl sym(void)
# define w_ctor_fn_reg(sym) \
static __declspec(allocate(".CRT$XCU")) \
void (__cdecl * w_paste1(sym, _reg))(void) = sym;
#else
# define w_ctor_fn_type(sym) \
__attribute__((constructor)) void sym(void)
# define w_ctor_fn_reg(sym) /* not needed */
#endif
/* sane, reasonably large filename size that we'll use
* throughout; POSIX seems to define smallish buffers
* that seem risky */
#define WATCHMAN_NAME_MAX 4096
// rpmbuild may enable fortify which turns on
// warn_unused_result on a number of system functions.
// This gives us a reasonably clean way to suppress
// these warnings when we're using stack protection.
#if __USE_FORTIFY_LEVEL > 0
# define ignore_result(x) \
do { __typeof__(x) _res = x; (void)_res; } while(0)
#elif _MSC_VER >= 1400
# define ignore_result(x) \
do { int _res = (int)x; (void)_res; } while(0)
#else
# define ignore_result(x) x
#endif
// self-documenting hint to the compiler that we didn't use it
#define unused_parameter(x) (void)x
static inline void w_refcnt_add(volatile long *refcnt)
{
(void)__sync_fetch_and_add(refcnt, 1);
}
/* returns true if we deleted the last ref */
static inline bool w_refcnt_del(volatile long *refcnt)
{
return __sync_add_and_fetch(refcnt, -1) == 0;
}
static inline void w_set_cloexec(int fd)
{
#ifndef _WIN32
ignore_result(fcntl(fd, F_SETFD, FD_CLOEXEC));
#else
unused_parameter(fd);
#endif
}
static inline void w_set_nonblock(int fd)
{
#ifndef _WIN32
ignore_result(fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK));
#else
unused_parameter(fd);
#endif
}
static inline void w_clear_nonblock(int fd)
{
#ifndef _WIN32
ignore_result(fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_NONBLOCK));
#else
unused_parameter(fd);
#endif
}
// Make a temporary file name and open it.
// Marks the file as CLOEXEC
w_stm_t w_mkstemp(char *templ);
char *w_realpath(const char *filename);
bool w_is_path_absolute(const char *path);
#ifndef _WIN32
static inline bool w_path_exists(const char *path) {
return access(path, F_OK) == 0;
}
#else
bool w_path_exists(const char *path);
#endif
struct watchman_string;
typedef struct watchman_string w_string_t;
struct watchman_string {
long refcnt;
uint32_t hval;
uint32_t len;
w_string_t *slice;
const char *buf;
};
/* small for testing, but should make this greater than the number of dirs we
* have in our repos to avoid realloc */
#define HINT_NUM_DIRS 128*1024
/* We leverage the fact that our aligned pointers will never set the LSB of a
* pointer value. We can use the LSB to indicate whether kqueue entries are
* dirs or files */
#define SET_DIR_BIT(dir) ((void*)(((intptr_t)dir) | 0x1))
#define IS_DIR_BIT_SET(dir) ((((intptr_t)dir) & 0x1) == 0x1)
#define DECODE_DIR(dir) ((void*)(((intptr_t)dir) & ~0x1))
struct watchman_file;
struct watchman_dir;
struct watchman_root;
struct watchman_pending_fs;
struct watchman_trigger_command;
typedef struct watchman_root w_root_t;
// Process global state for the selected watcher
typedef void *watchman_global_watcher_t;
// Per-watch state for the selected watcher
typedef void *watchman_watcher_t;
struct watchman_clock {
uint32_t ticks;
struct timeval tv;
};
typedef struct watchman_clock w_clock_t;
#define W_PENDING_RECURSIVE 1
#define W_PENDING_VIA_NOTIFY 2
#define W_PENDING_CRAWL_ONLY 4
struct watchman_pending_fs {
struct watchman_pending_fs *next;
w_string_t *path;
struct timeval now;
int flags;
};
struct watchman_pending_collection {
struct watchman_pending_fs *pending;
w_ht_t *pending_uniq;
pthread_mutex_t lock;
pthread_cond_t cond;
bool pinged;
};
bool w_pending_coll_init(struct watchman_pending_collection *coll);
void w_pending_coll_destroy(struct watchman_pending_collection *coll);
void w_pending_coll_drain(struct watchman_pending_collection *coll);
void w_pending_coll_lock(struct watchman_pending_collection *coll);
void w_pending_coll_unlock(struct watchman_pending_collection *coll);
bool w_pending_coll_add(struct watchman_pending_collection *coll,
w_string_t *path, struct timeval now, int flags);
bool w_pending_coll_add_rel(struct watchman_pending_collection *coll,
struct watchman_dir *dir, const char *name,
struct timeval now, int flags);
void w_pending_coll_append(struct watchman_pending_collection *target,
struct watchman_pending_collection *src);
struct watchman_pending_fs *w_pending_coll_pop(
struct watchman_pending_collection *coll);
bool w_pending_coll_lock_and_wait(struct watchman_pending_collection *coll,
int timeoutms);
void w_pending_coll_ping(struct watchman_pending_collection *coll);
uint32_t w_pending_coll_size(struct watchman_pending_collection *coll);
void w_pending_fs_free(struct watchman_pending_fs *p);
struct watchman_dir {
/* full path */
w_string_t *path;
/* files contained in this dir (keyed by file->name) */
w_ht_t *files;
/* child dirs contained in this dir (keyed by dir->path) */
w_ht_t *dirs;
};
struct watchman_ops {
// What's it called??
const char *name;
// if this watcher notifies for individual files contained within
// a watched dir, false if it only notifies for dirs
#define WATCHER_HAS_PER_FILE_NOTIFICATIONS 1
// if renames do not reliably report the individual
// files renamed in the hierarchy
#define WATCHER_COALESCED_RENAME 2
unsigned flags;
// Perform any global initialization needed for the watcher mechanism
// and return a context pointer that will be passed to all other ops
watchman_global_watcher_t (*global_init)(void);
// Perform global shutdown of the watcher at process shutdown time.
// We're not guaranteed that this will be called, depending on how
// the process is shutdown
void (*global_dtor)(watchman_global_watcher_t watcher);
// Perform watcher-specific initialization for a watched root.
// Do not start threads here
bool (*root_init)(watchman_global_watcher_t watcher, w_root_t *root,
char **errmsg);
// Start up threads or similar. Called in the context of the
// notify thread
bool (*root_start)(watchman_global_watcher_t watcher, w_root_t *root);
// Perform watcher-specific cleanup for a watched root when it is freed
void (*root_dtor)(watchman_global_watcher_t watcher, w_root_t *root);
// Initiate an OS-level watch on the provided file
bool (*root_start_watch_file)(watchman_global_watcher_t watcher,
w_root_t *root, struct watchman_file *file);
// Cancel an OS-level watch on the provided file
void (*root_stop_watch_file)(watchman_global_watcher_t watcher,
w_root_t *root, struct watchman_file *file);
// Initiate an OS-level watch on the provided dir, return a DIR
// handle, or NULL on error
struct watchman_dir_handle *(*root_start_watch_dir)(
watchman_global_watcher_t watcher,
w_root_t *root, struct watchman_dir *dir, struct timeval now,
const char *path);
// Cancel an OS-level watch on the provided dir
void (*root_stop_watch_dir)(watchman_global_watcher_t watcher,
w_root_t *root, struct watchman_dir *dir);
// Signal any threads to terminate. Do not join them here.
void (*root_signal_threads)(watchman_global_watcher_t watcher,
w_root_t *root);
// Consume any available notifications. If there are none pending,
// does not block.
bool (*root_consume_notify)(watchman_global_watcher_t watcher,
w_root_t *root, struct watchman_pending_collection *coll);
// Wait for an inotify event to become available
bool (*root_wait_notify)(watchman_global_watcher_t watcher,
w_root_t *root, int timeoutms);
// Called when freeing a file node
void (*file_free)(watchman_global_watcher_t watcher,
struct watchman_file *file);
};
struct watchman_stat {
struct timespec atime, mtime, ctime;
off_t size;
mode_t mode;
uid_t uid;
gid_t gid;
ino_t ino;
dev_t dev;
nlink_t nlink;
};
/* opaque (system dependent) type for walking dir contents */
struct watchman_dir_handle;
struct watchman_dir_ent {
bool has_stat;
char *d_name;
struct watchman_stat stat;
};
struct watchman_dir_handle *w_dir_open(const char *path);
struct watchman_dir_ent *w_dir_read(struct watchman_dir_handle *dir);
void w_dir_close(struct watchman_dir_handle *dir);
int w_dir_fd(struct watchman_dir_handle *dir);
struct watchman_file {
/* our name within the parent dir */
w_string_t *name;
/* the parent dir */
struct watchman_dir *parent;
/* linkage to files ordered by changed time */
struct watchman_file *prev, *next;
/* linkage to files ordered by common suffix */
struct watchman_file *suffix_prev, *suffix_next;
/* the time we last observed a change to this file */
w_clock_t otime;
/* the time we first observed this file OR the time
* that this file switched from !exists to exists.
* This is thus the "created time" */
w_clock_t ctime;
/* whether we believe that this file still exists */
bool exists;
/* whether we think this file might not exist */
bool maybe_deleted;
/* cache stat results so we can tell if an entry
* changed */
struct watchman_stat stat;
};
#define WATCHMAN_COOKIE_PREFIX ".watchman-cookie-"
struct watchman_query_cookie {
pthread_cond_t cond;
bool seen;
};
#define WATCHMAN_IO_BUF_SIZE 1048576
#define WATCHMAN_BATCH_LIMIT (16*1024)
#define DEFAULT_SETTLE_PERIOD 20
/* Prune out nodes that were deleted roughly 12-36 hours ago */
#define DEFAULT_GC_AGE (86400/2)
#define DEFAULT_GC_INTERVAL 86400
/* Idle out watches that haven't had activity in several days */
#define DEFAULT_REAP_AGE (86400*5)
struct watchman_root {
long refcnt;
/* path to root */
w_string_t *root_path;
bool case_sensitive;
/* our locking granularity is per-root */
pthread_mutex_t lock;
pthread_t notify_thread;
pthread_t io_thread;
/* map of rule id => struct watchman_trigger_command */
w_ht_t *commands;
/* path to the query cookie dir */
w_string_t *query_cookie_dir;
w_string_t *query_cookie_prefix;
w_ht_t *query_cookies;
/* map of dir name => dirname
* if the map has an entry for a given dir, we're ignoring it */
w_ht_t *ignore_vcs;
w_ht_t *ignore_dirs;
int trigger_settle;
int gc_interval;
int gc_age;
int idle_reap_age;
/* config options loaded via json file */
json_t *config_file;
/* how many times we've had to recrawl */
int recrawl_count;
w_string_t *last_recrawl_reason;
// Why we failed to watch
w_string_t *failure_reason;
// Last ad-hoc warning message
w_string_t *warning;
/* queue of items that we need to stat/process */
struct watchman_pending_collection pending;
/* --- everything below this point will be reset on w_root_init --- */
bool _init_sentinel_;
/* root number */
uint32_t number;
// Watcher specific state
watchman_watcher_t watch;
/* map of dir name to a dir */
w_ht_t *dirname_to_dir;
/* the most recently changed file */
struct watchman_file *latest_file;
/* current tick */
uint32_t ticks;
bool done_initial;
/* if true, we've decided that we should re-crawl the root
* for the sake of ensuring consistency */
bool should_recrawl;
bool cancelled;
/* map of cursor name => last observed tick value */
w_ht_t *cursors;
/* map of filename suffix => watchman_file at the head
* of the suffix index. Linkage via suffix_next */
w_ht_t *suffixes;
uint32_t next_cmd_id;
uint32_t last_trigger_tick;
uint32_t pending_trigger_tick;
uint32_t pending_sub_tick;
uint32_t last_age_out_tick;
uint32_t last_recheck_tick;
time_t last_age_out_timestamp;
time_t last_cmd_timestamp;
time_t last_reap_timestamp;
};
enum w_pdu_type {
need_data,
is_json_compact,
is_json_pretty,
is_bser
};
struct watchman_json_buffer {
char *buf;
uint32_t allocd;
uint32_t rpos, wpos;
enum w_pdu_type pdu_type;
};
typedef struct watchman_json_buffer w_jbuffer_t;
bool w_json_buffer_init(w_jbuffer_t *jr);
void w_json_buffer_reset(w_jbuffer_t *jr);
void w_json_buffer_free(w_jbuffer_t *jr);
json_t *w_json_buffer_next(w_jbuffer_t *jr, w_stm_t stm, json_error_t *jerr);
bool w_json_buffer_passthru(w_jbuffer_t *jr,
enum w_pdu_type output_pdu,
w_jbuffer_t *output_pdu_buf,
w_stm_t stm);
bool w_json_buffer_write(w_jbuffer_t *jr, w_stm_t stm, json_t *json, int flags);
bool w_json_buffer_write_bser(w_jbuffer_t *jr, w_stm_t stm, json_t *json);
bool w_ser_write_pdu(enum w_pdu_type pdu_type,
w_jbuffer_t *jr, w_stm_t stm, json_t *json);
#define BSER_MAGIC "\x00\x01"
int w_bser_write_pdu(json_t *json, json_dump_callback_t dump, void *data);
int w_bser_dump(json_t *json, json_dump_callback_t dump, void *data);
bool bunser_int(const char *buf, json_int_t avail,
json_int_t *needed, json_int_t *val);
json_t *bunser(const char *buf, const char *end,
json_int_t *needed, json_error_t *jerr);
struct watchman_client_response {
struct watchman_client_response *next;
json_t *json;
};
struct watchman_client_subscription;
struct watchman_client {
w_stm_t stm;
w_evt_t ping;
int log_level;
w_jbuffer_t reader, writer;
bool client_mode;
enum w_pdu_type pdu_type;
struct watchman_client_response *head, *tail;
/* map of subscription name => struct watchman_client_subscription */
w_ht_t *subscriptions;
};
extern pthread_mutex_t w_client_lock;
extern w_ht_t *clients;
void w_mark_dead(pid_t pid);
bool w_reap_children(bool block);
#define W_LOG_OFF 0
#define W_LOG_ERR 1
#define W_LOG_DBG 2
#define W_LOG_FATAL -1
#ifndef WATCHMAN_FMT_STRING
# define WATCHMAN_FMT_STRING(x) x
#endif
extern int log_level;
extern char *log_name;
const char *w_set_thread_name(const char *fmt, ...);
const char *w_get_thread_name(void);
void w_setup_signal_handlers(void);
void w_log(int level, WATCHMAN_FMT_STRING(const char *fmt), ...)
#ifdef __GNUC__
__attribute__((format(printf, 2, 3)))
#endif
;
void w_request_shutdown(void);
bool w_should_log_to_clients(int level);
void w_log_to_clients(int level, const char *buf);
bool w_is_ignored(w_root_t *root, const char *path, uint32_t pathlen);
void w_timeoutms_to_abs_timespec(int timeoutms, struct timespec *deadline);
json_t *w_string_to_json(w_string_t *str);
w_string_t *w_string_new(const char *str);
#ifdef _WIN32
w_string_t *w_string_new_wchar(WCHAR *str, int len);
#endif
w_string_t *w_string_make_printf(const char *format, ...);
w_string_t *w_string_new_lower(const char *str);
w_string_t *w_string_dup_lower(w_string_t *str);
w_string_t *w_string_suffix(w_string_t *str);
bool w_string_suffix_match(w_string_t *str, w_string_t *suffix);
w_string_t *w_string_slice(w_string_t *str, uint32_t start, uint32_t len);
char *w_string_dup_buf(const w_string_t *str);
void w_string_addref(w_string_t *str);
void w_string_delref(w_string_t *str);
int w_string_compare(const w_string_t *a, const w_string_t *b);
bool w_string_equal(const w_string_t *a, const w_string_t *b);
bool w_string_equal_cstring(const w_string_t *a, const char *b);
bool w_string_equal_caseless(const w_string_t *a, const w_string_t *b);
w_string_t *w_string_dirname(w_string_t *str);
w_string_t *w_string_basename(w_string_t *str);
w_string_t *w_string_new_basename(const char *path);
w_string_t *w_string_canon_path(w_string_t *str);
void w_string_in_place_normalize_separators(w_string_t **str, char target_sep);
w_string_t *w_string_normalize_separators(w_string_t *str, char target_sep);
w_string_t *w_string_path_cat(w_string_t *parent, w_string_t *rhs);
w_string_t *w_string_path_cat_cstr(w_string_t *parent, const char *rhs);
bool w_string_startswith(w_string_t *str, w_string_t *prefix);
bool w_string_startswith_caseless(w_string_t *str, w_string_t *prefix);
w_string_t *w_string_shell_escape(const w_string_t *str);
w_string_t *w_string_implode(json_t *arr, const char *delim);
// Returns the name of the filesystem for the specified path
w_string_t *w_fstype(const char *path);
void w_root_crawl_recursive(w_root_t *root, w_string_t *dir_name, time_t now);
w_root_t *w_root_resolve(const char *path, bool auto_watch, char **errmsg);
w_root_t *w_root_resolve_for_client_mode(const char *filename, char **errmsg);
char *w_find_enclosing_root(const char *filename, char **relpath);
struct watchman_file *w_root_resolve_file(w_root_t *root,
struct watchman_dir *dir, w_string_t *file_name,
struct timeval now);
void w_root_perform_age_out(w_root_t *root, int min_age);
void w_root_free_watched_roots(void);
void w_root_schedule_recrawl(w_root_t *root, const char *why);
bool w_root_cancel(w_root_t *root);
bool w_root_stop_watch(w_root_t *root);
json_t *w_root_stop_watch_all(void);
void w_root_mark_deleted(w_root_t *root, struct watchman_dir *dir,
struct timeval now, bool recursive);
void w_root_reap(void);
void w_root_delref(w_root_t *root);
void w_root_addref(w_root_t *root);
void w_root_set_warning(w_root_t *root, w_string_t *str);
struct watchman_dir *w_root_resolve_dir(w_root_t *root,
w_string_t *dir_name, bool create);
void w_root_process_path(w_root_t *root,
struct watchman_pending_collection *coll, w_string_t *full_path,
struct timeval now, int flags,
struct watchman_dir_ent *pre_stat);
bool w_root_process_pending(w_root_t *root,
struct watchman_pending_collection *coll,
bool pull_from_root);
void w_root_mark_file_changed(w_root_t *root, struct watchman_file *file,
struct timeval now);
bool w_root_sync_to_now(w_root_t *root, int timeoutms);
void w_root_lock(w_root_t *root);
void w_root_unlock(w_root_t *root);
/* Bob Jenkins' lookup3.c hash function */
uint32_t w_hash_bytes(const void *key, size_t length, uint32_t initval);
struct watchman_rule_match {
uint32_t root_number;
w_string_t *relname;
bool is_new;
struct watchman_file *file;
};
enum w_clockspec_tag {
w_cs_timestamp,
w_cs_clock,
w_cs_named_cursor
};
struct w_clockspec {
enum w_clockspec_tag tag;
union {
struct timeval timestamp;
struct {
uint64_t start_time;
int pid;
uint32_t root_number;
uint32_t ticks;
} clock;
struct {
w_string_t *cursor;
} named_cursor;
};
};
struct w_query_since {
bool is_timestamp;
union {
struct timeval timestamp;
struct {
bool is_fresh_instance;
uint32_t ticks;
} clock;
};
};
void w_run_subscription_rules(
struct watchman_client *client,
struct watchman_client_subscription *sub,
w_root_t *root);
void w_match_results_free(uint32_t num_matches,
struct watchman_rule_match *matches);
static inline uint32_t next_power_2(uint32_t n)
{
n |= (n >> 16);
n |= (n >> 8);
n |= (n >> 4);
n |= (n >> 2);
n |= (n >> 1);
return n + 1;
}
/* compare two timevals and return -1 if a is < b, 0 if a == b,
* or 1 if b > a */
static inline int w_timeval_compare(struct timeval a, struct timeval b)
{
if (a.tv_sec < b.tv_sec) {
return -1;
}
if (a.tv_sec > b.tv_sec) {
return 1;
}
if (a.tv_usec < b.tv_usec) {
return -1;
}
if (a.tv_usec > b.tv_usec) {
return 1;
}
return 0;
}
#define WATCHMAN_USEC_IN_SEC 1000000
#define WATCHMAN_NSEC_IN_USEC 1000
#define WATCHMAN_NSEC_IN_SEC (1000 * 1000 * 1000)
#define WATCHMAN_NSEC_IN_MSEC 1000000
#if defined(__APPLE__) || defined(__FreeBSD__) \
|| (defined(__NetBSD__) && (__NetBSD_Version__ < 6099000000))
/* BSD-style subsecond timespec */
#define WATCHMAN_ST_TIMESPEC(type) st_##type##timespec
#else
/* POSIX standard timespec */
#define WATCHMAN_ST_TIMESPEC(type) st_##type##tim
#endif
static inline void w_timeval_add(const struct timeval a,
const struct timeval b, struct timeval *result)
{
result->tv_sec = a.tv_sec + b.tv_sec;
result->tv_usec = a.tv_usec + b.tv_usec;
if (result->tv_usec > WATCHMAN_USEC_IN_SEC) {
result->tv_sec++;
result->tv_usec -= WATCHMAN_USEC_IN_SEC;
}
}
static inline void w_timeval_sub(const struct timeval a,
const struct timeval b, struct timeval *result)
{
result->tv_sec = a.tv_sec - b.tv_sec;
result->tv_usec = a.tv_usec - b.tv_usec;
if (result->tv_usec < 0) {
result->tv_sec--;
result->tv_usec += WATCHMAN_USEC_IN_SEC;
}
}
static inline void w_timeval_to_timespec(
const struct timeval a, struct timespec *ts)
{
ts->tv_sec = a.tv_sec;
ts->tv_nsec = a.tv_usec * WATCHMAN_NSEC_IN_USEC;
}
static inline double w_timeval_diff(struct timeval start, struct timeval end)
{
double s = start.tv_sec + ((double)start.tv_usec)/WATCHMAN_USEC_IN_SEC;
double e = end.tv_sec + ((double)end.tv_usec)/WATCHMAN_USEC_IN_SEC;
return e - s;
}
extern const char *watchman_tmp_dir;
extern char *watchman_state_file;
extern int dont_save_state;
bool w_state_save(void);
bool w_state_load(void);
bool w_root_save_state(json_t *state);
bool w_root_load_state(json_t *state);
json_t *w_root_trigger_list_to_json(w_root_t *root);
json_t *w_root_watch_list_to_json(void);
bool w_start_listener(const char *socket_path);
void w_check_my_sock(void);
char **w_argv_copy_from_json(json_t *arr, int skip);
w_ht_t *w_envp_make_ht(void);
char **w_envp_make_from_ht(w_ht_t *ht, uint32_t *env_size);
void w_envp_set_cstring(w_ht_t *envht, const char *key, const char *val);
void w_envp_set(w_ht_t *envht, const char *key, w_string_t *val);
void w_envp_set_list(w_ht_t *envht, const char *key, json_t *arr);
void w_envp_set_bool(w_ht_t *envht, const char *key, bool val);
void w_envp_unset(w_ht_t *envht, const char *key);
struct watchman_getopt {
/* name of long option: --optname */
const char *optname;
/* if non-zero, short option character */
int shortopt;
/* help text shown in the usage information */
const char *helptext;
/* whether we accept an argument */
enum {
OPT_NONE,
REQ_STRING,
REQ_INT,
} argtype;
/* if an argument was provided, *val will be set to
* point to the option value.
* Because we only update the option if one was provided
* by the user, you can safely pre-initialize the val
* pointer to your choice of default.
* */
void *val;
/* if argtype != OPT_NONE, this is the label used to
* refer to the argument in the help text. If left
* blank, we'll use the string "ARG" as a generic
* alternative */
const char *arglabel;
// Whether this option should be passed to the child
// when running under the gimli monitor
int is_daemon;
#define IS_DAEMON 1
#define NOT_DAEMON 0
};
#ifndef MIN
# define MIN(a, b) (a) < (b) ? (a) : (b)
#endif
#ifndef MAX
# define MAX(a, b) (a) > (b) ? (a) : (b)
#endif
bool w_getopt(struct watchman_getopt *opts, int *argcp, char ***argvp,
char ***daemon_argv);
void usage(struct watchman_getopt *opts, FILE *where);
void print_command_list_for_help(FILE *where);
struct w_clockspec *w_clockspec_new_clock(uint32_t root_number, uint32_t ticks);
struct w_clockspec *w_clockspec_parse(json_t *value);
void w_clockspec_eval(w_root_t *root,
const struct w_clockspec *spec,
struct w_query_since *since);
void w_clockspec_free(struct w_clockspec *spec);
const char *get_sock_name(void);
// Helps write shorter lines
static inline void set_prop(json_t *obj, const char *key, json_t *val)
{
json_object_set_new_nocheck(obj, key, val);
}
void cfg_shutdown(void);
void cfg_set_arg(const char *name, json_t *val);
void cfg_load_global_config_file(void);
json_t *cfg_get_json(w_root_t *root, const char *name);
const char *cfg_get_string(w_root_t *root, const char *name,
const char *defval);
json_int_t cfg_get_int(w_root_t *root, const char *name,
json_int_t defval);
bool cfg_get_bool(w_root_t *root, const char *name, bool defval);
double cfg_get_double(w_root_t *root, const char *name, double defval);
const char *cfg_get_trouble_url(void);
json_t *cfg_compute_root_files(bool *enforcing);
#include "watchman_query.h"
#include "watchman_cmd.h"
struct watchman_client_subscription {
w_root_t *root;
w_string_t *name;
w_query *query;
bool vcs_defer;
uint32_t last_sub_tick;
struct w_query_field_list field_list;
};
struct watchman_trigger_command {
w_string_t *triggername;
w_query *query;
json_t *definition;
json_t *command;
w_ht_t *envht;
struct w_query_field_list field_list;
int append_files;
enum {
input_dev_null,
input_json,
input_name_list
} stdin_style;
uint32_t max_files_stdin;
int stdout_flags;
int stderr_flags;
const char *stdout_name;
const char *stderr_name;
/* While we are running, this holds the pid
* of the running process */
pid_t current_proc;
};
void w_trigger_command_free(struct watchman_trigger_command *cmd);
void w_assess_trigger(w_root_t *root, struct watchman_trigger_command *cmd);
struct watchman_trigger_command *w_build_trigger_from_def(
w_root_t *root, json_t *trig, char **errmsg);
void set_poison_state(w_root_t *root, w_string_t *dir,
struct timeval now, const char *syscall, int err,
const char *reason);
void watchman_watcher_init(void);
void watchman_watcher_dtor(void);
void handle_open_errno(w_root_t *root, struct watchman_dir *dir,
struct timeval now, const char *syscall, int err,
const char *reason);
void stop_watching_dir(w_root_t *root, struct watchman_dir *dir);
uint32_t u32_strlen(const char *str);
int w_lstat(const char *path, struct stat *st, bool case_sensitive);
extern struct watchman_ops fsevents_watcher;
extern struct watchman_ops kqueue_watcher;
extern struct watchman_ops inotify_watcher;
extern struct watchman_ops portfs_watcher;
extern struct watchman_ops win32_watcher;
void w_ioprio_set_low(void);
void w_ioprio_set_normal(void);
struct flag_map {
uint32_t value;
const char *label;
};
void w_expand_flags(const struct flag_map *fmap, uint32_t flags,
char *buf, size_t len);
#ifdef __cplusplus
}
#endif
#endif
/* vim:ts=2:sw=2:et:
*/