Merge branch 'ds/sparse-cone'
[git] / t / t7519 / fsmonitor-watchman
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use IPC::Open2;
6
7 # An example hook script to integrate Watchman
8 # (https://facebook.github.io/watchman/) with git to speed up detecting
9 # new and modified files.
10 #
11 # The hook is passed a version (currently 1) and a time in nanoseconds
12 # formatted as a string and outputs to stdout all files that have been
13 # modified since the given time. Paths must be relative to the root of
14 # the working tree and separated by a single NUL.
15 #
16 # To enable this hook, rename this file to "query-watchman" and set
17 # 'git config core.fsmonitor .git/hooks/query-watchman'
18 #
19 my ($version, $time) = @ARGV;
20 #print STDERR "$0 $version $time\n";
21
22 # Check the hook interface version
23
24 if ($version == 1) {
25         # convert nanoseconds to seconds
26         # subtract one second to make sure watchman will return all changes
27         $time = int ($time / 1000000000) - 1;
28 } else {
29         die "Unsupported query-fsmonitor hook version '$version'.\n" .
30             "Falling back to scanning...\n";
31 }
32
33 my $git_work_tree;
34 if ($^O =~ 'msys' || $^O =~ 'cygwin') {
35         $git_work_tree = Win32::GetCwd();
36         $git_work_tree =~ tr/\\/\//;
37 } else {
38         require Cwd;
39         $git_work_tree = Cwd::cwd();
40 }
41
42 my $retry = 1;
43
44 launch_watchman();
45
46 sub launch_watchman {
47
48         my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j')
49             or die "open2() failed: $!\n" .
50             "Falling back to scanning...\n";
51
52         # In the query expression below we're asking for names of files that
53         # changed since $time but were not transient (ie created after
54         # $time but no longer exist).
55         #
56         # To accomplish this, we're using the "since" generator to use the
57         # recency index to select candidate nodes and "fields" to limit the
58         # output to file names only.
59
60         my $query = <<" END";
61                 ["query", "$git_work_tree", {
62                         "since": $time,
63                         "fields": ["name"]
64                 }]
65         END
66         
67         open (my $fh, ">", ".git/watchman-query.json");
68         print $fh $query;
69         close $fh;
70
71         print CHLD_IN $query;
72         close CHLD_IN;
73         my $response = do {local $/; <CHLD_OUT>};
74
75         open ($fh, ">", ".git/watchman-response.json");
76         print $fh $response;
77         close $fh;
78
79         die "Watchman: command returned no output.\n" .
80             "Falling back to scanning...\n" if $response eq "";
81         die "Watchman: command returned invalid output: $response\n" .
82             "Falling back to scanning...\n" unless $response =~ /^\{/;
83
84         my $json_pkg;
85         eval {
86                 require JSON::XS;
87                 $json_pkg = "JSON::XS";
88                 1;
89         } or do {
90                 require JSON::PP;
91                 $json_pkg = "JSON::PP";
92         };
93
94         my $o = $json_pkg->new->utf8->decode($response);
95
96         if ($retry > 0 and $o->{error} and $o->{error} =~ m/unable to resolve root .* directory (.*) is not watched/) {
97                 print STDERR "Adding '$git_work_tree' to watchman's watch list.\n";
98                 $retry--;
99                 qx/watchman watch "$git_work_tree"/;
100                 die "Failed to make watchman watch '$git_work_tree'.\n" .
101                     "Falling back to scanning...\n" if $? != 0;
102
103                 # Watchman will always return all files on the first query so
104                 # return the fast "everything is dirty" flag to git and do the
105                 # Watchman query just to get it over with now so we won't pay
106                 # the cost in git to look up each individual file.
107
108                 open ($fh, ">", ".git/watchman-output.out");
109                 print "/\0";
110                 close $fh;
111
112                 print "/\0";
113                 eval { launch_watchman() };
114                 exit 0;
115         }
116
117         die "Watchman: $o->{error}.\n" .
118             "Falling back to scanning...\n" if $o->{error};
119
120         open ($fh, ">", ".git/watchman-output.out");
121         binmode $fh, ":utf8";
122         print $fh @{$o->{files}};
123         close $fh;
124
125         binmode STDOUT, ":utf8";
126         local $, = "\0";
127         print @{$o->{files}};
128 }