3 # A hook script to verify what is about to be committed.
4 # Called by "git commit" with no arguments. The hook should
5 # exit with non-zero status after issuing an appropriate message
6 # if it wants to stop the commit.
9 use lib
"solenv/clang-format";
15 sub check_whitespaces
($)
18 my $src_limited = "bas|c|cpp|cxx|h|hrc|hxx|idl|inl|java|swift|map|MK|mm|pmk|pl|pm|sdi|sh|src|tab|ui|vb|xcu|xml|xsl|py";
19 my $src_full = "bas|c|cpp|cxx|h|hrc|hxx|idl|inl|java|swift|map|mk|MK|mm|pmk|pl|pm|sdi|sh|src|tab|ui|vb|xcu|xml|xsl|py";
21 my %modules = (basctl
=>'basctl', chart2
=>'chart', cui
=>'cui', dbaccess
=>'dba', desktop
=>'dkt', editeng
=>'editeng',
22 extensions
=>'pcr', filter
=>'flt', formula
=>'for', fpicker
=>'fps', framework
=>'fwk', reportdesign
=>'rpt',
23 sc
=>'sc', sd
=>'sd', sfx2
=>'sfx', starmath
=>'sm', svtools
=>'svt', svx
=>'svx', sw
=>'sw', uui
=>'uui',
24 vcl
=>'vcl', writerperfect
=>'wpt', xmlsecurity
=>'xsc');
28 my $reported_filename = "";
32 my ($why, $line, $file_filter) = @_;
33 if (!defined $file_filter || $filename =~ /\.($file_filter)$/)
38 print STDERR
"* You have some suspicious patch lines:\n";
42 if ($reported_filename ne $filename)
44 print STDERR
"* In $filename\n";
45 $reported_filename = $filename;
47 print STDERR
"* $why (line $lineno)\n";
48 print STDERR
"$filename:$lineno:$line\n";
51 open( FILES
, "git diff-index -p -M --cached $h |" ) || die "Cannot run git diff-index.";
54 if (m
|^diff
--git a
/(.*) b/\
1$|)
59 if (/^@@ -\S+ \+(\d+)/)
75 bad_line
("trailing whitespace", $_ , $src_limited);
79 bad_line
("DOS lineends", $_ , $src_limited);
83 bad_line
("indent with Tab", $_, $src_limited);
87 bad_line
("unresolved merge conflict", $src_full);
91 bad_line
("temporary debug in commit", $_, $src_limited);
93 if ((/OOXMLIMPORT/) and ($filename =~ /ooxmlexport/))
95 bad_line
("OOXMLIMPORT definition used in a ooxmlexport file", $_, "cxx");
97 if ((/OOXMLEXPORT/) and ($filename =~ /ooxmlimport/))
99 bad_line
("OOXMLEXPORT definition used in a ooxmlimport file", $_, "cxx");
101 if ((/<toolbar:toolbaritem/) and not(/\/>/))
103 bad_line
("Use /> to close toolbar:toolbaritem", $_, "xml");
105 if (/<property name="use[-_]markup">True<\/property
>/)
107 bad_line
("use font attributes instead of use-markup", $_, "ui");
109 if (/<property name="tooltip[-_]markup"/ )
111 bad_line
("use tooltip-text instead of tooltip_markup", $_, "ui");
113 if (/<property name="margin[-_]left"/ )
115 bad_line
("use margin-start instead of margin-left", $_, "ui");
117 if (/<property name="margin[-_]right"/ )
119 bad_line
("use margin-end instead of margin-right", $_, "ui");
121 if (/<object class="GtkAlignment"/)
123 bad_line
("use margin-start (etc) on child instead of a GtkAlignment", $_, "ui");
125 if (/<property name="use[-_]stock"/ )
127 bad_line
("use translation context 'stock' and the English string as button label instead", $_, "ui");
129 if (/<property name="stock[-_]id"/ )
131 bad_line
("use an icon-name listed at https://developer.gnome.org/gtk3/stable/gtk3-Stock-Items.html", $_, "ui");
133 if (/<property name="stock"/ )
135 bad_line
("use an icon-name listed at https://developer.gnome.org/gtk3/stable/gtk3-Stock-Items.html", $_, "ui");
137 if ((/translatable="yes"/) and not(/context=/))
139 bad_line
("translatable .ui file line without context", $_, "ui");
141 if ((/requires/) and (/lib="gtk+/) and not (/version="3.20/))
143 bad_line
("min supported version of gtk3 is 3.20", $_, "ui");
145 if ((/<interface/) and not(/domain=/))
147 bad_line
(".ui file without translation domain", $_, "ui");
149 if (/<interface domain=/)
151 foreach my $key (keys %modules) {
152 if ((rindex($filename, $key, 0) == 0) and not (/$modules{$key}/))
154 bad_line
("interface domain should be '$modules{$key}'", $_, "ui");
168 my $author = `git var GIT_AUTHOR_IDENT`;
170 if ($author =~ /^Your Name <you\@example.com>/)
172 print("ERROR: You have a suspicious author identity: '$author'\n");
179 if (! -e
"solenv/clang-format/ClangFormat.pm")
181 # Commit happens in a submodule.
186 ClangFormat
->import();
189 my $src = ClangFormat
::get_extension_regex
();
191 my @bad_renames = ();
192 my $clang_format = ClangFormat
::find
();
194 ## Check if ClangFormat has get_excludelist or the old
196 my $excluded_list_names;
197 eval { ClangFormat
::get_excludelist
() };
198 if ($@
) { $excluded_list_names = ClangFormat
::get_blacklist
(); }
199 else { $excluded_list_names = ClangFormat
::get_excludelist
(); }
201 # Get a list of renamed files.
202 my %renames; # key is target pathname, value is source pathname
203 open (IN
, "git diff-index --cached --find-renames --diff-filter=R --name-status $h |")
204 || die "Cannot run git diff.";
205 while (my $line = <IN
>)
208 $line =~ /^[^\t]+\t([^\t]+)\t([^\t]+)$/ || die "Unexpected response line: $line";
212 # Get a list of non-deleted changed files.
213 open (FILES
, "git diff-index --cached --diff-filter=AM --name-only $h |") || die "Cannot run git diff.";
214 while (my $filename = <FILES
>)
217 if ($filename =~ /\.($src)$/ and !exists($excluded_list_names->{$filename}))
219 if (!defined($clang_format))
221 my $version = ClangFormat
::get_wanted_version
();
222 my $opt_lo = ClangFormat
::get_own_directory
();
224 print("\nWARNING: Commit touches new (non-excluded) files, but no clang-format"
226 print(" found (via CLANG_FORMAT or PATH env vars, or in ${opt_lo}).\n\n");
228 my $platform = "linux64";
229 my $download = "wget";
232 $platform = "win.exe";
234 elsif ($^O
eq "darwin")
237 $download = "curl -O";
240 print("To get a suitable binary, please do:\n\n");
241 print("mkdir -p $opt_lo\n");
242 print("cd $opt_lo\n");
243 print("$download https://dev-www.libreoffice.org/bin/clang-format-$version-$platform\n");
244 print("cp clang-format-$version-$platform clang-format\n");
245 print("chmod +x clang-format\n\n");
247 print("(Or read solenv/clang-format/README on how to build it yourself.\n");
250 if (!ClangFormat
::check_style
($clang_format, $filename))
252 if (defined($renames{$filename}))
254 push @bad_renames, $filename;
258 push @bad_names, $filename;
265 if (scalar @bad_names || scalar @bad_renames)
267 my $autostyle = `git config libreoffice.autostyle`;
269 if ($autostyle ne "true" or scalar @bad_renames)
271 print("\nThe above differences were found between the code to commit \n");
272 print("and the clang-format rules.\n");
273 if (scalar @bad_names)
275 print("You can apply these changes with:\n");
276 print("\n$clang_format -i " . join(" ", @bad_names) . "\n\n");
278 if (scalar @bad_renames)
280 print("\nATTENTION: Of files detected as renamed by git, the following ones are\n");
281 print("not clang-format'ed and are not listed in the excludelist. If they are\n");
282 print("renames of previously excluded files, they should be added to the\n");
283 print("excludelist:\n\n");
284 foreach my $name (@bad_renames)
286 if (exists($excluded_list_names->{$renames{$name}}))
288 print("* $name got renamed from $renames{$name},\n");
289 print(" which is even still listed in the excludelist!\n");
298 print("Aborting commit. Apply changes and commit again or skip checking\n");
299 print("with --no-verify (not recommended).\n");
304 # 'git config libreoffice.autostyle true' was invoked to run
305 # clang-format automatically.
306 print("\nThe above differences were found between the code to commit \n");
307 print("and the clang-format rules. Fixing these now automatically.\n");
308 print("Running '$clang_format -i " . join(" ", @bad_names) . "' for you...\n");
309 system("$clang_format -i " . join(" ", @bad_names));
310 # TODO this stages all local modifications, staging originally
312 system("git add " . join(" ", @bad_names));
318 sub check_submodules
($)
322 my $toplevel = `git rev-parse --show-toplevel`;
325 # trick to get a list of submodules - directly read from the .gitmodules
326 open(SUBMODULES
, "git config --file '$toplevel'/.gitmodules --get-regexp path | awk '{ print \$2 }' |" ) || die "Cannot run git config on the .gitmodules.";
331 my $ignore = `git config submodule.$_.ignore`;
333 if ($ignore eq 'all')
336 Error: Your git configuration has submodule.$_.ignore set to 'all'.
338 This is dangerous and can lead to accidentally pushing unwanted changes to
341 To fix it, please do:
343 git config --unset submodule.$_.ignore
349 my $diff = `git diff --cached --name-only -z $h -- $_`;
354 Error: You are trying to commit changes to submodule $_ from the main repo.
356 Please do not do that, commit only to the submodule, the git hook on the
357 server will make sure the appropriate change is mirrored in the main repo.
359 To remove the change, you can do:
361 git submodule update $_
363 If it fails with 'error: Server does not allow request for unadvertised object',
367 git submodule update $_
377 # Initial commit: diff against an empty tree object
378 my $against="4b825dc642cb6eb9a060e54bf8d69288fbee4904";
379 if ( system( "git rev-parse --verify HEAD >/dev/null 2>&1" ) == 0 )
384 # If you want to allow non-ascii filenames set this variable to true.
385 my $allownonascii=`git config hooks.allownonascii`;
386 chomp $allownonascii;
388 # Cross platform projects tend to avoid non-ascii filenames; prevent
389 # them from being added to the repository. We exploit the fact that the
390 # printable range starts at the space character and ends with tilde.
391 if ( $allownonascii ne "true" &&
392 # Note that the use of brackets around a tr range is ok here, (it's
393 # even required, for portability to Solaris 10's /usr/bin/tr), since
394 # the square bracket bytes happen to fall in the designated range.
395 `git diff --cached --name-only --diff-filter=A -z $against | \
396 LC_ALL=C tr -d '[ -~]\\0'` ne "" )
399 Error: Attempt to add a non-ascii file name.
401 This can cause problems if you want to work
402 with people on other platforms.
404 To be portable it is advisable to rename the file ...
406 If you know what you are doing you can disable this
409 git config hooks.allownonascii true
416 open( FILES
, "git diff --cached --name-only --diff-filter=A -z $against |" ) || die "Cannot run git diff-index.";
419 if (/\.ui$/) # .ui files can get large
427 my $size = `git cat-file -s :$_`;
428 # For now let's say large is 500KB
430 if ($size > $limit * 1024)
432 print "Error: Attempt to add a large file: $_, pleasy try to fit into $limit KB.\n";
437 # fix whitespace in code
438 check_whitespaces
( $against);
441 check_style
($against);
443 # catch missing author info
446 # catch commits to the submodules
447 check_submodules
($against);
451 # vi:set shiftwidth=4 expandtab: