]> git.ktnx.net Git - mpd-feeder.git/blobdiff - bin/mpd-feeder
initially, log only errors
[mpd-feeder.git] / bin / mpd-feeder
index 5760c751633483dd6f02fe95fe908ae6876e42c1..8ada5ca85160c32c68a58190116b6b7a0227c7de 100755 (executable)
@@ -4,7 +4,7 @@ use v5.32;
 
 use Getopt::Long ();
 use Log::Any qw($log);
-use Log::Any::Adapter Stderr => log_level => 'trace';
+use Log::Any::Adapter Stderr => log_level => 'error';
 use Object::Pad;
 use Syntax::Keyword::Try;
 
@@ -110,9 +110,11 @@ class Options {
 }
 
 class Feeder {
+    has $cfg_file :reader;
     has $opt :reader;
     has $db;
     has $db_generation;
+    has $db_needs_update :writer = 1;
     has $mpd :reader;
 
 use constant DEFAULT_CONFIG_FILE => '/etc/mpd-feeder/mpd-feeder.conf';
@@ -120,25 +122,31 @@ use constant DEFAULT_CONFIG_FILE => '/etc/mpd-feeder/mpd-feeder.conf';
 use DBD::Pg;
 use DBI;
 use Log::Any qw($log);
+use IO::Async::Signal;
 use Net::Async::MPD;
 
     ADJUST {
-        $opt = Options->new;
+        Getopt::Long::Configure('pass_through');
+        Getopt::Long::GetOptions('cfg|config=s' => \$cfg_file);
+        Getopt::Long::Configure('no_pass_through');
 
-        {
-            my $cfg_file;
-            Getopt::Long::Configure('pass_through');
-            Getopt::Long::GetOptions('cfg|config=s' => \$cfg_file);
-            Getopt::Long::Configure('no_pass_through');
+        $cfg_file //= DEFAULT_CONFIG_FILE if -e DEFAULT_CONFIG_FILE;
 
-            $cfg_file //= DEFAULT_CONFIG_FILE if -e DEFAULT_CONFIG_FILE;
+        $self->configure;
 
-            $opt->parse_config_file($cfg_file) if $cfg_file;
-        }
+        $db_needs_update = 0 if $opt->skip_db_update;
+    }
+
+    method configure {
+        my $new_opt = Options->new;
+
+        $new_opt->parse_config_file($cfg_file) if $cfg_file;
+
+        $new_opt->parse_command_line;
 
-        $opt->parse_command_line;
+        Log::Any::Adapter->set( Stderr => log_level => $new_opt->log_level );
 
-        Log::Any::Adapter->set( Stderr => log_level => $opt->log_level );
+        $opt = $new_opt;
     }
 
     method connect_mpd {
@@ -149,6 +157,16 @@ use Net::Async::MPD;
         $conn{port} = $opt->mpd_port if $opt->mpd_port;
 
         $mpd = Net::Async::MPD->new(%conn);
+
+        $mpd->loop->add(
+            IO::Async::Signal->new(
+                name       => 'HUP',
+                on_receipt => sub {
+                    $log->debug("SIGHUP received. Stopping loop");
+                    $mpd->loop->stop('reload');
+                },
+            )
+        );
     }
 
     method connect_db {
@@ -156,12 +174,12 @@ use Net::Async::MPD;
 
         $db = DBI->connect( "dbi:Pg:dbname=" . $opt->db_path,
             $opt->db_user, $opt->db_password,
-            { RaiseError => 1, AutoCommit => 1 } );
+            { RaiseError => 1, PrintError => 0, AutoCommit => 1 } );
 
         $log->info( "Connected to database " . $opt->db_path );
         $db_generation = $self->db_get_option('generation');
         $log->debug("DB generation is $db_generation");
-        $self->update_db unless $opt->skip_db_update;
+        $self->update_db;
     }
 
     method db_get_option($name) {
@@ -231,48 +249,55 @@ SQL
         )->execute( $item->{artist}, $item->{album} );
     }
 
-    method update_db() {
+    method update_db($force = undef) {
+        if (!$db_needs_update and !$force) {
+            $log->debug("Skipping DB update");
+            return;
+        }
+
         $log->info('Updating song database');
-        $mpd->send('listallinfo')->on_done(
-            sub {
-                try {
-                    my $rows = shift;
-                    $db->begin_work;
+        $self->connect_mpd;
+        $self->connect_db;
 
-                    $db_generation++;
+        my $rows = $mpd->send('listallinfo')->get;
+        try {
+            $db->begin_work;
 
-                    my $song_count;
+            $db_generation++;
 
-                    foreach my $entry (@$rows) {
-                        next unless exists $entry->{file};
-                        $self->db_store_song( $entry->{file},
-                            $entry->{Artist}, $entry->{Album} );
-                        $song_count++;
-                    }
+            my $song_count;
 
-                    $log->info("Updated data about $song_count songs");
+            foreach my $entry (@$rows) {
+                next unless exists $entry->{file};
+                $self->db_store_song( $entry->{file},
+                    $entry->{Artist}, $entry->{Album} );
+                $song_count++;
+            }
 
-                    $self->db_remove_stale_entries;
+            $log->info("Updated data about $song_count songs");
 
-                    $self->db_set_option( generation => $db_generation );
+            $self->db_remove_stale_entries;
 
-                    $db->commit;
-                }
-                catch {
-                    my $err = $@;
+            $self->db_set_option( generation => $db_generation );
 
-                    $db_generation--;
+            $db->commit;
 
-                    $db->rollback;
+            $db_needs_update = 0;
+        }
+        catch {
+            my $err = $@;
 
-                    die $err;
-                }
-            }
-        );
+            $db_generation--;
+
+            $db->rollback;
+
+            die $err;
+        }
     }
 
     method db_find_suitable_songs($num) {
         $self->connect_db;
+        $self->update_db;
 
         my @result;
         my $sth = $db->prepare_cached(<<SQL);
@@ -283,8 +308,8 @@ JOIN albums al ON al.album=s.album
 WHERE (s.last_queued IS NULL OR s.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
   AND (ar.last_queued IS NULL OR ar.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
   AND (al.last_queued IS NULL OR al.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
-  AND NOT EXISTS (SELECT 1 FROM blacklisted_artists bar WHERE bar.artist = s.artist)
-  AND NOT EXISTS (SELECT 1 FROM blacklisted_albums  bal WHERE bal.album  = s.album)
+  AND NOT EXISTS (SELECT 1 FROM unwanted_artists uar WHERE uar.artist = s.artist)
+  AND NOT EXISTS (SELECT 1 FROM unwanted_albums  ual WHERE ual.album  = s.album)
 ORDER BY random()
 LIMIT ?
 SQL
@@ -302,9 +327,45 @@ SQL
         return @result;
     }
 
+    method db_add_unwanted_artist($artist) {
+        $self->connect_db;
+
+        try {
+            $db->do(
+                <<'SQL',
+INSERT INTO unwanted_artists(artist, generation)
+VALUES($1, $2)
+SQL
+                undef, $artist, $db_generation
+            );
+            return 1;
+        }
+        catch {
+            my $err = $@;
+
+            $log->debug("PostgreSQL error: $err");
+            $log->debug( "SQLSTATE = " . $db->state );
+            return 0 if $db->state eq '23505';
+
+            die $err;
+        }
+    }
+
+    method db_del_unwanted_artist($artist) {
+        $self->connect_db;
+
+        return 1 == $db->do(
+            <<'SQL',
+DELETE FROM unwanted_artists
+WHERE artist = $1
+SQL
+            undef, $artist
+        );
+    }
+
     method queue_songs($num = undef, $callback = undef) {
-        $self->connect_mpd;
         if (!defined $num) {
+            $self->connect_mpd;
             $mpd->send('playlist')->on_done(
                 sub {
                     my $present = scalar @{ $_[0] };
@@ -350,30 +411,25 @@ SQL
         for (@paths) {
             push @commands, [ add => "\"$_\"" ];
         }
+        $self->connect_mpd;
         my $f = $mpd->send( \@commands );
-        warn "here";
         $f->on_fail( sub { die @_ } );
         $f->on_done(
             sub {
-                warn $_ for @_;
                 $self->db_note_song_qeued($_) for @list;
                 $callback->(@_) if $callback;
             }
         );
-
-        warn "here";
     }
 
     method prepare_to_wait_idle {
         $log->trace('declaring idle mode');
         $mpd->send('idle database playlist')->on_done(
             sub {
-                warn $_ for @_;
                 my $result = shift;
-                use JSON; warn to_json($result);
 
                 if ( $result->{changed} eq 'database' ) {
-                    $self->update_db;
+                    $db_needs_update = 1;
                     $self->prepare_to_wait_idle;
                 }
                 elsif ( $result->{changed} eq 'playlist' ) {
@@ -399,30 +455,80 @@ SQL
 
         $self->prepare_to_wait_idle;
     }
-}
 
-my $feeder = Feeder->new();
+    method stop {
+        undef $mpd;
 
-sub usage {
-    die "Usage: mpd-feeder [option...] [command]\n";
+        if ($db) {
+            if ($db->{ActiveKids}) {
+                $log->warn("$db->{ActiveKids} active DB statements");
+                for my $st ( @{ $db->{ChildHandles} } ) {
+                    next unless $st->{Active};
+                    while(my($k,$v) = each %$st) {
+                        $log->debug("$k = ".($v//'<NULL>'));
+                    }
+                }
+            }
+
+            $db->disconnect;
+            undef $db;
+        }
+    }
 }
 
-if (@ARGV) {
-    usage if @ARGV > 1;
+my $feeder = Feeder->new();
 
+if (@ARGV) {
     my $cmd = shift @ARGV;
 
     if ($cmd eq 'dump-config') {
+        die "dump-config command accepts no arguments\n" if @ARGV;
+
         $feeder->opt->dump;
         exit;
     }
-# FIXME: handle blacklist manipulation
+
+    if ( $cmd eq 'add-unwanted-artist' ) {
+        die "Missing command arguments\n" unless @ARGV;
+        $feeder->set_db_needs_update(0);
+        for my $artist (@ARGV) {
+            if ( $feeder->db_add_unwanted_artist($artist) ) {
+                $log->info("Artist '$artist' added to the unwanted list\n");
+            }
+            else {
+                $log->warn("Artist '$artist' already in the unwanted list\n");
+            }
+        }
+        exit;
+    }
+
+    if ( $cmd eq 'del-unwanted-artist' ) {
+        die "Missing command arguments\n" unless @ARGV;
+        $feeder->set_db_needs_update(0);
+        for my $artist (@ARGV) {
+            if ( $feeder->db_del_unwanted_artist($artist) ) {
+                $log->info("Artist '$artist' deleted from the unwanted list\n");
+            }
+            else {
+                $log->warn("Artist '$artist' is not in the unwanted list\n");
+            }
+        }
+        exit;
+    }
+
+    if ( $cmd eq 'add-unwanted-album' ) {
+        die "NOT IMPLEMENTED\n";
+    }
 
     if ( $cmd eq 'one-shot' ) {
+        die "one-shot command accepts no arguments\n" if @ARGV;
+
         $feeder->queue_songs(undef, sub { exit });
         $feeder->mpd->loop->run;
     }
     elsif ( $cmd eq 'single' ) {
+        die "single command accepts no arguments\n" if @ARGV;
+
         $feeder->queue_songs(1, sub { exit });
         $feeder->mpd->loop->run;
     }
@@ -431,7 +537,18 @@ if (@ARGV) {
     }
 }
 
+for ( ;; ) {
+    $feeder->queue_songs( undef, sub { $feeder->run } );
 
-$feeder->queue_songs( undef, sub { $feeder->run } );
+    $log->debug("Entering event loop. PID=$$");
 
-$feeder->mpd->loop->run;
+    my $result = $feeder->mpd->loop->run;
+    $log->trace( "Got loop result of " . ( $result // 'undef' ) );
+
+    if ('reload' eq $result) {
+        $log->notice("disconnecting");
+        $feeder->stop;
+
+        exec( "$0", '--config', $feeder->cfg_file, '--skip-db-update' );
+    }
+}