aboutsummaryrefslogtreecommitdiffstats
path: root/Perl/Local/VCS_git.pm
blob: c11e536af98ae2e81020776b3d06929789238ebe (plain) (blame)
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
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
#!/usr/bin/perl

## Copyright (C) 2018  Steve McIntyre <93sam@debian.org>
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of version 2 of the GNU General Public License as published
## by the Free Software Foundation.

=head1 NAME

Local::VCS_git - generic wrapper around version control systems -- git version

=head1 SYNOPSIS

 use Local::VCS_git;
 use Data::Dumper;

 my $VCS = Local::VCS->new();
 my %info = $VCS->path_info( '.', recursive => 1, verbose => 1 );
 print Dumper($info{'foo.wml'});

=head1 DESCRIPTION

This module retrieves git info (such as revision of latest change, date
of latest change, author, etc) for checked-out object in a working directory.

For *best* performance if you're making lots of calls here, call
$VCS->(cache_repo) before you start. It will take a few seconds to
build a hash cache of all the git revisions for each file. If you're
only making a few calls, don't bother.

Another option (ideal for lots of separate programs all making a small
number of calls like a big "make" on the website) is to build a shared
cache on disk first. See the "build_vcs_cache.pl" script. If the
on-disk cache is initialised before the start, then all callers into
this module will benefit from a speedup almost as large as each having
a separate in-memory cache.

=head1 METHODS

=over 4

=cut

package Local::VCS_git;

use 5.008;

use File::Basename;
use File::Find;
use File::Spec::Functions qw( abs2rel rel2abs splitdir catfile rootdir catdir );
use File::stat;
use File::Path qw(make_path remove_tree);
use Carp;
use Fcntl qw/:flock/;
use POSIX qw/ WIFEXITED /;
use Cwd qw/cwd/;
use Time::HiRes qw/gettimeofday/;
use Data::Dumper;
use Digest::MD5 qw(md5 md5_hex md5_base64);

my $cache_db = ".git-revs-cache.db";
my $cache_lock = ".git-revs-cache.lock";
my $git_index = ".git/index";

use strict;
use warnings;

BEGIN {
	use base qw( Exporter );

	our $VERSION = "1.13";
	our @EXPORT_OK = qw( 
			     &new
	                   );
	our %EXPORT_TAGS = ( 'all' => [@EXPORT_OK] );
}

=item new

This is the constructor.

   my $VCS = Local::VCS->new();

=cut

sub new {
        my $class = shift;
	my %params = @_;
        my $self  = {
	    CACHE    => {},
	    # Possible REPO_CACHED values:
	    # 0 == not all cached          (slowest)
	    # 1 == cached in a valid db (disk files)
	    # 2 == cached in a hash in RAM (fastest)
	    REPO_CACHED => 0,
	    DEBUG => 0,
        };
        bless ($self, $class);

	if ($params{"DEBUG"}) {
	    $self->{DEBUG} = $params{"DEBUG"};
	}

	if ($self->db_cache_valid()) {
	    $self->{REPO_CACHED} = 1;
	}
        return $self;
}

sub _get_time()
{
    my @tm;
    my $text;
    my ($seconds, $microseconds) = gettimeofday;

    @tm = gmtime();
    $text = sprintf("%4d-%02d-%02d %02d:%02d:%02d.%06d UTC",
                    (1900 + $tm[5]),(1 + $tm[4]),$tm[3],$tm[2],$tm[1],$tm[0], $microseconds);
    return $text;
}

sub _debug
{
    my $self = shift;
    my @text = @_;
    return unless $self->{DEBUG};
    my $timestamp = _get_time();
    print STDERR "=> ", $timestamp, " ", @text, "\n";
    return;
}

# Internal helper function. Try to change to the target directory. If
# we can't for some reason (e.g. it doesn't exist), print an error
# *and* change to the fallback directory instead, then return false..
#
# Useful in a number of places in this code where we're in a nested
# set of chdir() calls and we want to exit cleanly on error
sub _safe_chdir {
    my $target = shift;
    my $fallback = shift;

    if (!chdir($target)) {
	print STDERR "ERROR: Can't chdir to $target: $!\n";
	chdir($fallback) or die "Can't chdir to fallback dir $fallback: $!\n";
	return 0;
    }
    return 1;
}

sub _add_cache_entry {
    my $self = shift;
    my $file = shift;
    my %entry;
    $entry{'cmt_date'} = shift;
    $entry{'cmt_rev'} = shift;
    my $tmp;
    my @list;
#    print __LINE__ . ": adding $file, " . Dumper(%cache);
    if ($self->{CACHE}{"$file"}) {
	$tmp = $self->{CACHE}{"$file"};
	@list = @$tmp;
    }
    push(@list, \%entry);
    $self->{CACHE}{"$file"} = \@list;
}

sub cache_file {
    my $self = shift;
    my $file = shift;
    
    $self->_debug( "cache_file($file)");

    if ($self->{REPO_CACHED}) {
	$self->_debug( "cache_file() returning early - whole repo already cached");
	return;
    }

    if ($self->{CACHE}{"$file"}) {
	$self->_debug( "$file is already cached...");
	$self->_debug( "cache_file($file) returning early");
	return;
    }
    $self->_debug( "Adding $file to cache\n");

    # Store the current directory so we can return there
    my $startdir = cwd;
    my $topdir = $self->get_topdir();
    _safe_chdir($topdir, $startdir) or die "Can't chdir to $topdir: $!\n";

    my (@commits);
    open (GITLOG, "git log -p -m --first-parent --name-only --numstat --format=format:\"%H %ct\" -- $file |") or die "Can't fork git log: $!\n";
    my ($cmt_date, $cmt_rev);
    while (my $line = <GITLOG>) {
	chomp $line;
	if ($line =~ m/^([[:xdigit:]]+) (\d+)$/) {
	    $cmt_rev = $1;
	    $cmt_date = $2;
	    next;
	} elsif ($line =~ m{^$file$}) {
	    $self->_add_cache_entry($file, $cmt_date, $cmt_rev);
	}
    }
    close GITLOG;
    $self->_debug( "cache_file($file) done");
    chdir ($startdir);
    return;
}

sub db_cache_valid {
    my $self = shift;
    my $valid = 0;

    # If we can't find the right dir, it can't be valid!
    my $topdir = $self->get_topdir() or return 0;

    $self->_debug( "db_cache_valid");

    # Check to see if an existing cache DB file is up to date
    # compared to the git index.
    if (-d "$topdir/$cache_db") {

	$self->_debug( "db_cache_valid: file $topdir/$cache_db exists ok");

	my $dbs = stat("$topdir/$cache_db");
	my $ids = stat("$topdir/$git_index");

	my $mtime1 = $dbs->mtime;
	my $mtime2 = $ids->mtime;
	$self->_debug( "dbs has mtime $mtime1, ids has mtime $mtime2");

	if ($dbs->mtime < $ids->mtime) {
	    $self->_debug( "db_cache_valid: but is out of date, rebuild needed");
	    $valid = 0;
	} else {
	    $valid = 1;
	}
    } else {
	# We don't have a cache file, we have to rebuild it
	$valid = 0;
	$self->_debug( "db_cache_valid: dir does not exist, so not valid");
    }
    return $valid;
}

# Internal helper string - (md5) hash a string and return the hash
sub _hash_string {
    my $string = shift;
    return md5_hex($string);
}

# Dump our hashed cache out to disk so we can share it with other
# processes
sub save_cache_to_database {
    my $self = shift;
    my %args = @_;
    my $tmp_cache_db = "$cache_db.tmp";
    my $query;

    print Dumper(%args);

    $self->_debug( "save_cache_to_database starting");

    # Now we're locked, see if the db s valid - somebody else might
    # have updated it for us!
    if (! $args{"FORCE"} and $self->db_cache_valid()) {
	$self->_debug( "save_cache_to_database: Not rebuilding cache, it's already valid now");
	return;
    }

    remove_tree($cache_db);
    make_path($tmp_cache_db);

    my $tmp = $self->{CACHE};
    my $table_count = 0;
    my $row_count = 0;

    foreach my $key(sort keys %$tmp) {
	my $file = $key;
	my $tmp1 = $self->{CACHE}{"$file"};
	my @list = @$tmp1;
	my $tablename = _hash_string($file);

	open (OUT, "> $tmp_cache_db/$tablename") or die "Can't create file $tmp_cache_db/$tablename: $!\n";
	$table_count++;
	foreach my $tmp2 (@list) {
	    my %entry = %$tmp2;
	    printf OUT "%s %s\n", $entry{"cmt_date"}, $entry{"cmt_rev"};
	    $row_count++;
	}
	if (0 == $table_count % 1000 or $table_count == scalar(keys %$tmp)) {
	    $self->_debug( "$row_count rows, $table_count tables done");
	}
	close OUT;
    }

    rename $tmp_cache_db, $cache_db;
    $self->_debug( "save_cache_to_database done");
}

sub cache_repo {
    my $self = shift;

    $self->_debug( "cache_repo()");
    # If we've already read the commit history into our cache, return
    # immediately
    if ($self->{REPO_CACHED} == 2) {
	$self->_debug( "cache_repo() returning early");
	return;
    }

    # Store the current directory so we can return there
    my $startdir = cwd;
    my $topdir = $self->get_topdir();
    _safe_chdir($topdir, $startdir) or die "Can't chdir to $topdir: $!\n";

    # Clear the cache and rebuild from scratch. We might havs
    # some files cached individually, and that would confuse
    # things now.
    $self->{CACHE} = {};
#	    print __LINE__ . ": " . Dumper(%cache);

    my (@commits);
    my $count = 0;
    open (GITLOG, "git log -p -m --first-parent --name-only --numstat --format=format:\"%H %ct\" |") or die "Can't fork git log: $!\n";
    my ($cmt_date, $cmt_rev);
    while (my $line = <GITLOG>) {
	chomp $line;
	if ($line =~ m/^([[:xdigit:]]+) (\d+)$/) {
	    $cmt_rev = $1;
	    $cmt_date = $2;
	    next;
	} elsif ($line =~ m{^(\S+)$}) {
	    my $file = $1;
	    $self->_add_cache_entry($file, $cmt_date, $cmt_rev);
	    $count++;
	}
    }
    close GITLOG;
    $self->{REPO_CACHED} = 2;
    my $tmp = $self->{CACHE};
    my $num_files = scalar(keys %$tmp);
    $self->_debug( "cache_repo() done, $count file commits, $num_files files");

    chdir ($startdir);
}    

# Internal helper function - grab a list of all the commits to a given
# file. This mist be relative to the top level of the repository. The
# caller must deal with this
sub _grab_commits
{    
    my $self = shift;
    my $file = shift or return undef;
    $self->cache_file($file);

    if ($self->{REPO_CACHED} == 1) {
	# Grab from the on-disk files
	my $tablename = _hash_string($file);
	my $commits;
	# Take a shared lock to stop somebody taking the cache out
	# from underneath us
	open (my $lock, "+> $cache_lock") or die "Can't create lock file $cache_lock: $!\n";
	flock ($lock, LOCK_SH);
	open (IN, "< $cache_db/$tablename") or die "Can't open file $cache_db/$tablename: $!\n";
	my @commits;
	while(my $line = <IN>) {
	    if ($line =~ m/^(\d+)\s+([[:alnum:]]+)$/) {
		my %entry = (
		    'cmt_date' => $1,
		    'cmt_rev'  => $2,
		    );
		push (@commits, \%entry);
	    } else {
		print STDERR "ERROR: Can't parse $line in $cache_db/$tablename for file $file\n";
	    }
	}
	close IN;
	flock ($lock, LOCK_UN);
	close ($lock);
	#	print Dumper(@commits);
	return @commits;
    } else {
	# Return directly from the in-memory cache
	my $tmp = $self->{CACHE}{"$file"};
	if (defined $tmp) {
	    my @commits = @$tmp;
	    #    print Dumper(@commits);
	    return @commits;
	}
	return undef;
    }
}

=item cmp_rev

Compare two revision strings for a given file.

Takes the file path and two revision strings as arguments, and 
returns 1 if the first one is newer, 
-1 if the second one is newer, 
0 if they are equal

=cut
sub cmp_rev
{
	# For the file we're looking at, we can easily generate an
	# array (list) of all the commit hashes. Then we can see where
	# in that list the specified revisions lie (from newest to
	# oldest) - that's what we're going to compare.

	my $self = shift;
	my $file = shift or return undef;
	my $rev1 = shift or return undef;
	my $rev2 = shift or return undef;
	my $ret = undef;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "cmp_rev(): looking for details of file $relfile, indir $indir");

	my @commits = $self->_grab_commits($relfile);
#	print Dumper(@commits);
	my $pos1 = -1;
	my $pos2 = -1;
	my $count = 0;
	foreach my $tmp(@commits) {
	    my %entry = %$tmp;
	    if ($entry{'cmt_rev'} =~ /\Q$rev1\E/) {
		$pos1 = $count;
	    }
	    if ($entry{'cmt_rev'} =~ /\Q$rev2\E/) {
		$pos2 = $count;
	    }
	    if ($pos1 != -1 and $pos2 != -1) {
		last;
	    }
	    $count++;
	}
	if ($pos1 == -1) {
	    # Not found
	    print STDERR "ERROR: commit $rev1 not found in revisions of $file\n";
	    $ret = undef;
	} elsif ($pos2 == -1) {
	    # Not found
	    print STDERR "ERROR: commit $rev2 not found in revisions of $file\n";
	    $ret = undef;
	} elsif ($pos1 == $pos2) {
	    $ret = 0;
	} elsif ($pos1 < $pos2) {
	    $ret = 1;
	} else {
	    $ret = -1;
	}

	# Now return to the directory where we started
	chdir($startdir);
	return $ret;
}

=item count_changes

Return the number of changes to particular file between two revisions

The first argument is a name of a file.
The second and third argument specify the revision range

Example use:

   my $num1 = count_changes( 'foo.c', 'r42', 'r70' );
   my $num2 = count_changes( 'foo.c', 'r42', 'HEAD' );
   
=cut

sub count_changes
{
	# FIXME: not sure if we need to handle the issue of wrong $rev1/$rev2 here
	#        or the caller function will care.
	#        Not sure if this function makes sense in a git context, either,
	#        but just in case
    
	my $self = shift;
	my $file = shift  or  return undef;
	my $rev1 = shift || '';
	my $rev2 = shift || '';
	my $ret = 0;

	if ($rev1 =~ m/^\Q$rev2\E$/) { # same revisions
	    return 0;
	}

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "count_changes(): looking for details of file $relfile, indir $indir");

	my @commits = $self->_grab_commits($relfile);

	# If unset, go for the last revision
	if (length($rev2) == 0) {
	    $rev2 = $commits[$#commits];
	}

	my $pos1 = -1;
	my $pos2 = -1;
	my $count = 0;
	foreach my $tmp(@commits) {
	    my %entry = %$tmp;
	    if ($entry{'cmt_rev'} =~ /\Q$rev1\E/) {
		$pos1 = $count;
	    }
	    if ($entry{'cmt_rev'} =~ /\Q$rev2\E/) {
		$pos2 = $count;
	    }
	    if ($pos1 != -1 and $pos2 != -1) {
		last;
	    }
	    $count++;
	}
	if ($pos1 == -1) {
	    # Not found
	    print STDERR "count_changes() ERROR: commit rev1 $rev1 not found in revisions of $file\n";
	    $ret = undef;
	} elsif ($pos2 == -1) {
	    # Not found
	    print STDERR "count_changes() ERROR: commit rev2 $rev2 not found in revisions of $file\n";
	    $ret = undef;
	} else {
	    $ret = $pos1 - $pos2;
	}
	# Now return to the directory where we started
	chdir($startdir);
	return $ret;
}

# return the type of the input argument (file, dir, symlink, etc)
sub _typeoffile
{
	my $file = shift  or  return;

	stat $file  or  return 'f'; # File is not here now; assume it
				    # was a file!

	return 'f'  if ( -f _ );
	return 'd'  if ( -d _ );
	return 'l'  if ( -l _ );
	return 'S'  if ( -S _ );
	return 'p'  if ( -p _ );
	return 'b'  if ( -b _ );
	return 'c'  if ( -c _ );

	return '';
}

=item path_info

Return git information and status about a tree of files.

The first argument is a name of a file or directory, and subsequent arguments
form a hash of named options (see below).

The function returns a hash, which for each filename contains
git status information:

  'type'       => type of the file ('d' directory, 'f' regular file, etc)
  'cmt_rev'    => revision in which latest change was made to this file
  'cmt_date'   => date on which latest change to this file was committed

Optional remaining arguments are a hash array with options:

   recursive:  if set to a true value (and the specified file is a directory),
               recurse into subdirectories
   match_pat:  only files/dirs that match this pattern are processed
   skip_pat:   files/dirs that match this pattern are skipped

Example uses:

   my %info1 = $VCS->path_info( 'src' );
   my %info2 = $VCS->path_info( 'src', recursive => 1 );
   my %info3 = $VCS->path_info( 'src', recursive => 1, match_pat => '\.c$' );

=cut

# todo: verbose

sub path_info
{
	# Two parts:
	#
	# (1)  Build a hash of all the files we want to know about
	#
	# (2a) Ask git about all the files it has, and pull out
	#      information for ones in the hash from (1)
	#
	# OR
	# 
	# (2b) Grab that information from our cache of all the commit data,
	#      if we have already been told to generate that cache.
	#      *Don't* generate that cache automatically - for just a few
	#      files it's quicker to just look up the data directly. If the
	#      user is going to do a lot of lookups, let them populate the
	#      cache up-front themselves if performance matters.
	#
	# This may not sound very quick, but it's much better than asking git
	# about all the details individually!

	# FIXME! path_info will not work unless you start at the root
	# of the repository.

	my $self = shift;
	my ($dir,%options) = @_;
	my %files_wanted;

	croak("No file or directory specified") unless $dir;
	$self->_debug( "path_info ($dir)");
	if ($self->get_topdir() !~ /^\.$/) {
	    croak "path_info() needs to be called in the root of the webwml repo\n";
	}

	my $recurse   = $options{recursive} || $options{recurse} || 0;
	my $match_pat = $options{match_pat} || undef;
	my $skip_pat  = $options{skip_pat}  || undef;

	$self->_debug( "Recurse is $recurse");
	$self->_debug( "Match pattern is '$match_pat'") if defined $match_pat;
	$self->_debug( "Skip pattern is  '$skip_pat'")  if defined $skip_pat;

	if ($recurse) {
	    find( sub { $files_wanted{$File::Find::name} = 1 if -f and
			    (!defined $match_pat or m/$match_pat/) and
			    (!defined $skip_pat or not ($File::Find::name =~ m/$skip_pat/))}, $dir );
	} else {
	    find( sub { $files_wanted{$File::Find::name} = 1 if -f and
			    ($File::Find::dir eq $dir) and
			    (!defined $match_pat or m/$match_pat/) and
			    (!defined $skip_pat or not ($File::Find::name =~ m/$skip_pat/))}, $dir );
	}

	# Calling "git log" for each file individually is hatefully
	# slow. Better option: call it once with appropriate options
	# for the directory we're targeting, and parse the
	# output. Gross, but it works.

	my %pathinfo;

	# Do we have the repo commit history cached?
	if ($self->{REPO_CACHED}) {
		# We do, use it! (2b above)
		foreach my $file (keys %files_wanted) {
		    my @commits = $self->_grab_commits($file);
		    if (@commits) {
			my $outfile = $file;
			$outfile =~ s,^$dir/,,;
			# Grab the data we want from the first entry in the
			# commits list, i.e. the most recent commit.
			$pathinfo{$outfile}{'type'} = _typeoffile("$file");
			$pathinfo{$outfile}{'cmt_date'} = $commits[0]{'cmt_date'};
			$pathinfo{$outfile}{'cmt_rev'} = $commits[0]{'cmt_rev'};
		    } else {
			$self->_debug( "Ignoring file $file");
		    }
		}
	} else {
	    # We don't, so we need to talk to git. (2a above)
	    open (GITLOG, "git log -p -m --first-parent --name-only --numstat --format=format:\"%H %ct\" $dir|")
		or die "Failed to fork git log: $!\n";
	    my $cmt_date;
	    my $cmt_rev;
	    my $file;
	    while (my $line = <GITLOG>) {
		chomp $line;
		if ($line =~ m/^([[:xdigit:]]+) (\d+)$/) {
		    $cmt_rev = $1;
		    $cmt_date = $2;
		    next;
		} elsif ($line =~ m{^$dir/(\S+)$}) {
		    $file = $1;
		    # Only store information if:
		    # We want this file, and
		    # We don't have data for it yet (i.e. only show
		    # the most recent version of a file)
		    if ($files_wanted{"$dir/$file"} and not defined $pathinfo{$file}) {
			$pathinfo{$file}{'type'} = _typeoffile("$dir/$file");
			$pathinfo{$file}{'cmt_date'} = $cmt_date;
			$pathinfo{$file}{'cmt_rev'} = $cmt_rev;
		    }
		}   
	    }
	    close GITLOG;
	}
	$self->_debug( "path_info ($dir) returning");
	return %pathinfo;	
}

=item file_info

Return VCS information and status about a single file

The single argument is a name of a file.

The function returns a hash, which contains VCS status information for
the specified file:

  'type'       => type of the file ('d' directory, 'f' regular file, etc)
  'cmt_rev'    => revision in which latest change was made to this file
  'cmt_date'   => date on which latest change to this file was committed

Example use:

   my %info = $VCS->file_info( 'foo.wml' );

=cut

sub file_info
{
	my $self = shift;
	my $file = shift or carp("No file specified");
	my %options = @_;
	my $quiet = $options{quiet} || undef;
	my %pathinfo;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "file_info(): looking for details of file $relfile, indir $indir");
	my @commits = $self->_grab_commits($relfile);
	if (@commits) {
	    # Grab the data we want from the first entry in the
	    # commits list, i.e. the most recent commit.
	    $pathinfo{'type'} = _typeoffile("$file");
	    $pathinfo{'cmt_date'} = $commits[0]{'cmt_date'};
	    $pathinfo{'cmt_rev'} = $commits[0]{'cmt_rev'};
	}

	# Now return to the directory where we started
	chdir($startdir);
	return %pathinfo;	
}

=item get_log

Return the log info about a specified file

The first argument is a name of a checked-out file.
The (optional) second and third argument specify the starting and end revision
of the log entries

Example use:

   my @log_entries = get_log( 'foo.wml' );
   
=cut

sub get_log
{
	my $self = shift;
	my $file = shift  or  return;
	my $rev1 = shift || '';
	my $rev2 = shift || '';
	my @logdata;
	my $command;	

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "get_log(): looking for details of file $relfile, indir $indir");

	if ($rev1 eq '' and $rev2 eq '') {
	    $command = sprintf( 'git log --date=unix %s', $relfile );
	} elsif ($rev2 eq '') {
	    $command = sprintf( 'git log --date=unix %s^..%s %s', $rev1, $rev1, $relfile );
	} elsif ($rev1 eq '') {
	    $command = sprintf( 'git log --date=unix ..%s %s', $rev2, $relfile );
	} else {
	    $command = sprintf( 'git log --date=unix %s..%s %s', $rev1, $rev2, $relfile );
	}		

	$self->_debug( "get_log: running $command");

	open( my $git, '-|', $command ) 
		or croak("Couldn't run `$command': $!");

	my $revision;
	my $author;
	my $date;
	my $message;
	my $first_record_done = 0;

	# read and parse the log records
	while ( my $line = <$git> )
	{
	    # the first 3 lines of a record contain metadata that looks like this:
	    # commit abcdefg435768938de
	    # Author: Jane Doe <email@example.com>
	    # Date:   1504881409

	    if ($line =~ m{^commit (.+)}) {
		# Second and subsequent record, push a result
		if ($first_record_done) {
		    $self->_debug( "pushing a record (rev $revision)");
		    push @logdata, {
			'rev'     => $revision,
		        'author'  => $author,
			'date'    => $date,
			'message' => $message,
		    };
		    $message = "";
		}
		$first_record_done = 1;
		$revision = $1;
	    } elsif ($line =~ m{^Author: (.+)}) {
		$author = $1;
	    } elsif ($line =~ m{^Date: (.+)}) {
		$date = $1;
	    } else {
		# Lose leading whitespace, but retain blank lines
		if ($line =~ m{\S}) {
		    $line =~ s{^\s+}{};
		}
		$message .= $line;
	    }

	}
	close( $git );

	if ($first_record_done) {
	    #	$self->_debug( "pushing last record (rev $revision)");
	    # Last record, push a result
	    push @logdata, {
		'rev'     => $revision,
		 'author'  => $author,
		 'date'    => $date,
		 'message' => $message,
	    };
	    chdir($startdir);
	    return reverse @logdata;
	}
	chdir($startdir);
	return undef;
}

=item get_diff

Returns a hash of (filename,diff) pairs containing the unified diff between two version of a (number of) files.

The first argument is a name of a checked-out file.  The second and third
argument specify the starting and end revision of the log entries.  If the
third argument is not specified, the current (possibly modified) version is
used.  If the second argument is also not specified, the current (possibly
modified) version is diffed against the latest checked in version.

Example use:

   my %diffs = get_diff( 'foo.wml', '1.4', '1.17' );
   my %diffs = get_diff( 'bla.wml', '1.8' );
   my %diffs = get_diff( 'bas.wml' );
   

=cut

sub get_diff
{
	my $self = shift;
	my $file = shift  or  return;
	my $rev1 = shift;
	my $rev2 = shift;

	# hash to store the output
	my %data;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "get_diff(): looking for details of file $relfile, indir $indir");

	my $command = sprintf( 'git diff %s %s -u %s 2> /dev/null', 
		defined $rev1 ? "$rev1" : '', 
		defined $rev2 ? "$rev2" : '', 
		$relfile );

#	print "$command\n";

	open( my $git, '-|', $command ) 
		or croak("Couldn't run `$command': $!");

	# read the consecutive records
	while ( my $record = <$git> )
	{
		# remove the record separator from the end of the record
#		$record =~ s{ $/ \n? \Z }{}msx;

		# remove the "index" line from the beginning of the record
#		$record =~ s{ ^index [^\n] }{}msx;

		# remove the first 2 lines
		$record =~ s{^diff\s+--git.*}{}msx;
		$record =~ s{^index\s+.*}{}msx;

		$data{$file} .= $record;
	}
	close( $git );

	# Now return to the directory where we started
	chdir($startdir);
	return %data;
}


=item get_file

Return a particular revision of a file

The first argument is a name of a file.
The second argument is the revision.

This function retrieves the specified revision fo the file from the repository
and returns it (without writing anything in the current checked-out tree)

Example use:

   my $text = get_file( 'foo.c', '1.12' );

=cut

sub get_file
{
	my $self = shift;
	my $file = shift or croak("No file specified");
	my $rev  = shift or croak("No revision specified");

	croak( "No such file: $file" ) unless -f $file;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "get_file(): looking for details of file $relfile, indir $indir");

	my $command = sprintf( 'git show %s:%s', 
		$rev, $relfile );

	my $text;
	open ( my $git, '-|', $command ) 
		or croak("Error while executing `$command': $!");
	while ( my $line = <$git> )
	{
		$text .= $line;
	}
	close( $git );
	croak("Error while executing `$command': $!") unless WIFEXITED($?);
	
	# Now return to the directory where we started
	chdir($startdir);

	# return the file
	return $text;
}

=item get_oldest_revision

Return the version of the oldest version of a file

The first argument is a name of a file.

This function finds the oldest revision of a file that is known in the repository and returns it.

Example use:

   my $rev = get_oldest_revision( 'foo.c');

=cut

sub get_oldest_revision
{
	my $self = shift;
	my $file = shift or croak("No file specified");
	my $ret = undef;

	croak( "No such file: $file" ) unless -f $file;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "get_oldest_revision(): looking for details of file $relfile, indir $indir");

	my @commits = $self->_grab_commits($relfile);

	if (@commits) {
	    # Simply return the last revision in our list
	    $ret = $commits[$#commits]{'cmt_rev'};
	} else {
	    # Should hopefully never get here!
	    croak(" Could not find any revisions for $file");
	}

	# Now return to the directory where we started
	chdir($startdir);

	# return the information
	return $ret;
}

=item get_newest_revision

Return the version of the newest version of a file

The first argument is a name of a file.

This function finds the newest revision of a file that is known in the
repository and returns it.

Example use:

   my $rev = get_newest_revision( 'foo.c');

=cut

sub get_newest_revision
{
	my $self = shift;
	my $file = shift or croak("No file specified");
	my $ret = undef;

	croak( "No such file: $file" ) unless -f $file;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "get_newest_revision(): looking for details of file $relfile, indir $indir");

	my @commits = $self->_grab_commits($relfile);
	if (@commits) {
	    # Simply return the first revision in our list
	    $ret = $commits[0]{'cmt_rev'};
	} else {
	    # Should hopefully never get here!
	    croak(" Could not find any revisions for $file");
	}

	# Now return to the directory where we started
	chdir($startdir);

	# return the information
	return $ret;
}

=item next_revision

Given a file path and a current revision of that file, move backwards
or forwards through the commit history and return a related revision.

Takes three arguments: the file path, the start revision and an
integer to specify which direction to move *and* how far. A negative
number specifies backwards in history, a positive number specifies
forwards.

Example use:

   my $rev = next_revision( 'foo.c', '72f6700577c79e6d284fbeac44366f6aa357d56d', -1);

Returns the requested revision if it exists, otherwise *undef*

=cut
sub next_revision
{
	# For the file we're looking at, we can easily generate an
	# array (list) of all the commit hashes. Then we can see where
	# in that list the specified revision lies.

	my $self = shift;
	my $file = shift or return undef;
	my $rev1 = shift or return undef;
	my $move = shift or return undef;
	my $ret = undef;

	croak( "No such file: $file" ) unless -f $file;

	# Work out where we need to be. This can be quite hairy if the
	# user has given us a mix of relative and absolute paths from
	# their program. Do this cleanly, somehow...!
	# First of all, store the current directory so we can return
	# there
	my $startdir = cwd;
	my $indir = dirname($file);
	my $basefile = basename($file);
	# Change to the directory of the file we've been asked about
	_safe_chdir($indir, $startdir) or return undef;
	$indir = cwd;
	# That should be inside the repo, so now we can change to the
	# repo root
	my $topdir = $self->get_topdir();
	_safe_chdir($topdir, $startdir) or return undef;
	# Now calculate where the file is, relative to the repo root
	my $reldir = abs2rel($indir, cwd);
	my $relfile = catdir($reldir, $basefile);
	$self->_debug( "next_revision(): looking for details of file $relfile, indir $indir");

	my @commits = $self->_grab_commits($relfile);
#	print Dumper(@commits);
	my $pos1 = -1;
	my $pos2 = -1;
	my $count = 0;
	my %entry;
	foreach my $tmp(@commits) {
	    %entry = %$tmp;
	    if ($entry{'cmt_rev'} =~ /\Q$rev1\E/) {
		$pos1 = $count;
	    }
	    if ($pos1 != -1) {
		last;
	    }
	    $count++;
	}

	if ($pos1 == -1) {
	    # Can't find the specified revision
	    $ret = undef;
	} else {
	    # API specifies -ve as older, but out list is sorted the other
	    # way...
	    $pos2 = $pos1 - $move;

	    if ($pos2 < 0 or $pos2 >= $#commits) {
		# Out of range when looking for the new revision
		$ret = undef;
	    } else {
		$ret = $commits[$pos2]{'cmt_rev'};
	    }
	}

	# Now return to the directory where we started
	chdir($startdir);

	# return the information
	return $ret;
}

=item get_topdir

Return the top dir of the webwml repository

The first argument is a name of a checked-out file or directory.
If it is not specified, by default the current directory is used.

Example use:

   my $dir = get_topdir( 'foo.c' );

=cut

sub get_topdir
{
	my $self = shift;
	my $file = shift || '.';

	# Are we in topdir? Easy!
	if (-d ".git" and -d "english") {
	    return ".";
	}

	# Otherwise, walk up the tree until we find a .git or hit the
	# root directory
	my $dir = "..";
	my $root = stat("/");

	while (1 == 1) {
	    $self->_debug( "Looking at $dir");
	    if (-d "$dir/.git" and -d "$dir/english") {
		return "$dir";
	    }
	    my $sb = stat("$dir");
	    $self->_debug( "Comparing ($sb->dev, $sb->ino) to ($root->dev, $root->ino)");
	    if ($root->dev == $sb->dev and $root->ino == $sb->ino) {
		croak ("Unable to find the top-level webwml directory");
	    }
	    $dir = "../$dir";
	}
}

=back

=head1 AUTHOR

Copyright (C) 2018  Steve McIntyre <93sam@debian.org>

This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.

=cut

42;


__END__


© 2014-2024 Faster IT GmbH | imprint | privacy policy