summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tlpfiles
blob: cd9d51e8ee8ba94e2692e33766d76aecc1e01bc7 (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
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
#!/usr/bin/env perl
# $Id$
# Copyright 2007-2020 Karl Berry.
# This file is licensed under the GNU General Public License version 2
# or any later version.
# 
# Return all files for a given TeX Live package, or package name(s) for
# a given set of files.

our $mydir;

BEGIN {
  $^W = 1;
  ($mydir = $0) =~ s,/[^/]*$,,;
  unshift (@INC, "$mydir/..");
}

use strict;

use TeXLive::TLConfig qw/$RelocPrefix $RelocTree/;
use TeXLive::TLPDB;
use Pod::Usage;
use Getopt::Long;
use TeXLive::TLUtils;

our $FILE;
our %DB_BY_FILE;  # used privately below.

our @opt_pkgof = ();
my $opt_help = 0;
my $opt_fullpath = 0;

TeXLive::TLUtils::process_logging_options ();
GetOptions ("pkgof=s"  => \@opt_pkgof,
            "fullpath" => \$opt_fullpath,
            "help|?"   => \$opt_help) or pod2usage (2);
pod2usage ("-exitstatus" => 0, "-verbose" => 2) if $opt_help;

exit (&main ());


sub main {
  my $Master = "$mydir/../..";  # xx TLPDB should default
  my $tlpdb_path = "$Master/$TeXLive::TLConfig::DatabaseLocation";

  if (@opt_pkgof) {
    return &do_pkgof ($tlpdb_path, @opt_pkgof);
    
  } elsif (@ARGV != 1) {
    die "$0: expected exactly one package name; try --help if you need it.\n";
  }

  # report files in given package.
  my $pkg = $ARGV[0];

  my $tlpdb = TeXLive::TLPDB->new (root => $Master);
  if (! defined $tlpdb) {
    die "$0: no texlive.tlpdb under $Master, goodbye";
  }

  my $obj = $tlpdb->get_package ($pkg);
  die "$0: no TeX Live package named $pkg in $Master.\n" if ! $obj;
  
  my @files = $obj->all_files;
  if ($obj->relocated) { for (@files) { s:^$RelocPrefix/:$RelocTree/:; } }
  print "$_\n" foreach @files;
  
  return 0;
}



# Report which package(s) the given files belong to.
# 
sub do_pkgof {
  my ($tlpdb,@files) = @_;
  
  @files = split (/\s/, "@files");
  for my $f (@files) {
    my $pkg = &find_pkg_of_file ($tlpdb, $f);
    printf "%s\t%s\n", $pkg || "-", $f;
  }
  
  return 0;
}


# return package to which FILE belongs, or undef.
# 
# If $opt_fullpath is not set, any directory part of FILE is stripped.
# If there are multiple packages holding files by the same name, all are
# returned, space-separated.  If $opt_fullpath is set, we compare the
# whole path as given.
# 
# We read the raw tlpdb file instead of using, e.g., TLPDB::find_file
# which is slow, but it's probably still a mistake.
# 
sub find_pkg_of_file {
  my ($tlpdb,$file) = @_;
  
  if (! keys %DB_BY_FILE) {
    local *FILE;
    open (FILE, $tlpdb) || die "open($tlpdb) failed: $!";
    my $pkg;
    while (<FILE>) {
      chomp;
      if (/^name /) {
        (undef,$pkg) = split (/ /);
      } elsif (/^ /) {
        # we carefully designed the format so that the only lines with
        # leading spaces are the files.
        # By default we take only the basename, unless $opt_fullpath
        my $dbfile = $_;
        if ($opt_fullpath) {
          $dbfile =~ s,^ ,,;
        } else {
          $dbfile =~ s,^.*/,,;
        }
        $DB_BY_FILE{$dbfile} .= "$pkg ";
      }
    }
    close (FILE) || warn "close($tlpdb) failed: $!";
  }
  
  if (!$opt_fullpath) {
    $file =~ s,^.*/,,;  # take basename
  }

  # strict stupidity
  my $ret = exists $DB_BY_FILE{$file} ? substr ($DB_BY_FILE{$file}, 0, -1)
            : "";
  return $ret;  # omit final space,
}

__END__

=head1 NAME

tlpfiles - list files contained in a TeX Live package, or vice versa

=head1 SYNOPSIS

  tlpfiles [I<option>]... I<tlpkg>
  or: tlpfiles [I<option>]... -pkgof I<file>...

=head1 OPTIONS

=over 4

=item B<-pkgof> I<file>...

Output the TeX Live package(s) in which each I<file> is contained.

=item B<-fullpath>

By default, C<-pkgof> uses only the basename of I<file> for comparison.
With this option, the comparison is based on the full path names.

=item B<-help>

Print this documentation and exit.

=back

The standard options B<-q>, B<-v>, and B<-logfile>=I<file> are also
accepted; see the C<process_logging_options> function in
L<TeXLive::TLUtils> for details.

=head1 DESCRIPTION

In the first form, with just I<TLPKG> specified, return all the files
contained in the given TeX Live package (as determined by reading the
TeX Live package database).  This includes any executables as well as
runtime, documentation, and source files.

It does not include the C<.tlpsrc> file for the package, since that is
necessarily part of the build infrastructure, and not part of the
self-contained package.

In the second form, with the C<-pkgof> option, return the TeX Live
package in which each given I<FILE> is contained, or C<-> if no package
can be found.  The files may be given as a single whitespace-separated
argument, or the C<-pkgof> option may be given more than once, or both.
Example invocation, given a list of files to search for in C</tmp/f>:

  tlpfiles --pkgof "`cat /tmp/f`"

Any directory part of the files is stripped.  If there are multiple
packages holding files by the same name, all are returned,
space-separated, followed by a tab, followed by the basename searched for.

=head1 AUTHORS AND COPYRIGHT

This script and its documentation were written for the TeX Live
distribution (L<http://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.

=cut

### Local Variables:
### perl-indent-level: 2
### tab-width: 2
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2 expandtab: #