[BACK]Return to LaLoFile.pm CVS log [TXT][DIR] Up to [local] / src / usr.bin / libtool / LT

File: [local] / src / usr.bin / libtool / LT / LaLoFile.pm (download)

Revision 1.5, Thu Jul 6 08:29:26 2023 UTC (11 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, HEAD
Changes since 1.4: +7 -16 lines

start moving a few files to use v5.36;
(this went through a full bulk)

# $OpenBSD: LaLoFile.pm,v 1.5 2023/07/06 08:29:26 espie Exp $

# Copyright (c) 2007-2010 Steven Mestdagh <steven@openbsd.org>
# Copyright (c) 2012 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 v5.36;

package LT::LaLoFile;
use LT::Trace;

my %file_cache;		# which files have been parsed
my $cache_by_fullname = {};
my $cache_by_inode = {};

# allows special treatment for some keywords
sub set($self, $k, $v)
{
	$self->{$k} = $v;
}

sub stringize($self, $k)
{
	if (defined $self->{$k}) {
	       return $self->{$k};
	}
	return '';
}

sub read($class, $filename)
{
	my $info = $class->new;
	open(my $fh, '<', $filename) or die "Cannot read $filename: $!\n";
	while (my $line = <$fh>) {
		chomp($line);
		next if $line =~ /^\#/;
		next if $line =~ /^\s*$/;
		if ($line =~ m/^(\S+)\=\'(.*)\'$/) {
			$info->set($1, $2);
		} elsif ($line =~ m/^(\S+)\=(\S+)$/) {
			$info->set($1, $2);
		}
	}
	return $info;
}

sub parse($class, $filename)
{
	tprint {"parsing $filename"};

	if (defined $cache_by_fullname->{$filename}) {
		tsay {" (cached)"};
		return $cache_by_fullname->{$filename};
	}
	my $key = join("/", (stat $filename)[0,1]);
	if (defined $cache_by_inode->{$key}) {
		tsay {" (cached)"};
		return $cache_by_inode->{$key};
	}
	tsay {""};
	return $cache_by_inode->{$key} = $cache_by_fullname->{$filename} =
	    $class->read($filename);
}

sub new($class)
{
	bless {}, $class;
}

1;