]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/gnome2-console/restore.c
03Dec05
[bacula/bacula] / bacula / src / gnome2-console / restore.c
index 1d2e211718761a6f042f612a84c121eb4605b307..c7cb31e19571df7544c112de0b68faed50959b15 100755 (executable)
 #include "restore.h"
 
 extern BSOCK *UA_sock;
-void write_director(gchar *msg);
+void write_director(const gchar *msg);
 void start_director_reader(gpointer data);
 void stop_director_reader(gpointer data);
 
 
 /* Forward referenced subroutines */
-void FillDirectory(char *path, Window *window);
+void FillDirectory(const char *path, Window *window);
 Window *new_window();
 static void click_column_cb(GtkCList *item, gint column, Window *restore);
-static void select_row_cb(GtkCList *item, gint row, gint column, 
+static void select_row_cb(GtkCList *item, gint row, gint column,
             GdkEventButton *event, Window *restore);
 void row_data_destroy_cb(gpointer data);
 void split_path_and_filename(const char *fname, POOLMEM **path, int *pnl,
@@ -32,7 +32,7 @@ static GdkPixmap *check_trans = NULL;
 static GdkPixmap *blank_pixmap = NULL;
 static GdkPixmap *blank_trans = NULL;
 #endif
-        
+
 static GtkWidget *restore_dir;       /* current directory edit box */
 static GtkWidget *scrolled;          /* select files scrolled window */
 static Window *restore;
@@ -50,11 +50,12 @@ const int DATE_COLUMN = 6;
 static void discard_to_prompt()
 {
    while (bnet_recv(UA_sock) > 0) {
+      set_text(UA_sock->msg, UA_sock->msglen);
    }
 }
 
 /*
- * Move up one directory   
+ * Move up one directory
  */
 void
 on_restore_up_button_clicked(GtkButton *button, gpointer user_data)
@@ -64,17 +65,52 @@ on_restore_up_button_clicked(GtkButton *button, gpointer user_data)
    FillDirectory(restore->path, restore);
 }
 
+static void mark_row(int row, bool mark)
+{
+   char *file;
+   int len;
+   char new_mark[10];
+
+   gtk_clist_get_text(restore->list, row, FILE_COLUMN, &file);
+   if (mark) {
+      bstrncpy(new_mark, "x", sizeof(new_mark));
+      len = Mmsg(&restore->buf, "mark %s", file);
+   } else {
+      bstrncpy(new_mark, " ", sizeof(new_mark));
+      len = Mmsg(&restore->buf, "unmark %s", file);
+   }
+   gtk_clist_set_text(restore->list, row, CHECK_COLUMN, new_mark);
+    /* strip trailing slash from directory name */
+   while (len > 1 && restore->buf[len-1] == '/') {
+      restore->buf[len-1] = 0;
+   }
+   write_director(restore->buf);
+   discard_to_prompt();
+}
+
 void
 on_restore_add_button_clicked(GtkButton *button, gpointer user_data)
 {
+   int num_selected = g_list_length(restore->list->selection);
+   int row;
 
+   for (int i=0; i < num_selected; i++) {
+      row = (int)(long int)g_list_nth_data(restore->list->selection, i);
+      mark_row(row, true);
+   }
 }
 
 
 void
 on_restore_remove_button_clicked(GtkButton *button, gpointer user_data)
 {
+   int num_selected = g_list_length(restore->list->selection);
+   int row;
 
+   for (int i=0; i < num_selected; i++) {
+      row = (int)(long int)g_list_nth_data(restore->list->selection, i);
+      mark_row(row, false);
+   }
 }
 
 /*
@@ -82,7 +118,7 @@ on_restore_remove_button_clicked(GtkButton *button, gpointer user_data)
  */
 void select_restore_setup()
 {
-   gchar *title[NUM_COLUMNS] = {"Mark", "File", "Mode", "User", "Group", "Size", "Date"};
+   const gchar *title[NUM_COLUMNS] = {_("Mark"), _("File"), _("Mode"), _("User"), _("Group"), _("Size"), _("Date")};
 
    restore_file_selection = create_restore_file_selection();
    if (!restore_file_selection) {
@@ -97,21 +133,24 @@ void select_restore_setup()
    restore = new_window();
 
 #ifdef needed
-   check_pixmap = gdk_pixmap_colormap_create_from_xpm(NULL, 
+   check_pixmap = gdk_pixmap_colormap_create_from_xpm(NULL,
                  gdk_colormap_get_system(), &check_trans, NULL,
-                  "check.xpm");
-   blank_pixmap = gdk_pixmap_colormap_create_from_xpm(NULL, 
+                 "check.xpm");
+   blank_pixmap = gdk_pixmap_colormap_create_from_xpm(NULL,
                  gdk_colormap_get_system(), &blank_trans, NULL,
-                  "blank.xpm");
+                 "blank.xpm");
 #endif
 
-   restore->list = (GtkCList *)gtk_clist_new_with_titles(NUM_COLUMNS, title);
+   /* XXX: Stupid gtk_clist_set_selection_mode() has incorrect declaration of the title argument */
+   /* XXX: Workaround by typecast... peter@ifm.liu.se */
+
+   restore->list = (GtkCList *)gtk_clist_new_with_titles(NUM_COLUMNS, (gchar **) title);
    gtk_clist_set_selection_mode(restore->list, GTK_SELECTION_EXTENDED);
    gtk_clist_set_sort_column(restore->list, FILE_COLUMN);
    gtk_clist_set_auto_sort(restore->list, true);
-   gtk_signal_connect(GTK_OBJECT(restore->list), "click_column", 
+   gtk_signal_connect(GTK_OBJECT(restore->list), "click_column",
                      G_CALLBACK(click_column_cb), restore);
-   gtk_signal_connect(GTK_OBJECT(restore->list), "select_row", 
+   gtk_signal_connect(GTK_OBJECT(restore->list), "select_row",
                      G_CALLBACK(select_row_cb), restore);
 
    gtk_container_add(GTK_CONTAINER(scrolled), GTK_WIDGET(restore->list));
@@ -137,7 +176,7 @@ void select_restore_files()
 /*
  * Fill the CList box with files at path
  */
-void FillDirectory(char *path, Window *restore)
+void FillDirectory(const char *path, Window *restore)
 {
    char pathbuf[MAXSTRING];
    char modes[20], user[20], group[20], size[20], date[30];
@@ -146,12 +185,12 @@ void FillDirectory(char *path, Window *restore)
    gchar *text[NUM_COLUMNS] = {marked, file, modes, user, group, size, date};
    GtkCList *list = restore->list;
    int row = 0;
-   
-   stop_director_reader(NULL);        
+
+   stop_director_reader(NULL);
    pm_strcpy(&restore->fname, path);
    gtk_entry_set_text(GTK_ENTRY(restore_dir), restore->fname);
    gtk_clist_freeze(list);
-   gtk_clist_clear(list); 
+   gtk_clist_clear(list);
 
    bsnprintf(pathbuf, sizeof(pathbuf), "cd %s", path);
    Dmsg1(100, "%s\n", pathbuf);
@@ -196,15 +235,15 @@ void FillDirectory(char *path, Window *restore)
       l = p;
       skip_nonspaces(&p);            /* date/time */
       skip_spaces(&p);
-      skip_nonspaces(&p);  
+      skip_nonspaces(&p);
       *p++ = 0;
       bstrncpy(date, l, sizeof(date));
       skip_spaces(&p);
       if (*p == '*') {
-         bstrncpy(marked, "x", sizeof(marked));
+        bstrncpy(marked, "x", sizeof(marked));
         p++;
       } else {
-         bstrncpy(marked, " ", sizeof(marked));
+        bstrncpy(marked, " ", sizeof(marked));
       }
       split_path_and_filename(p, &restore->path, &restore->pnl,
                              &restore->file, &restore->fnl);
@@ -216,13 +255,6 @@ void FillDirectory(char *path, Window *restore)
 
       gtk_clist_append(list, text);
 
-#ifdef xxx
-      if (marked) {
-        gtk_clist_set_pixmap(list, row, CHECK_COLUMN, check_pixmap, check_trans);
-      } else {
-        gtk_clist_set_pixmap(list, row, CHECK_COLUMN, blank_pixmap, blank_trans);
-      }
-#endif
       row++;
    }
 
@@ -240,18 +272,6 @@ Window *new_window()
    return window;
 }
 
-#ifdef xxx
-static void window_delete_cb(GtkWidget *item, GdkEvent *event, Window *restore)
-{
-   gtk_widget_destroy(restore->window);
-   gtk_main_quit();
-   free_pool_memory(restore->buf);
-   free_pool_memory(restore->fname);
-   free_pool_memory(restore->path);
-   free_pool_memory(restore->file);
-   free(restore);
-}
-#endif
 
 /*
  * User clicked a column title
@@ -263,60 +283,40 @@ static void click_column_cb(GtkCList *item, gint column, Window *restore)
 /*
  * User selected a row
  */
-static void select_row_cb(GtkCList *item, gint row, gint column, 
+static void select_row_cb(GtkCList *item, gint row, gint column,
             GdkEventButton *event, Window *restore)
 {
-#ifdef xxx
-   GdkPixmap *pixmap, *trans;
-#endif
-   char *file, *marked = NULL;
-   int len;
-   char new_mark[10];
+   char *file;
+   char *marked = NULL;
    /* Column non-negative => double click */
    if (column >= 0) {
       gtk_clist_unselect_row(item, row, column);
-      gtk_clist_get_text(item, row, FILE_COLUMN, &file);
       /* Double click on column 0 means to mark or unmark */
       if (column == 0) {
-#ifdef xxx
-        utf8_mark = g_locale_to_utf8(new_mark, -1, NULL, NULL, NULL);
-        gtk_clist_get_pixmap(restore->list, row, CHECK_COLUMN, &pixmap, &trans);
-        if (pixmap == blank_pixmap) {
-            bstrncpy(new_mark, "x", sizeof(new_mark));
-//         gtk_clist_set_pixmap(item, row, CHECK_COLUMN, check_pixmap, check_trans);
-#endif
         gtk_clist_get_text(restore->list, row, CHECK_COLUMN, &marked);
-         Dmsg1(200, "Marked=%s\n", marked);
-         if (!marked || strcmp(marked, "x") != 0) {
-            len = Mmsg(&restore->buf, "mark %s", file);
-            bstrncpy(new_mark, "x", sizeof(new_mark));
+        Dmsg1(200, "Marked=%s\n", marked);
+        if (!marked || strcmp(marked, "x") != 0) {
+           mark_row(row, true);
         } else {
-            len = Mmsg(&restore->buf, "unmark %s", file);
-            bstrncpy(new_mark, " ", sizeof(new_mark));
+           mark_row(row, false);
         }
-        gtk_clist_set_text(restore->list, row, CHECK_COLUMN, new_mark);
-        /* strip trailing slash from directory name */
-         while (len > 1 && restore->buf[len-1] == '/') {
-           restore->buf[len-1] = 0;
-        }
-        write_director(restore->buf);
-        discard_to_prompt();
       } else {
       /* Double clicking on directory means to move to it */
         int len;
+        gtk_clist_get_text(item, row, FILE_COLUMN, &file);
         len = strlen(file);
-         if (len > 0 && file[len-1] == '/') {
+        if (len > 0 && file[len-1] == '/') {
            /* Change to new directory */
-           pm_strcpy(&restore->path, restore->fname);
-            if (*file == '*') {
-               Mmsg(&restore->fname, "%s%s", restore->path, file+1);
+           pm_strcpy(restore->path, restore->fname);
+           if (*file == '*') {
+              Mmsg(restore->fname, "%s%s", restore->path, file+1);
            } else {
-               Mmsg(&restore->fname, "%s%s", restore->path, file);
+              Mmsg(restore->fname, "%s%s", restore->path, file);
            }
            FillDirectory(restore->fname, restore);
         }
       }
-   }  
+   }
 }
 
 /*
@@ -328,3 +328,31 @@ void row_data_destroy_cb(gpointer data)
       free(data);
    }
 }
+
+#ifdef xxx
+   GdkPixmap *pixmap, *trans;
+        utf8_mark = g_locale_to_utf8(new_mark, -1, NULL, NULL, NULL);
+        gtk_clist_get_pixmap(restore->list, row, CHECK_COLUMN, &pixmap, &trans);
+        if (pixmap == blank_pixmap) {
+           bstrncpy(new_mark, "x", sizeof(new_mark));
+//         gtk_clist_set_pixmap(item, row, CHECK_COLUMN, check_pixmap, check_trans);
+#endif
+#ifdef xxx
+static void window_delete_cb(GtkWidget *item, GdkEvent *event, Window *restore)
+{
+   gtk_widget_destroy(restore->window);
+   gtk_main_quit();
+   free_pool_memory(restore->buf);
+   free_pool_memory(restore->fname);
+   free_pool_memory(restore->path);
+   free_pool_memory(restore->file);
+   free(restore);
+}
+#endif
+#ifdef xxx
+      if (marked) {
+        gtk_clist_set_pixmap(list, row, CHECK_COLUMN, check_pixmap, check_trans);
+      } else {
+        gtk_clist_set_pixmap(list, row, CHECK_COLUMN, blank_pixmap, blank_trans);
+      }
+#endif