]> git.ktnx.net Git - mpd-feeder.git/commitdiff
move Options in a stand-alone module
authorDamyan Ivanov <dmn@debian.org>
Thu, 11 Nov 2021 21:12:53 +0000 (21:12 +0000)
committerDamyan Ivanov <dmn@debian.org>
Thu, 11 Nov 2021 21:12:53 +0000 (21:12 +0000)
bin/mpd-feeder
lib/App/MPD/Feeder/Options.pm [new file with mode: 0644]

index 04da38fc457f5ee42068944122fad25e2bff4cc8..bbddefd4844f689e7bdfbdbfb75e3ff3035cacc8 100755 (executable)
 
 use v5.32;
 
+use App::MPD::Feeder::Options;
 use Getopt::Long ();
 use Log::Any qw($log);
 use Log::Any::Adapter Stderr => log_level => 'error';
 use Object::Pad;
 use Syntax::Keyword::Try;
 
-class Options {
-    use Log::Any qw($log);
-    use Time::Duration qw(duration_exact);
-    use Time::Duration::Parse qw(parse_duration);
-    has $log_level           :reader = 'warn';
-    has $target_queue_length :reader = 10;
-    has $mpd_host            :reader = undef;
-    has $mpd_port            :reader = undef;
-    has $db_path             :reader = 'mpd-feeder';
-    has $db_user             :reader = undef;
-    has $db_password         :reader = undef;
-    has $min_album_interval  :reader = parse_duration('5h');
-    has $min_song_interval   :reader = parse_duration('13d');
-    has $min_artist_interval :reader = parse_duration('1h 15m');
-    has $skip_db_update      :reader = 0;
-
-    method parse_command_line {
-        Getopt::Long::GetOptions(
-            'log-level=s'               => \$log_level,
-            'skip-db-update!'           => \$skip_db_update,
-            'tql|target-queue-length=n' => sub {
-                $target_queue_length = parse_integer(pop);
-            },
-            'mpd-host=s'           => \$mpd_host,
-            'mpd-port=s'           => \$mpd_port,
-            'db-path=s'            => \$db_path,
-            'db-user=s'            => \$db_user,
-            'min-album-interval=s' => sub {
-                $min_album_interval = parse_duration(pop);
-            },
-            'min-sing-interval=s' => sub {
-                $min_song_interval = parse_duration(pop);
-            },
-            'min-artist-interval=s' => sub {
-                $min_artist_interval = parse_duration(pop);
-            },
-        ) or exit 1;
-    }
-
-    sub handle_config_option( $ini, $section, $option, $target_ref,
-        $converter = undef )
-    {
-        return undef unless exists $ini->{$section}{$option};
-
-        my $value = $ini->{$section}{$option};
-
-        $value = $converter->($value) if $converter;
-
-        $$target_ref = $value;
-
-        $log->trace("Option $section.$option = $value");
-    }
-
-    method dump {
-        say "[mpd-feeder]";
-        say "log_level = $log_level";
-        say "";
-        say "[mpd]";
-        say "host = " . ( $mpd_host // '' );
-        say "port = " . ( $mpd_port // '' );
-        say "";
-        say "[queue]";
-        say "target-length = $target_queue_length";
-        say "min-song-interval = " . duration_exact($min_song_interval);
-        say "min-album-interval = " . duration_exact($min_album_interval);
-        say "min-artist-interval = " . duration_exact($min_artist_interval);
-        say "";
-        say "[db]";
-        say "path = " .     ( $db_path     // '' );
-        say "user = " .     ( $db_user     // '' );
-        say "password = " . ( $db_password // '' );
-    }
-
-    sub parse_integer($input) {
-        die "Invalid integer value '$input'" unless $input =~ /^\+?\d{1,18}$/;
-        return $input + 0;
-    }
-
-    method parse_config_file($path) {
-        $log->trace("Parsing configuration file $path");
-
-        use Config::INI::Reader;
-        my $ini = Config::INI::Reader->read_file($path);
-
-        handle_config_option( $ini => mpd => host => \$mpd_host );
-        handle_config_option( $ini => mpd => port => \$mpd_port );
-
-        handle_config_option( $ini => 'mpd-feeder' => log_level => \$log_level );
-
-        handle_config_option(
-            $ini => queue => 'target-length' => \$target_queue_length,
-            \&parse_integer
-        );
-        handle_config_option(
-            $ini => queue => 'min-song-interval' => \$min_song_interval,
-            \&parse_duration
-        );
-        handle_config_option(
-            $ini => queue => 'min-album-interval' => \$min_album_interval,
-            \&parse_duration
-        );
-        handle_config_option(
-            $ini => queue => 'min-artist-interval' => \$min_artist_interval,
-            \&parse_duration
-        );
-
-        handle_config_option( $ini => db => path     => \$db_path );
-        handle_config_option( $ini => db => user     => \$db_user );
-        handle_config_option( $ini => db => password => \$db_password );
-
-        # FIXME: complain about unknown sections/parameters
-    }
-}
-
 class Feeder {
     has $cfg_file :reader;
     has $opt :reader;
@@ -151,7 +38,7 @@ use Net::Async::MPD;
     }
 
     method configure {
-        my $new_opt = Options->new;
+        my $new_opt = App::MPD::Feeder::Options->new;
 
         $new_opt->parse_config_file($cfg_file) if $cfg_file;
 
diff --git a/lib/App/MPD/Feeder/Options.pm b/lib/App/MPD/Feeder/Options.pm
new file mode 100644 (file)
index 0000000..21bd646
--- /dev/null
@@ -0,0 +1,121 @@
+package App::MPD::Feeder::Options;
+
+use strict;
+use warnings;
+use utf8;
+use feature 'say';
+use Object::Pad;
+
+class App::MPD::Feeder::Options {
+    use Log::Any qw($log);
+    use Time::Duration qw(duration_exact);
+    use Time::Duration::Parse qw(parse_duration);
+    has $log_level           :reader = 'warn';
+    has $target_queue_length :reader = 10;
+    has $mpd_host            :reader = undef;
+    has $mpd_port            :reader = undef;
+    has $db_path             :reader = 'mpd-feeder';
+    has $db_user             :reader = undef;
+    has $db_password         :reader = undef;
+    has $min_album_interval  :reader = parse_duration('5h');
+    has $min_song_interval   :reader = parse_duration('13d');
+    has $min_artist_interval :reader = parse_duration('1h 15m');
+    has $skip_db_update      :reader = 0;
+
+    method parse_command_line {
+        Getopt::Long::GetOptions(
+            'log-level=s'               => \$log_level,
+            'skip-db-update!'           => \$skip_db_update,
+            'tql|target-queue-length=n' => sub {
+                $target_queue_length = parse_integer(pop);
+            },
+            'mpd-host=s'           => \$mpd_host,
+            'mpd-port=s'           => \$mpd_port,
+            'db-path=s'            => \$db_path,
+            'db-user=s'            => \$db_user,
+            'min-album-interval=s' => sub {
+                $min_album_interval = parse_duration(pop);
+            },
+            'min-sing-interval=s' => sub {
+                $min_song_interval = parse_duration(pop);
+            },
+            'min-artist-interval=s' => sub {
+                $min_artist_interval = parse_duration(pop);
+            },
+        ) or exit 1;
+    }
+
+    sub handle_config_option( $ini, $section, $option, $target_ref,
+        $converter = undef )
+    {
+        return undef unless exists $ini->{$section}{$option};
+
+        my $value = $ini->{$section}{$option};
+
+        $value = $converter->($value) if $converter;
+
+        $$target_ref = $value;
+
+        $log->trace("Option $section.$option = $value");
+    }
+
+    method dump {
+        say "[mpd-feeder]";
+        say "log_level = $log_level";
+        say "";
+        say "[mpd]";
+        say "host = " . ( $mpd_host // '' );
+        say "port = " . ( $mpd_port // '' );
+        say "";
+        say "[queue]";
+        say "target-length = $target_queue_length";
+        say "min-song-interval = " . duration_exact($min_song_interval);
+        say "min-album-interval = " . duration_exact($min_album_interval);
+        say "min-artist-interval = " . duration_exact($min_artist_interval);
+        say "";
+        say "[db]";
+        say "path = " .     ( $db_path     // '' );
+        say "user = " .     ( $db_user     // '' );
+        say "password = " . ( $db_password // '' );
+    }
+
+    sub parse_integer($input) {
+        die "Invalid integer value '$input'" unless $input =~ /^\+?\d{1,18}$/;
+        return $input + 0;
+    }
+
+    method parse_config_file($path) {
+        $log->trace("Parsing configuration file $path");
+
+        use Config::INI::Reader;
+        my $ini = Config::INI::Reader->read_file($path);
+
+        handle_config_option( $ini => mpd => host => \$mpd_host );
+        handle_config_option( $ini => mpd => port => \$mpd_port );
+
+        handle_config_option( $ini => 'mpd-feeder' => log_level => \$log_level );
+
+        handle_config_option(
+            $ini => queue => 'target-length' => \$target_queue_length,
+            \&parse_integer
+        );
+        handle_config_option(
+            $ini => queue => 'min-song-interval' => \$min_song_interval,
+            \&parse_duration
+        );
+        handle_config_option(
+            $ini => queue => 'min-album-interval' => \$min_album_interval,
+            \&parse_duration
+        );
+        handle_config_option(
+            $ini => queue => 'min-artist-interval' => \$min_artist_interval,
+            \&parse_duration
+        );
+
+        handle_config_option( $ini => db => path     => \$db_path );
+        handle_config_option( $ini => db => user     => \$db_user );
+        handle_config_option( $ini => db => password => \$db_password );
+
+        # FIXME: complain about unknown sections/parameters
+    }
+}