summaryrefslogtreecommitdiff
path: root/src/BackupPolicyDaily.cc
diff options
context:
space:
mode:
authorRichard Kettlewell <rjk@terraraq.org.uk>2019-02-09 18:04:18 +0000
committerRichard Kettlewell <rjk@terraraq.org.uk>2019-02-09 18:04:18 +0000
commit86f1250062a249a7d640d5528e5928f5801a5257 (patch)
treea0ff4cb8357db8ed8732537ed366bbdf04564249 /src/BackupPolicyDaily.cc
parentc6bde9b4da278a0bfba75356d871590b7c7f34d1 (diff)
Multiple backups per day
fixes #49
Diffstat (limited to 'src/BackupPolicyDaily.cc')
-rw-r--r--src/BackupPolicyDaily.cc40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/BackupPolicyDaily.cc b/src/BackupPolicyDaily.cc
new file mode 100644
index 0000000..6184e97
--- /dev/null
+++ b/src/BackupPolicyDaily.cc
@@ -0,0 +1,40 @@
+// Copyright © 2019 Richard Kettlewell.
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+#include <config.h>
+#include "rsbackup.h"
+#include "Conf.h"
+#include "Backup.h"
+#include "Volume.h"
+#include "Device.h"
+#include "BackupPolicy.h"
+
+class BackupPolicyDaily: public BackupPolicy {
+public:
+ BackupPolicyDaily(): BackupPolicy("daily") {}
+
+ void validate(const Volume *) const override {
+ }
+
+ bool backup(const Volume *volume, const Device *device) const override {
+ Date today = Date::today();
+ for(const Backup *backup: volume->backups)
+ if(backup->rc == 0
+ && backup->date == today
+ && backup->deviceName == device->name)
+ return false;
+ return true;
+ }
+
+} backup_daily;