aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LXRng/Repo/Git/Directory.pm
blob: 592e608a7747518a96ada01bdb879a372301db9d (plain)
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
package LXRng::Repo::Git::Directory;

use strict;

use base qw(LXRng::Repo::Directory);

sub new {
    my ($class, $repo, $name, $ref, $rel) = @_;

    $name =~ s,/*$,/,;
    return bless({repo => $repo, name => $name, ref => $ref, rel => $rel},
		 $class);
}

sub time {
    my ($self) = @_;

    return 0;
#    return $$self{'stat'}[9];
}

sub size {
    my ($self) = @_;

    return '';
}

sub contents {
    my ($self) = @_;

    my $git = $$self{'repo'}->_git_cmd('ls-tree', $$self{'ref'});

    my $prefix = $$self{'name'};
    $prefix =~ s,^/+,,;
    my (@dirs, @files);
    while (<$git>) {
	chomp;
	my ($mode, $type, $ref, $node) = split(" ", $_);
	if ($type eq 'tree') {
	    push(@dirs, LXRng::Repo::Git::Directory->new($$self{'repo'},
							    $prefix.$node,
							    $ref,
							    $$self{'rel'}));
	}
	elsif ($type eq 'blob') {
	    push(@files, LXRng::Repo::Git::File->new($$self{'repo'},
							$prefix.$node,
							$ref,
							$$self{'rel'}));
	}
    }

    return (@dirs, @files);
}

1;