X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=lib%2FSpeak.pm;h=9cb944177452dbeb7714ecdfd60e83b1f7cebe30;hb=340b9e62b878286519daa08725f831868d4c00b9;hp=dd38346287e57e681a19e1b8ac326f200a8bfd0e;hpb=525b9167625b04ff3560456ec8329d1c640bf22d;p=clearscm.git diff --git a/lib/Speak.pm b/lib/Speak.pm index dd38346..9cb9441 100644 --- a/lib/Speak.pm +++ b/lib/Speak.pm @@ -83,7 +83,7 @@ Otherwise the text in the clipboard will be used. =item $log -If provided, errors and messages will be logged to the logfile, otherwise stdout +If provided, errors and messages will be logged to the logfile, otherwise to speak.log =back @@ -103,13 +103,16 @@ Returns: =cut - if (-f "$FindBin::Bin/shh") { - $msg .= ' [silent]'; - if ($log) { - $log->msg($msg); - } else { - verbose $msg; - } # if + $log = Logger->new( + path => '/var/local/log', + name => 'speak', + timestamped => 'yes', + append => 1, + ) unless $log; + + if (-f "$FindBin::Bin/../data/shh") { + $msg .= ' [silent shh]'; + $log->msg($msg); return; } # if @@ -120,40 +123,18 @@ Returns: # Handle the case where $msg is a filehandle $msg = <$msg> if ref $msg eq 'GLOB'; - # We can't have two speakers going at the same time so if we have an error - # backoff a little and try again. - my $attempts = 0; - my $maxretries = 3; - - my ($status, @output); - # Log message to log file if $log was passed in. - $log->msg($msg) if $log; - - while ($attempts++ < $maxretries) { - ($status, @output) = Execute "/usr/local/bin/gt \"$msg\""; - - if ($status) { - my $errmsg = "Unable to speak (Status: $status) - " . join "\n", @output; + $log->msg($msg); - if ($log) { - $log->err($errmsg); - } else { - error $errmsg; - } # if + #$msg = quotemeta $msg; + $msg =~ s/\$/\\\$/g; - sleep int rand 10; - } else { - return; - } # if - } # while + my ($status, @output) = Execute "/usr/local/bin/gt \"$msg\""; - my $errmsg = 'Maximum retries exceeded - terminating'; + if ($status) { + my $errmsg = "Unable to speak (Status: $status) - " . join "\n", @output; - if ($log) { - $log->err($errmsg, $status); - } else { - error $errmsg, $status; + $log->err($errmsg); } # if return;