diff options
author | 2006-11-29 11:10:16 +0000 | |
---|---|---|
committer | 2006-11-29 11:10:16 +0000 | |
commit | 578a21c5fe57e04dd06a7143b3480ed1654d8eb2 (patch) | |
tree | 70b1e9b283f2ca167170ebe0c1bf44649b887e62 | |
parent | unused file and functions (diff) | |
download | wireguard-openbsd-578a21c5fe57e04dd06a7143b3480ed1654d8eb2.tar.xz wireguard-openbsd-578a21c5fe57e04dd06a7143b3480ed1654d8eb2.zip |
handle pkg-config files.
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PkgConfig.pm | 175 |
1 files changed, 175 insertions, 0 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgConfig.pm b/usr.sbin/pkg_add/OpenBSD/PkgConfig.pm new file mode 100644 index 00000000000..c44c0aad4e8 --- /dev/null +++ b/usr.sbin/pkg_add/OpenBSD/PkgConfig.pm @@ -0,0 +1,175 @@ +# ex:ts=8 sw=4: +# $OpenBSD: PkgConfig.pm,v 1.1 2006/11/29 11:10:16 espie Exp $ +# +# Copyright (c) 2004 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 +# +use strict; +use warnings; + +# this is a 'special' package, interface to the *.pc file format of pkg-config. +package OpenBSD::PkgConfig; + +sub new +{ + my $class = shift; + + return bless { + variables => {}, + vlist => [], + properties => {}, + proplist => [] + }, $class; +} + +sub add_variable +{ + my ($self, $name, $value) = @_; + if (defined $self->{variables}->{$name}) { + die "Duplicate variable $name"; + } + push(@{$self->{vlist}}, $name); + $self->{variables}->{$name} = $value; +} + +sub add_property +{ + my ($self, $name, $value) = @_; + if (defined $self->{properties}->{$name}) { + die "Duplicate property $name"; + } + push(@{$self->{proplist}}, $name); + if (defined $value) { + $self->{properties}->{$name} = [split /\s+/, $value] ; + } else { + $self->{properties}->{$name} = []; + } +} + +sub read_fh +{ + my ($class, $fh, $name) = @_; + my $cfg = $class->new; + local $_; + + $name = '' if !defined $name; + while (<$fh>) { + chomp; + next if m/^$/; + next if m/^\#/; + if (m/^(.*?)\=(.*)$/) { + $cfg->add_variable($1, $2); + } elsif (m/^(.*?)\:\s+(.*)$/) { + $cfg->add_property($1, $2); + } elsif (m/^(.*?)\:\s*$/) { + $cfg->add_property($1); + } else { + die "Incorrect cfg file $name"; + } + } + return $cfg; +} + +sub read_file +{ + my ($class, $filename) = @_; + + open my $fh, '<:crlf', $filename or die "Can't open $filename: $!"; + return $class->read_fh($fh, $filename); +} + +sub write_fh +{ + my ($self, $fh) = @_; + + foreach my $variable (@{$self->{vlist}}) { + print "$variable=", $self->{variables}->{$variable}, "\n"; + } + print "\n\n"; + foreach my $property (@{$self->{proplist}}) { + print "$property:", + (map { " $_" } @{$self->{properties}->{$property}}), + "\n"; + } +} + +sub write_file +{ + my ($cfg, $filename) = @_; + open my $fh, '>', $filename or die "Can't open $filename: $!"; + $cfg->write_fh($fh); +} + +sub compress +{ + my ($class, $l) = @_; + my $h = {}; + my @r = (); + foreach my $i (@$l) { + next if defined $h->{$i}; + push(@r, $i); + $h->{$i} = 1; + } + return join(' ', @r); +} + +sub expanded +{ + my ($self, $v, $extra) = @_; + + $extra = {} if !defined $extra; + my $get_value = + sub { + my $var = shift; + if (defined $extra->{$var}) { + return $extra->{$var}; + } elsif (defined $self->{variables}->{$var}) { + return $self->{variables}->{$var}; + } else { + return ''; + } + }; + + while ($v =~ s/\$\{(.*?)\}/&$get_value($1)/ge) { + } + return $v; +} + +sub get_property +{ + my ($self, $k, $extra) = @_; + + my $l = $self->{properties}->{$k}; + if (!defined $l) { + return undef; + } + my $r = []; + for my $v (@$l) { + push(@$r, $self->expanded($v, $extra)); + } + return $r; +} + +sub get_variable +{ + my ($self, $k, $extra) = @_; + + my $v = $self->{variables}->{$k}; + if (defined $v) { + return $self->expanded($v, $extra); + } else { + return undef; + } +} + +1; |