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
|
# ex:ts=8 sw=4:
# $OpenBSD: Installed.pm,v 1.36 2016/09/14 13:42:19 espie Exp $
#
# Copyright (c) 2007-2014 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use strict;
use warnings;
# XXX: we want to be able to load PackageRepository::Installed stand-alone,
# so we put the only common method into PackageRepositoryBase.
#
# later, when we load the base PackageRepository, we tweak the inheritance
# of PackageRepository::Installed to have full access...
package OpenBSD::PackageRepositoryBase;
my ($version, $current);
sub is_local_file
{
return 0;
}
sub expand_locations
{
my ($class, $string, $state) = @_;
require OpenBSD::Paths;
if ($string eq '%a') {
return OpenBSD::Paths->machine_architecture;
} elsif ($string eq '%v') {
return OpenBSD::Paths->os_version;
} elsif ($string eq '%c') {
return OpenBSD::Paths->os_directory;
} elsif ($string eq '%m') {
return join('/',
'pub/OpenBSD',
OpenBSD::Paths->os_directory,
'packages',
OpenBSD::Paths->machine_architecture);
}
}
sub parse_url
{
my ($class, $r, $state) = @_;
my $path;
if ($$r =~ m/^(.*?)\:(.*)/) {
$path = $1;
$$r = $2;
} else {
$path = $$r;
$$r = '';
}
$path =~ s/\%[vacm]\b/$class->expand_locations($&, $state)/ge;
$path .= '/' unless $path =~ m/\/$/;
bless { path => $path, state => $state }, $class;
}
sub parse_fullurl
{
my ($class, $r, $state) = @_;
$class->strip_urlscheme($r) or return undef;
return $class->parse_url($r, $state);
}
sub strip_urlscheme
{
my ($class, $r) = @_;
if ($$r =~ m/^(.*?)\:(.*)$/) {
my $scheme = lc($1);
if ($scheme eq $class->urlscheme) {
$$r = $2;
return 1;
}
}
return 0;
}
sub make_error_file
{
}
sub match_locations
{
my ($self, $search, @filters) = @_;
my $l = $search->match_locations($self);
while (my $filter = (shift @filters)) {
last if @$l == 0; # don't bother filtering empty list
$l = $filter->filter_locations($l);
}
return $l;
}
sub url
{
my ($self, $name) = @_;
return $self->urlscheme.':'.$self->relative_url($name);
}
sub finish_and_close
{
my ($self, $object) = @_;
$self->close($object);
}
sub close_now
{
my ($self, $object) = @_;
$self->close($object, 0);
}
sub close_after_error
{
my ($self, $object) = @_;
$self->close($object, 1);
}
sub close_with_client_error
{
my ($self, $object) = @_;
$self->close($object, 1);
}
sub canonicalize
{
my ($self, $name) = @_;
if (defined $name) {
$name =~ s/\.tgz$//o;
}
return $name;
}
sub new_location
{
my ($self, @args) = @_;
return $self->locationClassName->new($self, @args);
}
sub locationClassName
{ "OpenBSD::PackageLocation" }
sub locations_list
{
my $self = shift;
if (!defined $self->{locations}) {
my $l = [];
require OpenBSD::PackageLocation;
for my $name (@{$self->list}) {
push @$l, $self->new_location($name);
}
$self->{locations} = $l;
}
return $self->{locations};
}
sub reinitialize
{
}
package OpenBSD::PackageRepository::Installed;
our @ISA = (qw(OpenBSD::PackageRepositoryBase));
sub urlscheme
{
return 'inst';
}
use OpenBSD::PackageInfo (qw(is_installed installed_info
installed_packages installed_stems installed_name));
sub new
{
my ($class, $all, $state) = @_;
return bless { all => $all, state => $state }, $class;
}
sub relative_url
{
my ($self, $name) = @_;
$name or '';
}
sub close
{
}
sub canonicalize
{
my ($self, $name) = @_;
return installed_name($name);
}
sub find
{
my ($repository, $name, $arch) = @_;
my $self;
if (is_installed($name)) {
require OpenBSD::PackageLocation;
$self = $repository->new_location($name);
$self->{dir} = installed_info($name);
}
return $self;
}
sub locationClassName
{ "OpenBSD::PackageLocation::Installed" }
sub grabPlist
{
my ($repository, $name, $arch, $code) = @_;
require OpenBSD::PackingList;
return OpenBSD::PackingList->from_installation($name, $code);
}
sub available
{
my $self = shift;
return installed_packages($self->{all});
}
sub list
{
my $self = shift;
my @list = installed_packages($self->{all});
return \@list;
}
sub stemlist
{
return installed_stems();
}
sub wipe_info
{
}
sub may_exist
{
my ($self, $name) = @_;
return is_installed($name);
}
1;
|