use reusable I/O utils and better error handling
Robert 'phaylon' Sedlacek [Thu, 10 May 2012 02:28:14 +0000 (02:28 +0000)]
lib/System/Introspector/Hosts.pm

index ed8a1bf..5f01f37 100644 (file)
@@ -1,6 +1,11 @@
 package System::Introspector::Hosts;
 use Moo;
 
+use System::Introspector::Util qw(
+    handle_from_file
+    transform_exceptions
+);
+
 has hosts_file => (
     is      => 'ro',
     default => sub { '/etc/hosts' },
@@ -8,23 +13,22 @@ has hosts_file => (
 
 sub gather {
     my ($self) = @_;
-    my $fh = $self->_open_hosts_file;
-    my @hosts;
-    while (defined( my $line = <$fh> )) {
-        chomp $line;
-        next if $line =~ m{^\s*$}
-             or $line =~ m{^\s*#};
-        push @hosts, [split m{\s+}, $line];
-    }
-    return \@hosts;
+    return transform_exceptions {
+        my $fh = $self->_open_hosts_file;
+        my @hosts;
+        while (defined( my $line = <$fh> )) {
+            chomp $line;
+            next if $line =~ m{^\s*$}
+                 or $line =~ m{^\s*#};
+            push @hosts, [split m{\s+}, $line];
+        }
+        return { hosts => \@hosts };
+    };
 }
 
 sub _open_hosts_file {
     my ($self) = @_;
-    my $file = $self->hosts_file;
-    open my $fh, '<', $file
-        or die "Unable to read $file: $!\n";
-    return $fh;
+    return handle_from_file $self->hosts_file;
 }
 
 1;