]> git.etc.gen.nz Git - picture-display.git/commitdiff
Add a config file and start to use it.
authorAndrew Ruthven <puck@catalyst.net.nz>
Mon, 22 Sep 2008 08:51:46 +0000 (20:51 +1200)
committerAndrew Ruthven <puck@dirk.wgtn.cat-it.co.nz>
Mon, 22 Sep 2008 08:51:46 +0000 (20:51 +1200)
Display.yml [new file with mode: 0644]
lib/Display/Config.pm [new file with mode: 0644]
lib/Display/Plugin.pm
lib/Display/Plugins/FSpot.pm
picture.pl

diff --git a/Display.yml b/Display.yml
new file mode 100644 (file)
index 0000000..62e3513
--- /dev/null
@@ -0,0 +1,9 @@
+background: FSpot
+enabled:
+ - FSpot
+ - Clock
+ - MPD
+plugins:
+  FSpot:
+    DB: /home/andrew/.gnome2/f-spot/photos.db
+    Tags: Brooke
diff --git a/lib/Display/Config.pm b/lib/Display/Config.pm
new file mode 100644 (file)
index 0000000..ca43adc
--- /dev/null
@@ -0,0 +1,33 @@
+package Display::Config;
+
+use Carp;
+use Config::Auto qw/find_file/;
+use FindBin qw/$Bin/;
+use YAML::Syck;
+
+use constant config_file => "Display.yml";
+
+sub new {
+  my $proto = shift;
+  my $class = ref($proto) || $proto;
+
+  my $self = {};
+
+  my $config = Config::Auto::find_file(config_file(), "$Bin/../etc");
+  if (! config || $config eq "") {
+    croak "Failed to find a config file.  Looking for ". config_file() . ".";
+  }
+
+  warn "Loading $config\n";
+  my $conf = eval { LoadFile $config };
+  if ($@) {
+    croak "Failed to load config file: $config, error: $@";
+  }
+
+  $self->{_config} = $conf;
+
+  bless ($self, $class);
+  return $self;
+}
+
+1;
index b8e954009659021a888920abbccac8ecb6babc1b..0405ca411f9cc63de2f9ae80d3cfb7b08a74e82a 100644 (file)
@@ -4,12 +4,13 @@ package Display::Plugin;
 use Clutter;
 
 sub new {
-  my ($class,$kernel,$session,$stage,$notifications) = @_;
+  my ($class,$kernel,$session,$stage,$config,$notifications) = @_;
 
   my $self = {
     'kernel' => $kernel,
     'session' => $session,
     'stage' => $stage,
+    'config' => $config,
     'notifications' => $notifications,
   };
 
index 2c7b96d2e4cf1aaf22e5a65454c998e5320c5e37..50b5cb948bfac6685df751d754d6ed7a3c8b4ec9 100644 (file)
@@ -5,7 +5,7 @@ use Clutter;
 use POE;
 use POE::Component::EasyDBI;
 
-my $f_spot_db = "/home/andrew/.gnome2/f-spot/photos.db";
+my $default_f_spot_db = "$ENV{HOME}/.gnome2/f-spot/photos.db";
 
 sub new {
   my $proto = shift;
@@ -74,7 +74,7 @@ sub init {
 
   POE::Component::EasyDBI->spawn(
     alias => 'FSpotDB',
-    dsn   => "dbi:SQLite:dbname=$f_spot_db",
+    dsn   => "dbi:SQLite:dbname=" . ($self->{'config'}{'_config'}{'plugings'}{'DB'} || $default_f_spot_db),
     username => '',
     password => '',
   );
index e3e14022353499f9bc42a14cb0522193a098eb46..4963e8f67995b2fa3889e049d65ef0542bb64a3e 100755 (executable)
@@ -10,6 +10,7 @@ use Getopt::Long;
 
 use lib "$FindBin::Bin/lib";
 
+use Display::Config;
 use Display::Notifications;
 
 my $full_screen = 1;
@@ -41,29 +42,43 @@ sub start {
     $stage->set_size(800, 600);
   }
 
+  my $config = Display::Config->new();
   my $notifications = Display::Notifications->new($kernel, $session, $stage);
 
-  my @modules = loadModules($kernel, $session, $stage, $notifications);
+  my @modules = loadModules($kernel, $session, $stage, $config, $notifications);
 
   $stage->show_all();
 }
 
 
+my @modules;
 sub loadModules {
-  my ($kernel, $session, $stage, $notifications) = @_;
-  my @modules;
+  my ($kernel, $session, $stage, $config, $notifications) = @_;
 
-  for my $module (plugins()) {
-  warn "Considering $module\n";
+  my @plugins = plugins();
+  if (defined $config->{_config}{'background'}) {
+    warn "background module is set\n";
+    warn "Considering background: " . join(", ", grep /$config->{_config}{'background'}/, @plugins) . "\n";
+    load_plugin($kernel, $session, $stage, $config, $notifications, grep /$config->{_config}{'background'}/, @plugins );
+  }
+
+  for my $module (@{ $config->{_config}{'enabled'} }) {
+    warn "Considering $module: " . join(", ", grep /$module/, @plugins) . "\n";
+    load_plugin($kernel, $session, $stage, $config, $notifications, grep /$module/, @plugins);
+  }
+}
+
+sub load_plugin {
+  my ($kernel, $session, $stage, $config, $notifications, @plugin) = @_;
+
+  for my $module (@plugin) {
     eval "use $module";
     if ($@) {
       warn "Failed to load plugin: $module ($@)\n";
     } else {
-      push @modules, $module->new($kernel, $session, $stage, $notifications);
+      push @modules, $module->new($kernel, $session, $stage, $config, $notifications);
     }
   }
-
-  return @modules;
 } 
 
 sub linear {