summaryrefslogtreecommitdiff
path: root/obnam/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'obnam/app.py')
-rw-r--r--obnam/app.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/obnam/app.py b/obnam/app.py
index 3b9a3f95..46527bf1 100644
--- a/obnam/app.py
+++ b/obnam/app.py
@@ -214,6 +214,22 @@ class Application:
self.get_store().queue_object(sig)
return sig
+ def find_unchanged_filegroups(self, filegroups, filenames, stat=os.stat):
+ """Return list of filegroups that are unchanged.
+
+ The filenames and stat arguments have the same meaning as
+ for the filegroup_is_unchanged method.
+
+ """
+
+ unchanged = []
+
+ for filegroup in filegroups:
+ if self.filegroup_is_unchanged(filegroup, filenames, stat=stat):
+ unchanged.append(filegroup)
+
+ return unchanged
+
def add_to_filegroup(self, fg, filename):
"""Add a file to a filegroup."""
self._context.progress.update_current_action(filename)