]> git.sur5r.net Git - bacula/bacula/commitdiff
Add helpers to add drives in VSS snapshot from plugins
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 30 Dec 2010 17:46:46 +0000 (18:46 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:39:48 +0000 (14:39 +0200)
bacula/src/plugins/fd/fd_common.h

index 0fedcd6f51e3def8d4ab6cfbc8b0444d83c193fc..5385def3ba523459532cc42a39ff527c045d3289 100644 (file)
@@ -115,4 +115,32 @@ inline void operator delete[] (void *buf)
 #define Dmsg(context, level, message, ...) bfuncs->DebugMessage(context, __FILE__, __LINE__, level, message, ##__VA_ARGS__)
 #define Jmsg(context, type, message, ...) bfuncs->JobMessage(context, __FILE__, __LINE__, type, 0, message, ##__VA_ARGS__)
 
+
+#ifdef USE_ADD_DRIVE
+/* Keep drive letters for windows vss snapshot */
+static void add_drive(char *drives, int *nCount, char *fname) {
+   if (strlen(fname) >= 2 && B_ISALPHA(fname[0]) && fname[1] == ':') {
+      /* always add in uppercase */
+      char ch = toupper(fname[0]);
+      /* if not found in string, add drive letter */
+      if (!strchr(drives,ch)) {
+         drives[*nCount] = ch;
+         drives[*nCount+1] = 0;
+         (*nCount)++;
+      }                                
+   }
+}
+
+/* Copy our drive list to Bacula core list */
+static void copy_drives(char *drives, char *dest) {
+   int last = strlen(dest);     /* dest is 27 bytes long */
+   for (char *p = drives; *p && last < 26; p++) {
+      if (!strchr(dest, *p)) {
+         dest[last++] = *p;
+         dest[last] = 0;
+      }
+   }
+}
+#endif
+
 #endif