Why not adopt me?
NAME
VERSION
version 1.11.3 Yahoo::Search::Response -- Container object for the result set of one query to the Yahoo! Search API. (This package is included in, and automatically loaded by, the Yahoo::Search package.)
Package Use
You never need to use this package directly -- it is loaded automatically by Yahoo::Search.
Object Creation
Response objects are created by the Fetch() method of a Request (Yahoo::Search::Request) object, e.g. by
my $Response = Yahoo::Search->new(...)->Request()->Fetch();
or by shortcuts to the same, such as:
my $Response = Yahoo::Search->Query(...);
Methods
A Response object has the following methods:
- $Response->Count()
-
Returns the number of
Resultobjects available in thisResponse. See Yahoo::Search::Result for details onResultobjects. - $Response->FirstOrdinal([ separator ])
-
Returns the index of the first
Resultobject (e.g. the "30" of results 30 through 40 out of 5,329). This is the same as theStartarg of theRequestthat generated thisResponse.If an optional argument is given and is true, it is used as a separator every three digits. In the US, one would use
$Response->FirstOrdinal(',')to return, say, "1,230" instead of the "1230" that
$Response->FirstOrdinal()might return.
- $Response->CountAvail([ separator ])
-
Returns an approximate number of total search results available, were you to ask for them all (e.g. the "5329" of the results 30 through 40 out of 5329).
If an optional argument is given and is true, it is used as a separator every three digits. In the US, one would use
$Response->CountAvail(',')to return, say, "5,329" instead of the "5329" that
$Response->CountAvail()might return.
- $Response->Links()
-
Returns a list of links from the response (one link per result):
use Yahoo::Search; if (my $Response = Yahoo::Search->Query(Doc => 'Britney')) { for my $link ($Response->Links) { print "<br>$link\n"; } }This prints one
<br><a href="...">title of the link</a>line per result returned from the query.
(Not appropriate for Spell and Related search results)
- $Response->Terms()
-
(Appropriate for Spell and Related search results)
Returns a list of text terms.
- $Response->Results()
-
Returns a list of Yahoo::Search::Result
Resultobjects representing all the results held in thisResponse. For example:use Yahoo::Search; if (my $Response = Yahoo::Search->Query(Doc => 'Britney')) { for my $Result ($Response->Results) { printf "%d: %s\n", $Result->I, $Result->Url; } }This is not valid for Spell and Related searches.
- $Response->NextResult(options)
-
Returns a
Resultobject, or nothing. (On error, returns nothing and sets$@.)The first time
NextResultis called for a givenResponseobject, it returns theResultobject for the first result in the set. Returns subsequentResultobjects for subsequent calls, until there are none left, at which point what is returned depends upon whether the auto-continuation feature is turned on (more on that in a moment).The following produces the same results as the
Results()example above:use Yahoo::Search; if (my $Response = Yahoo::Search->Query(Doc => 'Britney')) { while (my $Result = $Response->NextResult) { printf "%d: %s\n", $Result->I, $Result->Url; } }Auto-Continuation
If auto-continuation is turned on, then upon reaching the end of the result set,
NextResultautomatically fetches the next set of results and returns its first result.This can be convenient, but can be very dangerous, as it means that a loop which calls
NextResult, unless otherwise exited, will fetch results from Yahoo! until there are no more results for the query, or until you have exhausted your access limits.Auto-continuation can be turned on in several ways:
On a per
NextResultbasis by calling as$Response->NextResult(AutoContinue => 1)as with this example
use Yahoo::Search; ## ## WARNING: DANGEROUS DANGEROUS DANGEROUS ## if (my $Response = Yahoo::Search->Query(Doc => 'Britney')) { while (my $Result = $Response->NextResult(AutoContinue => 1)) { printf "%d: %s\n", $Result->I, $Result->Url; } }By using
AutoContinue => 1when creating the request (e.g. in a Yahoo::Search->Query call), as with this example:
use Yahoo::Search; ## ## WARNING: DANGEROUS DANGEROUS DANGEROUS ## if (my $Response = Yahoo::Search->Query(Doc => 'Britney', AutoContinue => 1)) { while (my $Result = $Response->NextResult) { printf "%d: %s\n", $Result->I, $Result->Url; } }By creating a query via a search-engine object created with
AutoContinue => 1as with this example:
use Yahoo::Search; ## ## WARNING: DANGEROUS DANGEROUS DANGEROUS ## my $SearchEngine = Yahoo::Search->new(AutoContinue => 1); if (my $Response = $SearchEngine->Query(Doc => 'Britney')) { while (my $Result = $Response->NextResult) { printf "%d: %s\n", $Result->I, $Result->Url; } }By creating a query when Yahoo::Search had been loaded via:
use Yahoo::Search AutoContinue => 1;as with this example:
use Yahoo::Search AutoContinue => 1; ## ## WARNING: DANGEROUS DANGEROUS DANGEROUS ## if (my $Response = Yahoo::Search->Query(Doc => 'Britney')) { while (my $Result = $Response->NextResult) { printf "%d: %s\n", $Result->I, $Result->Url; } }
All these examples are dangerous because they loop through results, fetching more and more, until either all results that Yahoo! has for the query at hand have been fetched, or the Yahoo! Search server access limits have been reached and further access is denied. So, be sure to rate-limit the accesses, or explicitly break out of the loop at some appropriate point.
- $Response->Reset()
-
Rests the iterator so that the next
NextResultreturns the first of theResponseobject'sResultobjects. - $Response->Request()
-
Returns the
Requestobject from which thisResponseobject was derived. - $Response->NextRequest()
-
Returns a
Requestobject which will fetch the subsequent set of results (e.g. if the currentResponseobject represents the first 10 query results,NextRequest()returns aRequestobject that represents a query for the next 10 results.)Returns nothing if there were no results in the current
Responseobject (thereby eliminating the possibility of there being a next result set). On error, sets$@and returns nothing. - $Response->NextResponse()
-
Like
NextRequest, but goes ahead and calls theRequestobject'sFetchmethod to return theResultobject for the next set of results. - $Response->Uri()
-
Returns the
URI::httpobject that was fetched to create this response. It is the same as:$Response->Request->Uri() - $Response->Url()
-
Returns the url that was fetched to create this response. It is the same as:
$Response->Request->Url() - $Response->RawXml()
-
Returns a string holding the raw xml returned from the Yahoo! Search servers.
- $Response->MapUrl()
-
Valid only for a Local search, returns a url to a map showing all results. (This is the same as each
Resultobject'sAllMapUrlmethod.) - $Response->RelatedRequest
- $Response->RelatedResponse
-
Perform a Related request for search terms related to the query phrase of the current request, returning the new
RequestorResponseobject, respectively.Both return nothing if the current request is already for a Related search.
For example:
print "Did you mean ", join(" or ", $Response->RelatedResponse->Terms()), "?"; - $Response->SpellRequest
- $Response->SpellResponse
-
Perform a Spell request for a search term that may reflect proper spelling of the query phrase of the current request, returning the new
RequestorResponseobject, respectively.Both return nothing if the current request is already for a Spell search.
Author
Jeffrey Friedl (jfriedl@yahoo.com)