[grilo-plugins/0.1.x] podcasts: Save data in proper place



commit 096ee2ec4801c781075cd6824e5ecbe2e40f86b1
Author: AntÃa Puentes <apuentes igalia com>
Date:   Tue Apr 24 11:41:53 2012 +0200

    podcasts: Save data in proper place
    
    Save the data files in the directory specified by the XDG
    Base Directory Specification. If previous data files exist
    in $HOME, move them to the new place.
    
    Partially fixes https://bugzilla.gnome.org/show_bug.cgi?id=641115

 src/media/podcasts/grl-podcasts.c |   41 ++++++++++++++++++++++++++++--------
 1 files changed, 32 insertions(+), 9 deletions(-)
---
diff --git a/src/media/podcasts/grl-podcasts.c b/src/media/podcasts/grl-podcasts.c
index 1855ce2..b3ee744 100644
--- a/src/media/podcasts/grl-podcasts.c
+++ b/src/media/podcasts/grl-podcasts.c
@@ -24,6 +24,8 @@
 #include "config.h"
 #endif
 
+#include <glib.h>
+#include <glib/gstdio.h>
 #include <grilo.h>
 #include <net/grl-net.h>
 #include <libxml/xpath.h>
@@ -47,7 +49,8 @@ GRL_LOG_DOMAIN_STATIC(podcasts_log_domain);
 
 /* --- Database --- */
 
-#define GRL_SQL_DB        ".grl-podcasts"
+#define GRL_SQL_OLD_DB   ".grl-podcasts"
+#define GRL_SQL_DB       "grl-podcasts.db"
 
 #define GRL_SQL_CREATE_TABLE_PODCASTS           \
   "CREATE TABLE IF NOT EXISTS podcasts ("       \
@@ -343,21 +346,43 @@ static void
 grl_podcasts_source_init (GrlPodcastsSource *source)
 {
   gint r;
-  const gchar *home;
+  gchar *path;
   gchar *db_path;
+  const gchar *home;
+  gchar *old_db_path;
   gchar *sql_error = NULL;
 
   source->priv = GRL_PODCASTS_GET_PRIVATE (source);
 
-  home = g_getenv ("HOME");
-  if (!home) {
-    GRL_WARNING ("$HOME not set, cannot open database");
-    return;
+  path = g_strconcat (g_get_user_data_dir (),
+                      G_DIR_SEPARATOR_S, "grilo-plugins",
+                      NULL);
+
+  if (!g_file_test (path, G_FILE_TEST_IS_DIR)) {
+    g_mkdir_with_parents (path, 0775);
+  }
+
+  db_path = g_strconcat (path, G_DIR_SEPARATOR_S, GRL_SQL_DB, NULL);
+  if (!g_file_test (db_path, G_FILE_TEST_EXISTS)) {
+    home = g_get_home_dir ();
+    if (home) {
+      old_db_path = g_strconcat (home, G_DIR_SEPARATOR_S, GRL_SQL_OLD_DB, NULL);
+      if (g_file_test (old_db_path, G_FILE_TEST_IS_REGULAR)) {
+        if (g_rename (old_db_path, db_path) == 0) {
+          GRL_DEBUG ("Database moved to the new location");
+        } else {
+          GRL_WARNING ("Failed to move the database to the new location");
+        }
+      }
+      g_free (old_db_path);
+    }
   }
 
   GRL_DEBUG ("Opening database connection...");
-  db_path = g_strconcat (home, G_DIR_SEPARATOR_S, GRL_SQL_DB, NULL);
   r = sqlite3_open (db_path, &source->priv->db);
+  g_free (path);
+  g_free (db_path);
+
   if (r) {
     g_critical ("Failed to open database '%s': %s",
 		db_path, sqlite3_errmsg (source->priv->db));
@@ -387,8 +412,6 @@ grl_podcasts_source_init (GrlPodcastsSource *source)
     return;
   }
   GRL_DEBUG ("  OK");
-
-  g_free (db_path);
 }
 
 G_DEFINE_TYPE (GrlPodcastsSource, grl_podcasts_source, GRL_TYPE_MEDIA_SOURCE);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]