为什么Perl的URI抱怨“无法找到对象方法”主机“通过包”URI :: _ generic“'?

时间:2010-09-21 04:41:49

标签: perl uri host

嗨,我试图从网址上获取主机。

sub scrape {
my @m_error_array;
my @m_href_array;
my @href_array;
my ( $self, $DBhost, $DBuser, $DBpass, $DBname ) = @_;
my ($dbh, $query, $result, $array);
my $DNS = "dbi:mysql:$DBname:$DBhost:3306";
$dbh = DBI->connect($DNS, $DBuser, $DBpass ) or die $DBI::errstr;
if( defined( $self->{_process_image} ) && ( -e 'href_w_' . $self->{_process_image} . ".txt" ) ) {
    open  ERROR_W, "error_w_" . $self->{_process_image} . ".txt";
    open  M_HREF_W, "m_href_w_" . $self->{_process_image} . ".txt";
    open  HREF_W, "href_w_" . $self->{_process_image} . ".txt";
    @m_error_array = ( split( '|||', <ERROR_W> ) );
    @m_href_array = ( split( '|||', <M_HREF_W> ) );
    @href_array = ( split( '|||', <HREF_W> ) );
    close ( ERROR_W );
    close ( M_HREF_W );
    close ( HREF_W );
}else{
    @href_array = ( $self->{_url} );
}
my $z = 0;
while( @href_array ){
    if( defined( $self->{_x_more} ) && $z == $self->{_x_more} ) {
        last;
    }
    if( defined( $self->{_process_image} ) ) {
        $self->write( 'm_href_w', @m_href_array );
        $self->write( 'href_w', @href_array );
        $self->write( 'error_w', @m_error_array );
    }
    $self->{_link_count} = scalar @m_href_array;
    my $href = shift( @href_array );
    my $info = URI->new($href);
    my $host = $info->host;
    $host =~ s/^www\.//;
    $result = $dbh->prepare("INSERT INTO `". $host ."` (URL) VALUES ('$href')");
    if( ! $result->execute() ){
        $result = $dbh->prepare("CREATE TABLE `" . $host . "` ( `ID` INT( 255 ) NOT NULL AUTO_INCREMENT , `URL` VARCHAR( 255 ) NOT NULL , PRIMARY KEY ( `ID` )) ENGINE = MYISAM ;");
        $result->execute()
    }
    $self->{_current_page} = $href;
    my $response = $ua->get($href);
    my $responseCode = $response->code;
    print $responseCode;
}

}

在结束时,my $host = $info->host;行投掷Can't locate object method "host" via package "URI::_generic"

任何人都能解释一下吗?

此致

菲尔

2 个答案:

答案 0 :(得分:10)

URI->new创建URI子类的实例,具体取决于您提供的URL的方案。这些子类可能是URI::httpURI::fileURI::mailto或完全不同的东西。如果URI没有为您提供的url类型设置专门的子类,那么它将创建URI::_generic的实例。

每个URI子类都有不同的方法。 URI::http恰好有host方法,但其他大多数方法都没有。您在->host或类似内容上调用了URI::http,因此没有host方法。

您可能希望传递给URI->new的所有字符串都是http网址。情况似乎并非如此,因此您可能需要检查数据。否则,如果您确实想要处理非http网址,则应在确认该实例之前确保该实例存在该方法,例如使用->can->isa

答案 1 :(得分:1)

以不同的方式说出来 - URI试图猜测方案,如果网址格式不正确,那将是一个没有这些方法的方案。

您只需要检查一下:

if($uri->scheme ne 'http'){
    die "URL '$url' was not http\n";
}
即使没有找到方案,

计划也会在那里。它只是没有价值。