]> git.ktnx.net Git - mpd-feeder.git/blob - bin/mpd-feeder
fix filtering on album last queue time
[mpd-feeder.git] / bin / mpd-feeder
1 #!/usr/bin/perl
2
3 use v5.32;
4
5 use Getopt::Long ();
6 use Log::Any qw($log);
7 use Log::Any::Adapter Stderr => log_level => 'error';
8 use Object::Pad;
9 use Syntax::Keyword::Try;
10
11 class Options {
12     use Log::Any qw($log);
13     use Time::Duration qw(duration_exact);
14     use Time::Duration::Parse qw(parse_duration);
15     has $log_level           :reader = 'warn';
16     has $target_queue_length :reader = 10;
17     has $mpd_host            :reader = undef;
18     has $mpd_port            :reader = undef;
19     has $db_path             :reader = 'mpd-feeder';
20     has $db_user             :reader = undef;
21     has $db_password         :reader = undef;
22     has $min_album_interval  :reader = parse_duration('5h');
23     has $min_song_interval   :reader = parse_duration('13d');
24     has $min_artist_interval :reader = parse_duration('1h 15m');
25     has $skip_db_update      :reader = 0;
26
27     method parse_command_line {
28         Getopt::Long::GetOptions(
29             'log-level=s'               => \$log_level,
30             'skip-db-update!'           => \$skip_db_update,
31             'tql|target-queue-length=n' => sub {
32                 $target_queue_length = parse_integer(pop);
33             },
34             'mpd-host=s'           => \$mpd_host,
35             'mpd-port=s'           => \$mpd_port,
36             'db-path=s'            => \$db_path,
37             'db-user=s'            => \$db_user,
38             'min-album-interval=s' => sub {
39                 $min_album_interval = parse_duration(pop);
40             },
41             'min-sing-interval=s' => sub {
42                 $min_song_interval = parse_duration(pop);
43             },
44             'min-artist-interval=s' => sub {
45                 $min_artist_interval = parse_duration(pop);
46             },
47         ) or exit 1;
48     }
49
50     sub handle_config_option( $ini, $section, $option, $target_ref,
51         $converter = undef )
52     {
53         return undef unless exists $ini->{$section}{$option};
54
55         my $value = $ini->{$section}{$option};
56
57         $value = $converter->($value) if $converter;
58
59         $$target_ref = $value;
60
61         $log->trace("Option $section.$option = $value");
62     }
63
64     method dump {
65         say "[mpd-feeder]";
66         say "log_level = $log_level";
67         say "";
68         say "[mpd]";
69         say "host = " . ( $mpd_host // '' );
70         say "port = " . ( $mpd_port // '' );
71         say "";
72         say "[queue]";
73         say "target-length = $target_queue_length";
74         say "min-song-interval = " . duration_exact($min_song_interval);
75         say "min-album-interval = " . duration_exact($min_album_interval);
76         say "min-artist-interval = " . duration_exact($min_artist_interval);
77         say "";
78         say "[db]";
79         say "path = " .     ( $db_path     // '' );
80         say "user = " .     ( $db_user     // '' );
81         say "password = " . ( $db_password // '' );
82     }
83
84     sub parse_integer($input) {
85         die "Invalid integer value '$input'" unless $input =~ /^\+?\d{1,18}$/;
86         return $input + 0;
87     }
88
89     method parse_config_file($path) {
90         $log->trace("Parsing configuration file $path");
91
92         use Config::INI::Reader;
93         my $ini = Config::INI::Reader->read_file($path);
94
95         handle_config_option( $ini => mpd => host => \$mpd_host );
96         handle_config_option( $ini => mpd => port => \$mpd_port );
97
98         handle_config_option( $ini => 'mpd-feeder' => log_level => \$log_level );
99
100         handle_config_option(
101             $ini => queue => 'target-length' => \$target_queue_length,
102             \&parse_integer
103         );
104         handle_config_option(
105             $ini => queue => 'min-song-interval' => \$min_song_interval,
106             \&parse_duration
107         );
108         handle_config_option(
109             $ini => queue => 'min-album-interval' => \$min_album_interval,
110             \&parse_duration
111         );
112         handle_config_option(
113             $ini => queue => 'min-artist-interval' => \$min_artist_interval,
114             \&parse_duration
115         );
116
117         handle_config_option( $ini => db => path     => \$db_path );
118         handle_config_option( $ini => db => user     => \$db_user );
119         handle_config_option( $ini => db => password => \$db_password );
120
121         # FIXME: complain about unknown sections/parameters
122     }
123 }
124
125 class Feeder {
126     has $cfg_file :reader;
127     has $opt :reader;
128     has $db;
129     has $db_generation;
130     has $db_needs_update :writer = 1;
131     has $mpd :reader;
132
133 use constant DEFAULT_CONFIG_FILE => '/etc/mpd-feeder/mpd-feeder.conf';
134
135 use DBD::Pg;
136 use DBI;
137 use Log::Any qw($log);
138 use IO::Async::Signal;
139 use Net::Async::MPD;
140
141     ADJUST {
142         Getopt::Long::Configure('pass_through');
143         Getopt::Long::GetOptions('cfg|config=s' => \$cfg_file);
144         Getopt::Long::Configure('no_pass_through');
145
146         $cfg_file //= DEFAULT_CONFIG_FILE if -e DEFAULT_CONFIG_FILE;
147
148         $self->configure;
149
150         $db_needs_update = 0 if $opt->skip_db_update;
151     }
152
153     method configure {
154         my $new_opt = Options->new;
155
156         $new_opt->parse_config_file($cfg_file) if $cfg_file;
157
158         $new_opt->parse_command_line;
159
160         Log::Any::Adapter->set( Stderr => log_level => $new_opt->log_level );
161
162         $opt = $new_opt;
163     }
164
165     method connect_mpd {
166         return if $mpd;
167
168         my %conn = ( auto_connect => 1 );
169         $conn{host} = $opt->mpd_host if $opt->mpd_host;
170         $conn{port} = $opt->mpd_port if $opt->mpd_port;
171
172         $mpd = Net::Async::MPD->new(%conn);
173
174         $mpd->loop->add(
175             IO::Async::Signal->new(
176                 name       => 'HUP',
177                 on_receipt => sub {
178                     $log->debug("SIGHUP received. Stopping loop");
179                     $mpd->loop->stop('reload');
180                 },
181             )
182         );
183
184         $mpd->loop->add(
185             IO::Async::Signal->new(
186                 name       => 'USR1',
187                 on_receipt => sub {
188                     $log->debug("SIGUSR1 received. Dumping configuration to STDERR");
189                     my $old = select \*STDERR;
190                     try {
191                         $opt->dump;
192                     }
193                     finally {
194                         select $old;
195                     }
196                 },
197             )
198         );
199     }
200
201     method connect_db {
202         return if $db;
203
204         $db = DBI->connect( "dbi:Pg:dbname=" . $opt->db_path,
205             $opt->db_user, $opt->db_password,
206             { RaiseError => 1, PrintError => 0, AutoCommit => 1 } );
207
208         $log->info( "Connected to database " . $opt->db_path );
209         $db_generation = $self->db_get_option('generation');
210         $log->debug("DB generation is $db_generation");
211         $self->update_db;
212     }
213
214     method db_get_option($name) {
215         my $sth = $db->prepare_cached("select $name from options");
216         $sth->execute;
217         my @result = $sth->fetchrow_array;
218
219         return $result[0];
220     }
221
222     method db_set_option( $name, $value ) {
223         my $sth = $db->prepare_cached("update options set $name = ?");
224         $sth->execute($value);
225     }
226
227     method db_store_song($song, $artist, $album) {
228         return unless length($song) and length($artist) and length($album);
229
230         $db->prepare_cached(
231             <<'SQL')->execute( $song, $artist, $album, $db_generation );
232 INSERT INTO songs(path, artist, album, generation)
233 VALUES($1, $2, $3, $4)
234 ON CONFLICT ON CONSTRAINT songs_pkey DO
235 UPDATE SET artist = $2
236          , album = $3
237          , generation = $4
238 SQL
239         $db->prepare_cached(<<'SQL')->execute( $artist, $album, $db_generation );
240 INSERT INTO albums(artist, album, generation)
241 VALUES($1, $2, $3)
242 ON CONFLICT ON CONSTRAINT albums_pkey DO
243 UPDATE SET generation = $3
244 SQL
245         $db->prepare_cached(<<'SQL')->execute( $artist, $db_generation );
246 INSERT INTO artists(artist, generation)
247 VALUES($1, $2)
248 ON CONFLICT ON CONSTRAINT artists_pkey DO
249 UPDATE SET generation = $2
250 SQL
251     }
252
253     method db_remove_stale_entries {
254         my $sth =
255             $db->prepare_cached('DELETE FROM songs WHERE generation <> ?');
256         $sth->execute($db_generation);
257         $log->debug( sprintf( "Deleted %d stale songs", $sth->rows ) );
258
259         $sth = $db->prepare_cached('DELETE FROM albums WHERE generation <> ?');
260         $sth->execute($db_generation);
261         $log->debug( sprintf( "Deleted %d stale albums", $sth->rows ) );
262
263         $sth =
264             $db->prepare_cached('DELETE FROM artists WHERE generation <> ?');
265         $sth->execute($db_generation);
266         $log->debug( sprintf( "Deleted %d stale artists", $sth->rows ) );
267     }
268
269     method db_note_song_qeued($item) {
270         $db->prepare_cached(
271             'UPDATE songs SET last_queued=current_timestamp WHERE path=?')
272             ->execute( $item->{song} );
273         $db->prepare_cached(
274             'UPDATE artists SET last_queued=CURRENT_TIMESTAMP WHERE artist=?')
275             ->execute( $item->{artist} );
276         $db->prepare_cached(
277             'UPDATE albums SET last_queued=CURRENT_TIMESTAMP WHERE artist=? AND album=?'
278         )->execute( $item->{artist}, $item->{album} );
279     }
280
281     method update_db($force = undef) {
282         if (!$db_needs_update and !$force) {
283             $log->debug("Skipping DB update");
284             return;
285         }
286
287         $log->info('Updating song database');
288         $self->connect_mpd;
289         $self->connect_db;
290
291         my $rows = $mpd->send('listallinfo')->get;
292         try {
293             $db->begin_work;
294
295             $db_generation++;
296
297             my $song_count;
298
299             foreach my $entry (@$rows) {
300                 next unless exists $entry->{file};
301                 $self->db_store_song( $entry->{file},
302                     $entry->{AlbumArtist} // $entry->{Artist},
303                     $entry->{Album} );
304                 $song_count++;
305             }
306
307             $log->info("Updated data about $song_count songs");
308
309             $self->db_remove_stale_entries;
310
311             $self->db_set_option( generation => $db_generation );
312
313             $db->commit;
314
315             $db_needs_update = 0;
316         }
317         catch {
318             my $err = $@;
319
320             $db_generation--;
321
322             $db->rollback;
323
324             die $err;
325         }
326     }
327
328     method db_find_suitable_songs($num) {
329         $self->connect_db;
330         $self->update_db;
331
332         my @result;
333         my $sql = <<SQL;
334 SELECT s.path, s.artist, s.album
335 FROM songs s
336 JOIN artists ar ON ar.artist=s.artist
337 JOIN albums al ON al.album=s.album AND al.artist=s.artist
338 WHERE (s.last_queued IS NULL OR s.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
339   AND (ar.last_queued IS NULL OR ar.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
340   AND (al.last_queued IS NULL OR al.last_queued < CURRENT_TIMESTAMP - (? || ' seconds')::interval)
341   AND NOT EXISTS (SELECT 1 FROM unwanted_artists uar WHERE uar.artist = s.artist)
342   AND NOT EXISTS (SELECT 1 FROM unwanted_albums  ual WHERE ual.album  = s.album)
343 ORDER BY random()
344 LIMIT ?
345 SQL
346         my @params = (
347             $opt->min_song_interval,  $opt->min_artist_interval,
348             $opt->min_album_interval, $num,
349         );
350         my $sth = $db->prepare_cached($sql);
351         $sth->execute(@params);
352         while ( my @row = $sth->fetchrow_array ) {
353             push @result,
354                 { song => $row[0], artist => $row[1], album => $row[2] };
355         }
356
357         return @result;
358     }
359
360     method db_add_unwanted_artist($artist) {
361         $self->connect_db;
362
363         try {
364             $db->do(
365                 <<'SQL',
366 INSERT INTO unwanted_artists(artist, generation)
367 VALUES($1, $2)
368 SQL
369                 undef, $artist, $db_generation
370             );
371             return 1;
372         }
373         catch {
374             my $err = $@;
375
376             $log->debug("PostgreSQL error: $err");
377             $log->debug( "SQLSTATE = " . $db->state );
378             return 0 if $db->state eq '23505';
379
380             die $err;
381         }
382     }
383
384     method db_del_unwanted_artist($artist) {
385         $self->connect_db;
386
387         return 1 == $db->do(
388             <<'SQL',
389 DELETE FROM unwanted_artists
390 WHERE artist = $1
391 SQL
392             undef, $artist
393         );
394     }
395
396     method queue_songs($num = undef, $callback = undef) {
397         if (!defined $num) {
398             $self->connect_mpd;
399             $mpd->send('playlist')->on_done(
400                 sub {
401                     my $present = scalar @{ $_[0] };
402
403                     $log->notice( "Playlist contains $present songs. Wanted: "
404                             . $opt->target_queue_length );
405                     if ( $present < $opt->target_queue_length ) {
406                         $self->queue_songs(
407                             $opt->target_queue_length - $present, $callback );
408                     }
409                     else {
410                         $callback->() if $callback;
411                     }
412                 }
413             );
414
415             return;
416         }
417
418         my @list = $self->db_find_suitable_songs($num);
419
420         die "Found no suitable songs" unless @list;
421
422         if ( @list < $num ) {
423             $log->warn(
424                 sprintf(
425                     'Found only %d suitable songs instead of %d',
426                     scalar(@list), $num
427                 )
428             );
429         }
430
431         $log->info("About to add $num songs to the playlist");
432
433         my @paths;
434         for my $song (@list) {
435             my $path = $song->{song};
436             $path =~ s/"/\\"/g;
437             push @paths, $path;
438         }
439
440         $log->debug( "Adding " . join( ', ', map {"«$_»"} @paths ) );
441         my @commands;
442         for (@paths) {
443             push @commands, [ add => "\"$_\"" ];
444         }
445         $self->connect_mpd;
446         my $f = $mpd->send( \@commands );
447         $f->on_fail( sub { die @_ } );
448         $f->on_done(
449             sub {
450                 $self->db_note_song_qeued($_) for @list;
451                 $callback->(@_) if $callback;
452             }
453         );
454     }
455
456     method prepare_to_wait_idle {
457         $log->trace('declaring idle mode');
458         $mpd->send('idle database playlist')->on_done(
459             sub {
460                 my $result = shift;
461
462                 if ( $result->{changed} eq 'database' ) {
463                     $db_needs_update = 1;
464                     $self->prepare_to_wait_idle;
465                 }
466                 elsif ( $result->{changed} eq 'playlist' ) {
467                     $self->queue_songs( undef,
468                         sub { $self->prepare_to_wait_idle } );
469                 }
470                 else {
471                     use JSON;
472                     $log->warn(
473                         "Unknown result from idle: " . to_json($result) );
474                     $self->prepare_to_wait_idle;
475                 }
476             }
477         );
478     }
479
480     method run {
481         $mpd->on(
482             close => sub {
483                 die "Connection to MPD lost";
484             }
485         );
486
487         $self->prepare_to_wait_idle;
488     }
489
490     method stop {
491         undef $mpd;
492
493         if ($db) {
494             if ($db->{ActiveKids}) {
495                 $log->warn("$db->{ActiveKids} active DB statements");
496                 for my $st ( @{ $db->{ChildHandles} } ) {
497                     next unless $st->{Active};
498                     while(my($k,$v) = each %$st) {
499                         $log->debug("$k = ".($v//'<NULL>'));
500                     }
501                 }
502             }
503
504             $db->disconnect;
505             undef $db;
506         }
507     }
508 }
509
510 my $feeder = Feeder->new();
511
512 if (@ARGV) {
513     my $cmd = shift @ARGV;
514
515     if ($cmd eq 'dump-config') {
516         die "dump-config command accepts no arguments\n" if @ARGV;
517
518         $feeder->opt->dump;
519         exit;
520     }
521
522     if ( $cmd eq 'add-unwanted-artist' ) {
523         die "Missing command arguments\n" unless @ARGV;
524         $feeder->set_db_needs_update(0);
525         for my $artist (@ARGV) {
526             if ( $feeder->db_add_unwanted_artist($artist) ) {
527                 $log->info("Artist '$artist' added to the unwanted list\n");
528             }
529             else {
530                 $log->warn("Artist '$artist' already in the unwanted list\n");
531             }
532         }
533         exit;
534     }
535
536     if ( $cmd eq 'del-unwanted-artist' ) {
537         die "Missing command arguments\n" unless @ARGV;
538         $feeder->set_db_needs_update(0);
539         for my $artist (@ARGV) {
540             if ( $feeder->db_del_unwanted_artist($artist) ) {
541                 $log->info("Artist '$artist' deleted from the unwanted list\n");
542             }
543             else {
544                 $log->warn("Artist '$artist' is not in the unwanted list\n");
545             }
546         }
547         exit;
548     }
549
550     if ( $cmd eq 'add-unwanted-album' ) {
551         die "NOT IMPLEMENTED\n";
552     }
553
554     if ( $cmd eq 'one-shot' ) {
555         die "one-shot command accepts no arguments\n" if @ARGV;
556
557         $feeder->queue_songs(undef, sub { exit });
558         $feeder->mpd->loop->run;
559     }
560     elsif ( $cmd eq 'single' ) {
561         die "single command accepts no arguments\n" if @ARGV;
562
563         $feeder->queue_songs(1, sub { exit });
564         $feeder->mpd->loop->run;
565     }
566     else {
567         die "Unknown command '$cmd'";
568     }
569 }
570
571 for ( ;; ) {
572     $feeder->queue_songs( undef, sub { $feeder->run } );
573
574     $log->debug("Entering event loop. PID=$$");
575
576     my $result = $feeder->mpd->loop->run;
577     $log->trace( "Got loop result of " . ( $result // 'undef' ) );
578
579     if ('reload' eq $result) {
580         $log->notice("disconnecting");
581         $feeder->stop;
582
583         exec( "$0", '--config', $feeder->cfg_file, '--skip-db-update' );
584     }
585 }