]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/bvfs.h
Tweak mutex order for SD
[bacula/bacula] / bacula / src / cats / bvfs.h
index f4531b378ac64394ee5f3b4ac3f544c374e5a51f..ee7be97abd498b417625306afb6eb6d3774a36a2 100644 (file)
 
 /* Helper for result handler */
 typedef enum {
-   BVFS_FILE_RECORD  = 5,
-   BVFS_DIR_RECORD   = 4,
-   BVFS_FILE_VERSION = 6
+   BVFS_FILE_RECORD  = 'F',
+   BVFS_DIR_RECORD   = 'D',
+   BVFS_FILE_VERSION = 'V'
 } bvfs_handler_type;
 
 typedef enum {
-   BVFS_Id      = 0,
-   BVFS_Name    = 1,
-   BVFS_JobId   = 2,
-   BVFS_LStat   = 3,
+   BVFS_Type    = 0,            /* Could be D, F, V */
+   BVFS_PathId  = 1, 
+   BVFS_FilenameId = 2,
 
-   BVFS_FileId  = 4,         /* Only if File record */
+   BVFS_Name    = 3,
+   BVFS_JobId   = 4,
+
+   BVFS_LStat   = 5,            /* Can be empty for missing directories */
+   BVFS_FileId  = 6,            /* Can be empty for missing directories */
+
+   /* Only if File Version record */
+   BVFS_Md5     = 3,
+   BVFS_VolName = 4,
+   BVFS_VolInchanger = 5
 } bvfs_row_index;
 
 class Bvfs {
@@ -93,18 +101,19 @@ public:
     * avoids mistakes with string encoding
     */
    void ch_dir(DBId_t pathid) {
+      reset_offset();
       pwd_id = pathid;
    }
 
    /* 
     * Returns true if the directory exists
     */
-   bool ch_dir(char *path);
+   bool ch_dir(const char *path);
 
-   void ls_files();
-   void ls_dirs();
+   bool ls_files();             /* Returns true if we have more files to read */
+   bool ls_dirs();              /* Returns true if we have more dir to read */
    void ls_special_dirs();      /* get . and .. */
-   void get_all_file_versions(DBId_t pathid, DBId_t fnid, char *client);
+   void get_all_file_versions(DBId_t pathid, DBId_t fnid, const char *client);
 
    void update_cache();
 
@@ -121,6 +130,10 @@ public:
       user_data = ctx;
    }
 
+   DBId_t get_pwd() {
+      return pwd_id;
+   }
+
    ATTR *get_attr() {
       return attr;
    }
@@ -129,26 +142,45 @@ public:
       return jcr;
    }
 
-private:   
+   void reset_offset() {
+      offset=0;
+   }
+
+   void next_offset() {
+      offset+=limit;
+   }
+
+   /* for internal use */
+   int _handle_path(void *, int, char **);
+   
+private:
+   Bvfs(const Bvfs &);               /* prohibit pass by value */
+   Bvfs & operator = (const Bvfs &); /* prohibit class assignment */
+
    JCR *jcr;
    B_DB *db;
    POOLMEM *jobids;
    uint32_t limit;
    uint32_t offset;
+   uint32_t nb_record;          /* number of records of the last query */
    POOLMEM *pattern;
-   DBId_t pwd_id;
-   DBId_t dir_filenameid;
-   ATTR *attr;
+   DBId_t pwd_id;               /* Current pathid */
+   DBId_t dir_filenameid;       /* special FilenameId where Name='' */
+   POOLMEM *prev_dir; /* ls_dirs query returns all versions, take the 1st one */
+   ATTR *attr;        /* Can be use by handler to call decode_stat() */
 
    bool see_all_version;
    bool see_copies;
 
    DBId_t get_dir_filenameid();
-   
+
    DB_RESULT_HANDLER *list_entries;
    void *user_data;
 };
 
+#define bvfs_is_dir(row) ((row)[BVFS_Type][0] == BVFS_DIR_RECORD)
+#define bvfs_is_file(row) ((row)[BVFS_Type][0] == BVFS_FILE_RECORD)
+
 void bvfs_update_path_hierarchy_cache(JCR *jcr, B_DB *mdb, char *jobids);
 void bvfs_update_cache(JCR *jcr, B_DB *mdb);
 char *bvfs_parent_dir(char *path);