$OpenBSD: OpenBSD::Search.pod,v 1.1 2007/05/14 13:15:28 espie Exp $ =head1 NAME OpenBSD::Search - package names matching framework =head1 SYNOPSIS use OpenBSD::Search; # pkgspec objects my $search_object = OpenBSD::Search::PkgSpec->new($pattern); my $filter_object = OpenBSD::Search::Filter->keep_most_recent; # need repository to apply to use OpenBSD::PackageRepository::Installed; my $inst = OpenBSD::PackageRepository::Installed->new; my @list = $inst->match($search_object, $filter_object); =head1 DESCRIPTION C provides a search infrastructure for C objects. A given repository can be searched for existing packages using C<$repo-Ematch($search1, $search2);> A repository list can be searched in a similar way: the search proceeds through each repository in the list, and stops as soon as it finds a non-empty match (similar to C rules). The first search object C<$search> is used to find the basic set of matching packages, and further objects are used to weed out unwanted elements from the list. Complex searches must be built as lists of filter objects, in order to preserve RepositoryList semantics, and ensure the correct non-empty first match is returned. The infrastructure provides the following objects: =over 4 =item OpenBSD::Search::PkgSpec C filters. =item OpenBSD::Search::Stem finds all packages with a given stem. =item OpenBSD::Search::PartialStem finds all packages including a partial stem. =item OpenBSD::Search::Filter filters package list through further tests. =back