drop-upload: also monitor subdirectories #1433
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1433
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The prototype implementation of drop-upload in #1429 monitors only a single directory, and ignores creation of subdirectories or changes to files within them. It is possible to monitor subdirectories as well, although the efficiency and complexity of this varies depending on the design of the platform's filesystem monitoring API (if we support multiple platforms with this feature as suggested in #1431 and #1432).
Note that the IN_ONLYDIR constant in the current event mask doesn't do what you might think it does. It only ensures that the root being monitored is a directory.
On 07/04/15 21:05, David Stainton wrote:>
This has been there since the inotify support was added in Twisted 10.1.0, in fact.
Yes, it does, but the
recursive
/autoAdd
support looks sufficient so we shouldn't need this. (We also don't need it for Windows becauseReadDirectoryChangesW
has a similar flag to watch a subdirectory tree.)See comment:84197 .
The
autoAdd
flag already adds watches for children of newly added directories (and has done so since Twisted 10.1.0):https://twistedmatrix.com/trac/browser/tags/releases/twisted-10.1.0/twisted/internet/inotify.py#L259
It also synthesizes
IN_CREATE
events for files and subdirectories found in those newly added directories (see the_addChildren
method ininotify.py
).sounds like we need a simple one line change like this:
https://github.com/david415/tahoe-lafs/tree/david-1433-1
Does this satisfy our spec?:
https://github.com/tahoe-lafs/tahoe-lafs/blob/master/docs/proposed/magic-folder/filesystem-integration.rst
which states that we need to do a full scan of new directories...
I am wondering what would happen if a user moved a directory tree into the magic folder?
Would the subdirectories be scanned? It looks like to me they would not be. If this is the case then maybe we'll have to not use the
autoAdd
feature.The spec says that a scan of new directories needs to be done, it doesn't say what code is responsible for that. At the time, I hadn't looked at the relevant Twisted code.
We do need to check what happens in the move-one-directory-into-another case. I suspect it Just Works though, since
_addChildren
doesn't distinguish that case, and shouldn't need to.I suggest first writing tests for these cases, rather than worrying about the implementation.
i added some code to david-1433-1 branch that handles the symlink and directory cases.
if symlink then ignore file and print error to the log.
if dir then create the subdirectory.
here's my working code AND unit tests!
tests:
https://github.com/david415/tahoe-lafs/blob/d9153c482eb30eb15117d758fc7303f4a90076d3/src/allmydata/test/test_drop_upload.py#L71-L114
code:
https://github.com/david415/tahoe-lafs/tree/2406.otf-objective-2.3.1-fix-upload-deque
Excellent! Will review now.
Ok recently fixed some problems with these tests... and I think it exposes a bug... must look into it...
fixed unit tests and code. awaiting code review from daira for my recent changes regarding the addition of a notifier watch upon directory placement in the uploader directory. (the watch is recursive and a recursive scan of the new directory is also applied)
I reviewed this (and we made a few other fixes in our Tuesday pairing session); it looks good. I still need to review the rest of the queue/scanning code.
Closing this and using ticket #2406 for any further review comments.
Milestone renamed