cp -r stops with an exception #2329

Closed
opened 2014-11-07 13:56:10 +00:00 by zooko · 51 comments
$ tahoe cp --verbose -r $CAP .
Traceback (most recent call last):
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/runner.py", line 156, in run
    rc = runner(sys.argv[1:], install_node_control=install_node_control)
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/runner.py", line 141, in runner
    rc = cli.dispatch[command](so)
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/cli.py", line 551, in cp
    rc = tahoe_cp.copy(options)
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 774, in copy
    return Copier().do_copy(options)
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 451, in do_copy
    status = self.try_copy()
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 513, in try_copy
    return self.copy_to_directory(sources, target)
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 617, in copy_to_directory
    source_dirs = self.build_graphs(source_infos)
  File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 768, in build_graphs
    name = os.path.basename(os.path.normpath(name))
  File "/usr/lib/python2.7/posixpath.py", line 342, in normpath
    initial_slashes = path.startswith('/')
AttributeError: 'NoneType' object has no attribute 'startswith'
$ tahoe --version
allmydata-tahoe: 1.10.0.post167 [1382-rewrite-4: 102d5846b53a715bd9a51aac20f325dd6f6830be]
foolscap: 0.6.4 
pycryptopp: 0.6.0.1206569328141510525648634803928199668821045408958
zfec: 1.4.24
Twisted: 13.0.0 
Nevow: 0.11.1   
zope.interface: unknown
python: 2.7.6   
platform: Linux-Ubuntu_14.04-x86_64-64bit_ELF
pyOpenSSL: 0.13 
simplejson: 3.3.1
pycrypto: 2.6.1 
pyasn1: 0.1.7   
mock: 1.0.1
service-identity: 14.0.0
setuptools: 0.6c16dev4

``` $ tahoe cp --verbose -r $CAP . ``` ``` Traceback (most recent call last): File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/runner.py", line 156, in run rc = runner(sys.argv[1:], install_node_control=install_node_control) File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/runner.py", line 141, in runner rc = cli.dispatch[command](so) File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/cli.py", line 551, in cp rc = tahoe_cp.copy(options) File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 774, in copy return Copier().do_copy(options) File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 451, in do_copy status = self.try_copy() File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 513, in try_copy return self.copy_to_directory(sources, target) File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 617, in copy_to_directory source_dirs = self.build_graphs(source_infos) File "/home/zooko/playground/tahoe/tahoe-lafs/src/allmydata/scripts/tahoe_cp.py", line 768, in build_graphs name = os.path.basename(os.path.normpath(name)) File "/usr/lib/python2.7/posixpath.py", line 342, in normpath initial_slashes = path.startswith('/') AttributeError: 'NoneType' object has no attribute 'startswith' ``` ``` $ tahoe --version allmydata-tahoe: 1.10.0.post167 [1382-rewrite-4: 102d5846b53a715bd9a51aac20f325dd6f6830be] foolscap: 0.6.4 pycryptopp: 0.6.0.1206569328141510525648634803928199668821045408958 zfec: 1.4.24 Twisted: 13.0.0 Nevow: 0.11.1 zope.interface: unknown python: 2.7.6 platform: Linux-Ubuntu_14.04-x86_64-64bit_ELF pyOpenSSL: 0.13 simplejson: 3.3.1 pycrypto: 2.6.1 pyasn1: 0.1.7 mock: 1.0.1 service-identity: 14.0.0 setuptools: 0.6c16dev4 ```
zooko added the
code-frontend-cli
normal
defect
1.10.0
labels 2014-11-07 13:56:10 +00:00
zooko added this to the undecided milestone 2014-11-07 13:56:10 +00:00
Author

When I tried the same thing with the Tahoe-LAFS v1.10.0 release (from Ubuntu), it worked! So this is a regression.

When I tried the same thing with the Tahoe-LAFS v1.10.0 release (from Ubuntu), it worked! So this is a regression.
zooko modified the milestone from undecided to 1.11.0 2014-11-07 14:33:27 +00:00
tahoe-lafs added
major
and removed
normal
labels 2014-11-19 07:15:05 +00:00
daira commented 2014-11-25 18:11:57 +00:00
Owner

Possibly caused by the fix to #712 (which was the last patch to touch the code where the error occurs: source:trunk/src/allmydata/scripts/tahoe_cp.py?annotate=blame#L767 )

Possibly caused by the fix to #712 (which was the last patch to touch the code where the error occurs: source:trunk/src/allmydata/scripts/tahoe_cp.py?annotate=blame#L767 )
daira commented 2014-11-25 19:02:37 +00:00
Owner
Test (which fails) at <https://github.com/tahoe-lafs/tahoe-lafs/commit/2329-test-0>.
daira commented 2014-11-26 03:38:20 +00:00
Owner

Review needed for the test.

Review needed for the test.

warner will review the test, commit it with a TODO flag, then try to solve the original problem

warner will review the test, commit it with a TODO flag, then try to solve the original problem
zooko was unassigned by warner 2015-01-20 17:54:48 +00:00
warner self-assigned this 2015-01-20 17:54:48 +00:00

So it looks like the intention of #712 was to make a command like cp -r A LOCAL or cp -r A LOCAL/ create LOCAL/A. This depends upon "A" including a file or directory name (eg cp -r DIRCAP/foo.txt LOCAL/). But if A is a pure cap, then it has no human-meaningful name. What should get created in this case?

I think the #2329 bug is resulting from a code path that assumes it will be provided with a name, and the pure-cap source argument doesn't give it one.

So it looks like the intention of #712 was to make a command like `cp -r A LOCAL` or `cp -r A LOCAL/` create `LOCAL/A`. This depends upon "A" including a file or directory name (eg `cp -r DIRCAP/foo.txt LOCAL/`). But if A is a pure cap, then it has no human-meaningful name. What should get created in this case? I think the #2329 bug is resulting from a code path that assumes it will be provided with a name, and the pure-cap source argument doesn't give it one.
daira commented 2015-01-20 21:24:00 +00:00
Owner

Well, what did it do in Tahoe-LAFS v1.10.0? (There are two cases: $CAP is a file cap, or a directory cap.)

Well, what did it do in Tahoe-LAFS v1.10.0? (There are two cases: $CAP is a file cap, or a directory cap.)

From a tahoe-side tree with PARENTCAP, DIRCAP=PARENTCAP/dir, and FILECAP=PARENTCAP/dir/file.txt, and a local (real) target directory "local":

  • 1.10
  • (A) cp -r PARENTCAP/dir local/ -> local/file.txt
  • (B) cp -r DIRCAP local/ -> local/file.txt
  • (C) cp -r DIRCAP_ALIAS: local/ -> local/file.txt
  • (D) cp -r DIRCAP/file.txt local/ -> local/file.txt
  • (E) cp -r FILECAP local/ -> "error, you must specify a destination filename"
  • note the target's trailing slash is optional: local/ and local behave the same way
  • trunk (e73d76e)
  • (F) cp -r PARENTCAP/dir local/ -> local/dir/file.txt
  • (G) cp -r DIRCAP local/ -> (exception)
  • (H) cp -r DIRCAP_ALIAS: local/ -> (exception)
  • (I) cp -r DIRCAP/file.txt local/ -> local/file.txt
  • (J) cp -r FILECAP local/ -> "error, you must specify a destination filename"

#712 fixed F to behave more like regular POSIX /bin/cp. I can think of three ways we might go with case G and H:

  • 1: cp -r DIRCAP local/ should behave like an imaginary cp -r DIRCAP/* local/ would do (this is imaginary because we have no tahoe-side globs). In this example, it'd create local/file.txt. This would match what it did in 1.10 (case B/C), but wouldn't match F. That'd be a shame, because we generally claim that "PARENTCAP/dir" and "DIRCAP" and "ALIAS:" are all interchangeable.

  • 2: cp -r DIRCAP local/ would pretend that the source directory was named after the actual DIRCAP string (the ugly base32 representation), and create local/BASE32DIRCAP/file.txt . Ick. For H we could use the alias name as a target name, so it'd create local/ALIASNAME/file.txt, which is still lame but at least human-readable.

  • 3: cp -r DIRCAP local/ would complain "you must specify a destination directory name", like cases E and J. This is somewhat plausible for G, and looks slightly weird for H.

We don't have enough information to make case G behave like F.

From a tahoe-side tree with PARENTCAP, DIRCAP=PARENTCAP/dir, and FILECAP=PARENTCAP/dir/file.txt, and a local (real) target directory "local": * 1.10 * (A) `cp -r PARENTCAP/dir local/` -> `local/file.txt` * (B) `cp -r DIRCAP local/` -> `local/file.txt` * (C) `cp -r DIRCAP_ALIAS: local/` -> `local/file.txt` * (D) `cp -r DIRCAP/file.txt local/` -> `local/file.txt` * (E) `cp -r FILECAP local/` -> "error, you must specify a destination filename" * note the target's trailing slash is optional: `local/` and `local` behave the same way * trunk (e73d76e) * (F) `cp -r PARENTCAP/dir local/` -> `local/dir/file.txt` * (G) `cp -r DIRCAP local/` -> (exception) * (H) `cp -r DIRCAP_ALIAS: local/` -> (exception) * (I) `cp -r DIRCAP/file.txt local/` -> `local/file.txt` * (J) `cp -r FILECAP local/` -> "error, you must specify a destination filename" #712 fixed F to behave more like regular POSIX `/bin/cp`. I can think of three ways we might go with case G and H: * 1: `cp -r DIRCAP local/` should behave like an imaginary `cp -r DIRCAP/* local/` would do (this is imaginary because we have no tahoe-side globs). In this example, it'd create `local/file.txt`. This would match what it did in 1.10 (case B/C), but wouldn't match F. That'd be a shame, because we generally claim that "PARENTCAP/dir" and "DIRCAP" and "ALIAS:" are all interchangeable. * 2: `cp -r DIRCAP local/` would pretend that the source directory was named after the actual DIRCAP string (the ugly base32 representation), and create `local/BASE32DIRCAP/file.txt` . Ick. For H we could use the alias name as a target name, so it'd create `local/ALIASNAME/file.txt`, which is still lame but at least human-readable. * 3: `cp -r DIRCAP local/` would complain "you must specify a destination directory name", like cases E and J. This is somewhat plausible for G, and looks slightly weird for H. We don't have enough information to make case G behave like F.

Well, I guess I'm going to implement option 1: make cp -r DIRCAP local/ behave like it used to (putting the contents of DIRCAP into local/) instead of like how cp -r PARENTCAP/dir local/ does now (making a new subdirectory under local/). It's not super consistent, but it's better than an exception.

Well, I guess I'm going to implement option 1: make `cp -r DIRCAP local/` behave like it used to (putting the contents of DIRCAP into local/) instead of like how `cp -r PARENTCAP/dir local/` does now (making a new subdirectory under local/). It's not super consistent, but it's better than an exception.
daira commented 2015-01-21 20:14:54 +00:00
Owner

+1 for option 1.

+1 for option 1.
daira commented 2015-01-22 17:56:03 +00:00
Owner

When I said +1 for option 1, I was thinking that the previous behaviour of cases (B) and (C) --i.e. copying the contents of a dircap into a directory-- would become inexpressible. However I now understand the error in option 3 to be saying that "you must specify a previously nonexisting destination directory name". In that case you could still write:

  • (J2) cp -r DIRCAP local/missing -> local/missing

which would be consistent with cases (F) and (I), because local/missing becomes a copy of DIRCAP.

When I said +1 for option 1, I was thinking that the previous behaviour of cases (B) and (C) --i.e. copying the contents of a dircap into a directory-- would become inexpressible. However I now understand the error in option 3 to be saying that "you must specify a previously nonexisting destination directory name". In that case you could still write: * (J2) `cp -r DIRCAP local/missing -> local/missing` which would be consistent with cases (F) and (I), because `local/missing` becomes a copy of `DIRCAP`.

If there were a tahoe-side globbing feature, the error messages in option 3 could say:

"""
To copy the contents of this dircap into an existing destination directory append /*; eg:

tahoe cp -r "$DIRCAP/*" /path/to/existing/dir

To create a new directory with the contents of this dircap, specify a new local directory name; eg:

tahoe cp -r "$DIRCAP" /path/to/nonexisting
"""

A glob feature would allow the explicit indication of whether a bag, or the contents of the bag, should be copied.

If there were a tahoe-side globbing feature, the error messages in option 3 could say: """ To copy the contents of this dircap into an existing destination directory append /*; eg: > tahoe cp -r "$DIRCAP/*" /path/to/existing/dir To create a new directory with the contents of this dircap, specify a new local directory name; eg: > tahoe cp -r "$DIRCAP" /path/to/nonexisting """ A glob feature would allow the explicit indication of whether a bag, or the contents of the bag, should be copied.
daira commented 2015-01-22 18:13:55 +00:00
Owner

Splitting by whether the destination exists or not:

  • 1.10
  • (A1) cp -r PARENTCAP/dir local/ -> local/file.txt
  • (A2) cp -r PARENTCAP/dir local/missing -> ?
  • (B1) cp -r DIRCAP local/ -> local/file.txt
  • (B2) cp -r DIRCAP local/missing -> ?
  • (C1) cp -r DIRCAP_ALIAS: local/ -> local/file.txt
  • (C2) cp -r DIRCAP_ALIAS: local/missing -> ?
  • (D1) cp -r DIRCAP/file.txt local/ -> local/file.txt
  • (D2) cp -r DIRCAP/file.txt local/missing -> local/missing
  • (E1) cp -r FILECAP local/ -> "error, you must specify a destination filename"
  • (E2) cp -r FILECAP local/missing -> local/missing
  • note the target's trailing slash is optional: local/ and local behave the same way
  • trunk (e73d76e)
  • (F1) cp -r PARENTCAP/dir local/ -> local/dir/file.txt
  • (F2) cp -r PARENTCAP/dir local/missing -> ?
  • (G1) cp -r DIRCAP local/ -> (exception)
  • (G2) cp -r DIRCAP local/missing -> (exception?)
  • (H1) cp -r DIRCAP_ALIAS: local/ -> (exception)
  • (H2) cp -r DIRCAP_ALIAS: local/missing -> (exception?)
  • (I1) cp -r DIRCAP/file.txt local/ -> local/file.txt
  • (I2) cp -r DIRCAP/file.txt local/missing -> local/missing
  • (J1) cp -r FILECAP local/ -> "error, you must specify a destination filename"
  • (J2) cp -r FILECAP local/missing -> local/missing
Splitting by whether the destination exists or not: * 1.10 * (A1) `cp -r PARENTCAP/dir local/` -> `local/file.txt` * (A2) `cp -r PARENTCAP/dir local/missing` -> ? * (B1) `cp -r DIRCAP local/` -> `local/file.txt` * (B2) `cp -r DIRCAP local/missing` -> ? * (C1) `cp -r DIRCAP_ALIAS: local/` -> `local/file.txt` * (C2) `cp -r DIRCAP_ALIAS: local/missing` -> ? * (D1) `cp -r DIRCAP/file.txt local/` -> `local/file.txt` * (D2) `cp -r DIRCAP/file.txt local/missing` -> `local/missing` * (E1) `cp -r FILECAP local/` -> "error, you must specify a destination filename" * (E2) `cp -r FILECAP local/missing` -> `local/missing` * note the target's trailing slash is optional: `local/` and `local` behave the same way * trunk (e73d76e) * (F1) `cp -r PARENTCAP/dir local/` -> `local/dir/file.txt` * (F2) `cp -r PARENTCAP/dir local/missing` -> ? * (G1) `cp -r DIRCAP local/` -> (exception) * (G2) `cp -r DIRCAP local/missing` -> (exception?) * (H1) `cp -r DIRCAP_ALIAS: local/` -> (exception) * (H2) `cp -r DIRCAP_ALIAS: local/missing` -> (exception?) * (I1) `cp -r DIRCAP/file.txt local/` -> `local/file.txt` * (I2) `cp -r DIRCAP/file.txt local/missing` -> `local/missing` * (J1) `cp -r FILECAP local/` -> "error, you must specify a destination filename" * (J2) `cp -r FILECAP local/missing` -> `local/missing`
Author

Here's a proposal:

We determine whether the source means the bag, or the contents of the bag, according to this rule:

  • If the source comes with a name, then it means the bag. If it comes with no name, then it means the contents of the bag.

Note that the question of whether the source means the bag or the contents of the bag is not influenced by whether the target exists or doesn't exist.

This is another way of expressing proposal 1 from comment:96152.

Here's a proposal: We determine whether the source means the bag, or the contents of the bag, according to this rule: * If the source comes with a name, then it means the bag. If it comes with no name, then it means the contents of the bag. Note that the question of whether the source means the bag or the contents of the bag is not influenced by whether the target exists or doesn't exist. This is another way of expressing proposal 1 from [comment:96152](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96152).

I'm convinced globbing is too complicated if it evolves towards emulating bash. The key feature I was interested in comment:96156 was an explicit consistent way to disambiguate between container and contents.

So this could also be a --contents flag, or another non-globby-looking symbol, such as the presence of a trailing slash (which I believe warner suggested elsewhere).

Examples:

  • tahoe cp -r "$X" dest/ # Copy the bag $X to dest/$NAME if $X has a name, otherwise fail with an error.
  • tahoe cp -r "$X/" dest/ # Copy the contents of $X into ./dest (the name of $X is irrelevant).

Note that this can be orthogonal to whether or not dest/ exists.

Some semiconcrete examples:

  • tahoe cp -r myalias: foo/ # Error: "myalias:" has no name. To copy the contents into foo/ append a /

  • tahoe cp -r myalias:/ foo/ # foo will contain the contents of myalias after this.

  • tahoe cp -r URI:DIR2... foo/ # Error: a dircap has no name, to copy the contents, append a /

  • tahoe cp -r URI:DIR2.../ foo # Copy the contents of the cap into foo.

  • tahoe cp -r URI:DIR2.../blah foo # ./foo/blah/ will contain the contents.

  • tahoe cp -r URI:DIR2.../blah/ foo # ./foo will contain the contents.

I'm convinced globbing is too complicated if it evolves towards emulating bash. The key feature I was interested in [comment:96156](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96156) was an explicit consistent way to disambiguate between container and contents. So this could also be a ``--contents`` flag, or another non-globby-looking symbol, such as the presence of a trailing slash (which I believe warner suggested elsewhere). Examples: * tahoe cp -r "$X" dest/ # Copy the bag $X to dest/$NAME if $X has a name, otherwise fail with an error. * tahoe cp -r "$X/" dest/ # Copy the contents of $X into ./dest (the name of $X is irrelevant). Note that this can be orthogonal to whether or not dest/ exists. Some semiconcrete examples: * tahoe cp -r myalias: foo/ # Error: "myalias:" has no name. To copy the contents into foo/ append a / * tahoe cp -r myalias:/ foo/ # foo will contain the contents of myalias after this. * tahoe cp -r URI:DIR2... foo/ # Error: a dircap has no name, to copy the contents, append a / * tahoe cp -r URI:DIR2.../ foo # Copy the contents of the cap into foo. * tahoe cp -r URI:DIR2.../blah foo # ./foo/blah/ will contain the contents. * tahoe cp -r URI:DIR2.../blah/ foo # ./foo will contain the contents.
Author

Here's my attempt to fill out the table from comment:96157 for a certain rule that I have in my mind right now (written below).

  • "Rule comment:-1"
  • (F1) cp -r PARENTCAP/dir local/ -> local/dir/file.txt
  • (F2) cp -r PARENTCAP/dir local/missing -> local/missing/dir/file.txt
  • (G1) cp -r DIRCAP local/ -> local/file.txt
  • (G2) cp -r DIRCAP local/missing -> local/missing/file.txt
  • (H1) cp -r DIRCAP_ALIAS: local/ -> local/file.txt
  • (H2) cp -r DIRCAP_ALIAS: local/missing -> local/missing/file.txt
  • (I1) cp -r DIRCAP/file.txt local/ -> local/file.txt
  • (I2) cp -r DIRCAP/file.txt local/missing -> local/missing
  • (J1) cp -r FILECAP local/ -> "error, you must specify a destination filename"
  • (J2) cp -r FILECAP local/missing -> local/missing

"Rule comment:-1" is:

  1. If the source is a directory:

  2. If the target is the name of a locally existing file, then "error: there is already a local file present under the name $TARGET".

  3. If the target is the name of something not locally existing, then mkdir it and then use it as "target directory".

  4. If the target is the name of a locally existing directory, then proceed to use it as "target directory".

  5. Check whether the source directory has a name (as in F1, F2) or has no name (as in G1, G2, H1, H2). If it has a name then we say that the source means the bag itself — the directory, and if it has no name then we say that the source means the contents of the bag — the contents of the directory.

  6. Now if the source is the bag itself, then mkdir a new directory inside "target directory", named by the name of the source directory, and copy the contents of the bag into "target directory"/"source directory name"/ (which are cases F1 and F2).

  7. Else (the source was the contents of the bag instead of the bag itself) copy the contents of the bag into "target directory"/ (which are cases G1, G2, H1, and H2).

  8. If the source is a file, then check if the target is an existing directory.

  9. If the source is a nameless file (as in J1, J2) and target is an existing directory (as in J1), then "error, you must specify a destination filename".

  10. Else, if the source is a nameless file and the target is not an existing directory, then use the target as the local filename (which is case J2).

  11. Else, if the source is a named file and the target is an existing directory, then use the source filename within the target existing directory (which is case I1).

  12. Else, if the source is a named file and the target is not an existing directory, then use the target as the local filename (which is case I2).

Here's my attempt to fill out the table from [comment:96157](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96157) for a certain rule that I have in my mind right now (written below). * "Rule [comment:-1](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1)" * (F1) `cp -r PARENTCAP/dir local/` -> `local/dir/file.txt` * (F2) `cp -r PARENTCAP/dir local/missing` -> `local/missing/dir/file.txt` * (G1) `cp -r DIRCAP local/` -> `local/file.txt` * (G2) `cp -r DIRCAP local/missing` -> `local/missing/file.txt` * (H1) `cp -r DIRCAP_ALIAS: local/` -> `local/file.txt` * (H2) `cp -r DIRCAP_ALIAS: local/missing` -> `local/missing/file.txt` * (I1) `cp -r DIRCAP/file.txt local/` -> `local/file.txt` * (I2) `cp -r DIRCAP/file.txt local/missing` -> `local/missing` * (J1) `cp -r FILECAP local/` -> "error, you must specify a destination filename" * (J2) `cp -r FILECAP local/missing` -> `local/missing` "Rule [comment:-1](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1)" is: 1. If the source is a directory: 1. If the target is the name of a locally existing file, then "error: there is already a local file present under the name $TARGET". 2. If the target is the name of something not locally existing, then mkdir it and then use it as "target directory". 3. If the target is the name of a locally existing directory, then proceed to use it as "target directory". 4. Check whether the source directory has a name (as in F1, F2) or has no name (as in G1, G2, H1, H2). If it has a name then we say that the source means the bag itself — the directory, and if it has no name then we say that the source means the contents of the bag — the contents of the directory. 1. Now if the source is the bag itself, then mkdir a new directory inside "target directory", named by the name of the source directory, and copy the contents of the bag into "target directory"/"source directory name"/ (which are cases F1 and F2). 2. Else (the source was the contents of the bag instead of the bag itself) copy the contents of the bag into "target directory"/ (which are cases G1, G2, H1, and H2). 2. If the source is a file, then check if the target is an existing directory. 1. If the source is a nameless file (as in J1, J2) *and* target is an existing directory (as in J1), then "error, you must specify a destination filename". 2. Else, if the source is a nameless file and the target is not an existing directory, then use the target as the local filename (which is case J2). 3. Else, if the source is a named file and the target is an existing directory, then use the source filename within the target existing directory (which is case I1). 4. Else, if the source is a named file and the target is not an existing directory, then use the target as the local filename (which is case I2).
Author

"Rule comment:96160" could in the future be extended by additional syntax to indicate that the user wants to copy the contents-of-the-bag instead of the bag, in those cases where the bag had a name. comment:96159 suggests such additional syntax. (Side note: I have been confused in the past by the presence-or-absence-of-trailing-slash, such as rsync uses, to indicate this sort of thing. I'd prefer a very long and explicit thing like a command-line switch --contents-of.)

"Rule [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160)" could in the future be extended by additional syntax to indicate that the user wants to copy the contents-of-the-bag instead of the bag, in those cases where the bag had a name. [comment:96159](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96159) suggests such additional syntax. (Side note: I have been confused in the past by the presence-or-absence-of-trailing-slash, such as rsync uses, to indicate this sort of thing. I'd prefer a very long and explicit thing like a command-line switch `--contents-of`.)
daira commented 2015-01-22 21:28:49 +00:00
Owner

Another argument against globbing is that the argument would have to be quoted -- and if it were not, strange things would happen on Unix (I think the argument would appear to be omitted assuming there is no local file that matches the glob).

Another argument against globbing is that the argument would have to be quoted -- and if it were not, strange things would happen on Unix (I think the argument would appear to be omitted assuming there is no local file that matches the glob).

Ok, here's the current state of affairs:

  • cp -r X local/, where local already exists:
X 1.10 trunk(e73d76e) new?
PARENTCAP/dir (A1) local/file (F1) local/dir/file (F3)
DIRCAP (B1) local/file (G1) EXCEPTION-1 (G3)
DIRCAP_ALIAS: (C1) local/file (H1) EXCEPTION-1 (H3)
-
DIRCAP/file (D1) local/file (I1) local/file (I3)
FILECAP (E1) ERROR-2 (J1) ERROR-2 (J3)
  • cp -r X local/missing, where local exists but missing does not:
X 1.10 trunk(e73d76e) /bin/cp -r new?
PARENTCAP/dir (A2) local/missing/file (F2) local/missing/dir/file local/missing/file (F4)
DIRCAP (B2) local/missing/file (G2) EXCEPTION-1 (G4)
DIRCAP_ALIAS: (C2) local/missing/file (H2) EXCEPTION-1 (H4)
-
DIRCAP/file (D2) local/missing/file (I2) local/missing/file local/missing (I4)
FILECAP (E2) EXCEPTION-3 (J2) EXCEPTION-3 (J4)
  • EXCEPTION-1: build_graphs(), NoneType has no attribute startswith
  • ERROR-2: error: you must specify a destination filename
  • EXCEPTION-3: put_file() line 156, name is None but precondition requires isinstance(unicode)
Ok, here's the current state of affairs: * `cp -r X local/`, where `local` already exists: | X | 1.10 | trunk(e73d76e) | new? | |---|---|---|---| | PARENTCAP/dir | (A1) local/file | (F1) local/dir/file | (F3) | | DIRCAP | (B1) local/file | (G1) EXCEPTION-1 | (G3) | | DIRCAP_ALIAS: | (C1) local/file | (H1) EXCEPTION-1 | (H3) | | - | | | | | DIRCAP/file | (D1) local/file | (I1) local/file | (I3) | | FILECAP | (E1) ERROR-2 | (J1) ERROR-2 | (J3) | * `cp -r X local/missing`, where `local` exists but `missing` does not: | X | 1.10 | trunk(e73d76e) | /bin/cp -r | new? | |---|---|---|---|---| | PARENTCAP/dir | (A2) local/missing/file | (F2) local/missing/dir/file | local/missing/file | (F4) | | DIRCAP | (B2) local/missing/file | (G2) EXCEPTION-1 | | (G4) | | DIRCAP_ALIAS: | (C2) local/missing/file | (H2) EXCEPTION-1 | | (H4) | | - | | | | | | DIRCAP/file | (D2) local/missing/file | (I2) local/missing/file | local/missing | (I4) | | FILECAP | (E2) EXCEPTION-3 | (J2) EXCEPTION-3 | | (J4) | * EXCEPTION-1: `build_graphs()`, `NoneType has no attribute startswith` * ERROR-2: `error: you must specify a destination filename` * EXCEPTION-3: `put_file()` line 156, `name` is None but precondition requires `isinstance(unicode)`

I think zooko's rule in comment:96160 / comment:-1 gives us:

  • cp -r X local/, where local already exists:
X 1.10 trunk(e73d76e) rule [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1)
PARENTCAP/dir (A1) local/file (F1) local/dir/file (F3) local/dir/file
DIRCAP (B1) local/file (G1) EXCEPTION-1 (G3) local/file
DIRCAP_ALIAS: (C1) local/file (H1) EXCEPTION-1 (H3) local/file
-
DIRCAP/file (D1) local/file (I1) local/file (I3) local/file
FILECAP (E1) ERROR-2 (J1) ERROR-2 (J3) ERROR-2
  • cp -r X local/missing, where local exists but missing does not:
X 1.10 trunk(e73d76e) rule [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1)
PARENTCAP/dir (A2) local/missing/file (F2) local/missing/dir/file (F4) local/missing/dir/file
DIRCAP (B2) local/missing/file (G2) EXCEPTION-1 (G4) local/missing/file
DIRCAP_ALIAS: (C2) local/missing/file (H2) EXCEPTION-1 (H4) local/missing/file
-
DIRCAP/file (D2) local/missing/file (I2) local/missing/file (I4) local/missing
FILECAP (E2) EXCEPTION-3 (J2) EXCEPTION-3 (J4) local/missing

Although:

  • this doesn't cover his rule 1.a, where the source is a directory but the target is a pre-existing file
  • we could probably get away with saying that "cp -r" on a file source is an error, if it made things cleaner (in J3/J4)

Feel free to edit the table in this comment if I interpreted your
proposal incorrectly.

I think zooko's rule in [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160) / [comment:-1](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1) gives us: * `cp -r X local/`, where `local` already exists: | X | 1.10 | trunk(e73d76e) | rule [[comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160)](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1) | |---|---|---|---| | PARENTCAP/dir | (A1) local/file | (F1) local/dir/file | (F3) local/dir/file | | DIRCAP | (B1) local/file | (G1) EXCEPTION-1 | (G3) local/file | | DIRCAP_ALIAS: | (C1) local/file | (H1) EXCEPTION-1 | (H3) local/file | | - | | | | | DIRCAP/file | (D1) local/file | (I1) local/file | (I3) local/file | | FILECAP | (E1) ERROR-2 | (J1) ERROR-2 | (J3) ERROR-2 | * `cp -r X local/missing`, where `local` exists but `missing` does not: | X | 1.10 | trunk(e73d76e) | rule [[comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160)](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment--1) | |---|---|---|---| | PARENTCAP/dir | (A2) local/missing/file | (F2) local/missing/dir/file | (F4) local/missing/dir/file | | DIRCAP | (B2) local/missing/file | (G2) EXCEPTION-1 | (G4) local/missing/file | | DIRCAP_ALIAS: | (C2) local/missing/file | (H2) EXCEPTION-1 | (H4) local/missing/file | | - | | | | | DIRCAP/file | (D2) local/missing/file | (I2) local/missing/file | (I4) local/missing | | FILECAP | (E2) EXCEPTION-3 | (J2) EXCEPTION-3 | (J4) local/missing | Although: * this doesn't cover his rule 1.a, where the source is a directory but the target is a pre-existing file * we could probably get away with saying that "cp -r" on a file source is an error, if it made things cleaner (in J3/J4) Feel free to edit the table in this comment if I interpreted your proposal incorrectly.
daira commented 2015-01-27 18:35:57 +00:00
Owner

warner: are you sure the table is right for cp -R DIRCAP/file local/missing, columns 1.10 and trunk? I would have expected the resulting file to be at local/missing.

warner: are you sure the table is right for `cp -R DIRCAP/file local/missing`, columns 1.10 and trunk? I would have expected the resulting file to be at `local/missing`.
Author

My original comment:96160 was badly misformatted which hid some of the structure of my proposed rules. Here it is again, unchanged except for proper formatting.

Here's my attempt to fill out the table from comment:96157 for a certain rule that I have in my mind right now (written below).

  • "Rule comment:96160"
  • (F1) cp -r PARENTCAP/dir local/ -> local/dir/file.txt
  • (F2) cp -r PARENTCAP/dir local/missing -> local/missing/dir/file.txt
  • (G1) cp -r DIRCAP local/ -> local/file.txt
  • (G2) cp -r DIRCAP local/missing -> local/missing/file.txt
  • (H1) cp -r DIRCAP_ALIAS: local/ -> local/file.txt
  • (H2) cp -r DIRCAP_ALIAS: local/missing -> local/missing/file.txt
  • (I1) cp -r DIRCAP/file.txt local/ -> local/file.txt
  • (I2) cp -r DIRCAP/file.txt local/missing -> local/missing
  • (J1) cp -r FILECAP local/ -> "error, you must specify a destination filename"
  • (J2) cp -r FILECAP local/missing -> local/missing

"Rule comment:96160" is:

.1. If the source is a directory:

.a. If the target is the name of a locally existing file, then "error: there is already a local file present under the name $TARGET".

.b. If the target is the name of something not locally existing, then mkdir it and then use it as "target directory".

.c. If the target is the name of a locally existing directory, then proceed to use it as "target directory".

.d. Check whether the source directory has a name (as in F1, F2) or has no name (as in G1, G2, H1, H2). If it has a name then we say that the source means the bag itself — the directory, and if it has no name then we say that the source means the contents of the bag — the contents of the directory.

  .i. Now if the source is the bag itself, then mkdir a new directory inside "target directory", named by the name of the source directory, and copy the contents of the bag into "target directory"/"source directory name"/ (which are cases F1 and F2).

  .ii. Else (the source was the contents of the bag instead of the bag itself) copy the contents of the bag into "target directory"/ (which are cases G1, G2, H1, and H2).

.2. If the source is a file, then check if the target is an existing directory.

.a. If the source is a nameless file (as in J1, J2) and target is an existing directory (as in J1), then "error, you must specify a destination filename".

.b. Else, if the source is a nameless file and the target is not an existing directory, then use the target as the local filename (which is case J2).

.c. Else, if the source is a named file and the target is an existing directory, then use the source filename within the target existing directory (which is case I1).

.d. Else, if the source is a named file and the target is not an existing directory, then use the target as the local filename (which is case I2).

My original [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160) was badly misformatted which hid some of the structure of my proposed rules. Here it is again, unchanged except for proper formatting. Here's my attempt to fill out the table from [comment:96157](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96157) for a certain rule that I have in my mind right now (written below). * "Rule [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160)" * (F1) `cp -r PARENTCAP/dir local/` -> `local/dir/file.txt` * (F2) `cp -r PARENTCAP/dir local/missing` -> `local/missing/dir/file.txt` * (G1) `cp -r DIRCAP local/` -> `local/file.txt` * (G2) `cp -r DIRCAP local/missing` -> `local/missing/file.txt` * (H1) `cp -r DIRCAP_ALIAS: local/` -> `local/file.txt` * (H2) `cp -r DIRCAP_ALIAS: local/missing` -> `local/missing/file.txt` * (I1) `cp -r DIRCAP/file.txt local/` -> `local/file.txt` * (I2) `cp -r DIRCAP/file.txt local/missing` -> `local/missing` * (J1) `cp -r FILECAP local/` -> "error, you must specify a destination filename" * (J2) `cp -r FILECAP local/missing` -> `local/missing` "Rule [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160)" is: .1. If the source is a directory: .a. If the target is the name of a locally existing file, then "error: there is already a local file present under the name $TARGET". .b. If the target is the name of something not locally existing, then mkdir it and then use it as "target directory". .c. If the target is the name of a locally existing directory, then proceed to use it as "target directory". .d. Check whether the source directory has a name (as in F1, F2) or has no name (as in G1, G2, H1, H2). If it has a name then we say that the source means the bag itself — the directory, and if it has no name then we say that the source means the contents of the bag — the contents of the directory. .i. Now if the source is the bag itself, then mkdir a new directory inside "target directory", named by the name of the source directory, and copy the contents of the bag into "target directory"/"source directory name"/ (which are cases F1 and F2). .ii. Else (the source was the contents of the bag instead of the bag itself) copy the contents of the bag into "target directory"/ (which are cases G1, G2, H1, and H2). .2. If the source is a file, then check if the target is an existing directory. .a. If the source is a nameless file (as in J1, J2) *and* target is an existing directory (as in J1), then "error, you must specify a destination filename". .b. Else, if the source is a nameless file and the target is not an existing directory, then use the target as the local filename (which is case J2). .c. Else, if the source is a named file and the target is an existing directory, then use the source filename within the target existing directory (which is case I1). .d. Else, if the source is a named file and the target is not an existing directory, then use the target as the local filename (which is case I2).
Author

Replying to warner:

  • we could probably get away with saying that "cp -r" on a file source is an error, if it made things cleaner (in J3/J4)

That sounds okay to me.

Feel free to edit the table in this comment if I interpreted your proposal incorrectly.

I think the table is an accurate reflection of the comment:96160 / comment:96166 proposal.

Replying to [warner](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96164): > * we could probably get away with saying that "cp -r" on a file source is an error, if it made things cleaner (in J3/J4) That sounds okay to me. > Feel free to edit the table in this comment if I interpreted your proposal incorrectly. I think the table is an accurate reflection of the [comment:96160](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96160) / [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) proposal.
daira commented 2015-01-29 19:43:07 +00:00
Owner

Note that this could potentially interact with #2027.

Note that this could potentially interact with #2027.
daira commented 2015-02-03 19:49:00 +00:00
Owner

Replying to daira:

warner: are you sure the table (in comment:96163) is right for cp -R DIRCAP/file local/missing, columns 1.10 and trunk? I would have expected the resulting file to be at local/missing.

Ping in case you missed this question.

Replying to [daira](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96165): > warner: are you sure the table (in [comment:96163](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96163)) is right for `cp -R DIRCAP/file local/missing`, columns 1.10 and trunk? I would have expected the resulting file to be at `local/missing`. Ping in case you missed this question.

D2 and I2, right? Yeah, those give local/missing/file.txt in both cases.

D2 and I2, right? Yeah, those give local/missing/file.txt in both cases.

Ok, I agree that that's a bit weird. /bin/cp doesn't do that: /bin/cp parent/dir/file.txt local/missing creates local/missing, and /bin/cp -r does the same thing.

I guess I need to add table entries for what unix does. If possible/applicable, we should match unix behavior.

Ok, I agree that that's a bit weird. `/bin/cp` doesn't do that: `/bin/cp parent/dir/file.txt local/missing` creates `local/missing`, and `/bin/cp -r` does the same thing. I guess I need to add table entries for what unix does. If possible/applicable, we should match unix behavior.

I will try to implement zooko's algorithm from comment:96166 , and enhance the table to mention what happens with /bin/cp in both no-flag, -r, and -R cases.

I will try to implement zooko's algorithm from [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) , and enhance the table to mention what happens with `/bin/cp` in both no-flag, `-r`, and `-R` cases.
daira commented 2015-02-11 16:06:13 +00:00
Owner

We discussed this during Nuts and Bolts, and I was persuaded that we should Zooko's comment:96166 algorithm despite the difference from /bin/cp (as tested on OS X). The clinching arguments were:

  • /bin/cp doesn't behave consistently across platforms anyway. Its different treatment of a trailing slash on some platforms is confusing and I don't think we should emulate that.
  • Zooko's proposed algorithm has a symmetry between the target-present and target-not-present cases that I hadn't previously noticed, and that may help to prevent race conditions.
We discussed this during Nuts and Bolts, and I was persuaded that we should Zooko's [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) algorithm despite the difference from `/bin/cp` (as tested on OS X). The clinching arguments were: * `/bin/cp` doesn't behave consistently across platforms anyway. Its different treatment of a trailing slash on some platforms is confusing and I don't think we should emulate that. * Zooko's proposed algorithm has a symmetry between the target-present and target-not-present cases that I hadn't previously noticed, and that may help to prevent race conditions.

Updated table for cp [-r] X local/, where local already exists:

|

/bin/cp - local/file ERROR-4b - -
/bin/cp -r - local/file local/dir/file - -
/bin/cp -R - local/file local/dir/file - -
1.10 ERROR-2 local/file local/file ERROR-4 ERROR-4
1.10 -r ERROR-2 local/file local/file local/file local/file
trunk ERROR-2 local/file local/file ERROR-4 ERROR-4
trunk -r ERROR-2 local/file local/dir/file EXCEPTION-1 EXCEPTION-1
comment:96166 ERROR-2 local/file ERROR-4 ERROR-4 ERROR-4
comment:96166 -r ERROR-2 local/file local/dir/file local/file local/file

And for cp [-r] X local/missing, where local exists but missing does not:

|

/bin/cp - local/missing ERROR-4b - -
/bin/cp -r - local/missing local/missing/file - -
/bin/cp -R - local/missing local/missing/file - -
1.10 local/missing local/missing ERROR-4 ERROR-4 ERROR-4
1.10 -r EXCEPTION-3 local/missing/file local/missing/file local/missing/file local/missing/file
trunk local/missing local/missing ERROR-4 ERROR-4 ERROR-4
trunk -r EXCEPTION-3 local/missing/file local/missing/dir/file EXCEPTION-1 EXCEPTION-1
comment:96166 local/missing local/missing ERROR-4 ERROR-4 ERROR-4
comment:96166 -r local/missing local/missing local/missing/dir/file local/missing/file local/missing/file
  • EXCEPTION-1: build_graphs(), NoneType has no attribute startswith
  • ERROR-2: you must specify a destination filename
  • EXCEPTION-3: put_file() line 156, name is None but precondition requires isinstance(unicode)
  • ERROR-4: cannot copy directories without --recursive
  • ERROR-4b: X is a directory (not copied)
Updated table for `cp [-r] X local/`, where `local` already exists: # | | | | | | | | | |---|---|---|---|---|---|---| | /bin/cp | - | local/file | | ERROR-4b | - | - | | /bin/cp -r | - | local/file | | local/dir/file | - | - | | /bin/cp -R | - | local/file | | local/dir/file | - | - | | 1.10 | ERROR-2 | local/file | | local/file | ERROR-4 | ERROR-4 | | 1.10 -r | ERROR-2 | local/file | | local/file | local/file | local/file | | trunk | ERROR-2 | local/file | | local/file | ERROR-4 | ERROR-4 | | trunk -r | ERROR-2 | local/file | | local/dir/file | EXCEPTION-1 | EXCEPTION-1 | | [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) | ERROR-2 | local/file | | ERROR-4 | ERROR-4 | ERROR-4 | | [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) -r | ERROR-2 | local/file | | local/dir/file | local/file | local/file | And for `cp [-r] X local/missing`, where `local` exists but `missing` does not: # | | | | | | | | | |---|---|---|---|---|---|---| | /bin/cp | - | local/missing | | ERROR-4b | - | - | | /bin/cp -r | - | local/missing | | local/missing/file | - | - | | /bin/cp -R | - | local/missing | | local/missing/file | - | - | | 1.10 | local/missing | local/missing | | ERROR-4 | ERROR-4 | ERROR-4 | | 1.10 -r | EXCEPTION-3 | local/missing/file | | local/missing/file | local/missing/file | local/missing/file | | trunk | local/missing | local/missing | | ERROR-4 | ERROR-4 | ERROR-4 | | trunk -r | EXCEPTION-3 | local/missing/file | | local/missing/dir/file | EXCEPTION-1 | EXCEPTION-1 | | [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) | local/missing | local/missing | | ERROR-4 | ERROR-4 | ERROR-4 | | [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) -r | local/missing | local/missing | | local/missing/dir/file | local/missing/file | local/missing/file | * EXCEPTION-1: `build_graphs()`, `NoneType has no attribute startswith` * ERROR-2: you must specify a destination filename * EXCEPTION-3: `put_file()` line 156, `name` is None but precondition requires `isinstance(unicode)` * ERROR-4: cannot copy directories without --recursive * ERROR-4b: X is a directory (not copied)
daira commented 2015-02-19 17:02:37 +00:00
Owner

I updated comment:96174 with the proposed behaviour from comment:96166. There is one case without -r that I didn't know how to fill in: tahoe cp PARENTCAP/dir local/. (Either local/file or ERROR-4b are reasonable possibilities.)

I updated [comment:96174](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96174) with the proposed behaviour from [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166). There is one case without `-r` that I didn't know how to fill in: `tahoe cp PARENTCAP/dir local/`. (Either `local/file` or ERROR-4b are reasonable possibilities.)
daira commented 2015-02-19 17:54:01 +00:00
Owner

In TC&C, we agreed that tahoe cp PARENTCAP/dir local/ should also give ERROR-4.

In TC&C, we agreed that `tahoe cp PARENTCAP/dir local/` should also give ERROR-4.

I've updated comment:96174 to reflect that (the rule is that you must give -r to copy a directory, so a directory-like source without -r gives an error). I think our table is now up to date.

Looking at the table, with an eye towards writing docs that explain what has changed, the new "cp -r PARENTCAP/dir local/missing" case (F2, bottom row) stands out. It's consistent with current trunk, but not with 1.10, or the proposed behavior for other directory-like sources, or with bin/cp. It'd be easier to explain if it were local/missing/file instead. I'm sure we've discussed this to death.. I've been too busy figuring out how to format that table. I'll reread the ticket and re-understand the rationale for that one.

Next steps:

  • try to make the code implement the table
  • put an edited form of the table into NEWS, to explain the user-visible change
  • put a smaller form (just bin/cp and current behavior) into cli.rst
  • put an even smaller form (just current behavior, maybe as prose) into the tahoe-cp --help docstring
I've updated [comment:96174](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96174) to reflect that (the rule is that you must give -r to copy a directory, so a directory-like source without -r gives an error). I think our table is now up to date. Looking at the table, with an eye towards writing docs that explain what has changed, the new "cp -r PARENTCAP/dir local/missing" case (F2, bottom row) stands out. It's consistent with current trunk, but not with 1.10, or the proposed behavior for other directory-like sources, or with bin/cp. It'd be easier to explain if it were `local/missing/file` instead. I'm sure we've discussed this to death.. I've been too busy figuring out how to format that table. I'll reread the ticket and re-understand the rationale for that one. Next steps: * try to make the code implement the table * put an edited form of the table into NEWS, to explain the user-visible change * put a smaller form (just bin/cp and current behavior) into cli.rst * put an even smaller form (just current behavior, maybe as prose) into the tahoe-cp `--help` docstring
Author

Replying to warner:

Looking at the table, with an eye towards writing docs that explain what has changed, the new "cp -r PARENTCAP/dir local/missing" case (F2, bottom row) stands out. It's consistent with current trunk, but not with 1.10, or the proposed behavior for other directory-like sources, or with bin/cp. It'd be easier to explain if it were local/missing/file instead. I'm sure we've discussed this to death..

Let's see…

That is intentional in the comment:96166 algorithm. The reasoning is twofold:

First of all, the question of whether you want the bag vs. the contents of the bag is determined by whether the directory-like source has a name (the F column) vs. doesn't have a name (the G and H columns). That's a nice simple rule, and according to that, the result in the "comment:96166 -r" row has to be local/missing/dir/file instead of local/missing/file, because the latter would be just the contents of the bag (file) instead of the bag (dir/file).

So looking at the table, the cells of column F need to result in dir/file (if they aren't instead an error) and the cells of columns G and H need to result in file (if they aren't instead an error).

Second, the comment:96166 algorithm behaves the same way whether the target exists or doesn't exist at the beginning of the algorithm. This is (in my intuition) a nice simple rule, and it also means there isn't a race condition in which the behavior is unpredictable because the existence of the target is unpredictable.

So looking at the table, that means the result of F1 and F2 both need to result in the same behavior as each other.

I'm not saying this rationale is better than other rationales that would justify other designs (such as “This is as much like /bin/cp as we could make it.”, or “The behavior is the same for all directory-like sources.”), but that's the rationale for this design.

  • try to make the code implement the table

Yay!

  • put an edited form of the table into NEWS, to explain the user-visible change

Yay!

  • put a smaller form (just bin/cp and current behavior) into cli.rst

Yay!

  • put an even smaller form (just current behavior, maybe as prose) into the tahoe-cp --help docstring

Yay!

Thank you for your good work on this.

Replying to [warner](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96177): > > Looking at the table, with an eye towards writing docs that explain what has changed, the new "cp -r PARENTCAP/dir local/missing" case (F2, bottom row) stands out. It's consistent with current trunk, but not with 1.10, or the proposed behavior for other directory-like sources, or with bin/cp. It'd be easier to explain if it were `local/missing/file` instead. I'm sure we've discussed this to death.. Let's see… That is intentional in the [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) algorithm. The reasoning is twofold: First of all, the question of whether you want the bag vs. the contents of the bag is determined by whether the directory-like source has a name (the `F` column) vs. doesn't have a name (the `G` and `H` columns). That's a nice simple rule, and according to that, the result in the "[comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) -r" row has to be `local/missing/dir/file` instead of `local/missing/file`, because the latter would be just the contents of the bag (`file`) instead of the bag (`dir/file`). So looking at [the table](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96174), the cells of column `F` need to result in `dir/file` (if they aren't instead an error) and the cells of columns `G` and `H` need to result in `file` (if they aren't instead an error). Second, the [comment:96166](/tahoe-lafs/trac-2024-07-25/issues/2329#issuecomment-96166) algorithm behaves the same way whether the target exists or doesn't exist at the beginning of the algorithm. This is (in my intuition) a nice simple rule, and it also means there isn't a race condition in which the behavior is unpredictable because the existence of the target is unpredictable. So looking at the table, that means the result of `F1` and `F2` both need to result in the same behavior as each other. I'm not saying this rationale is better than other rationales that would justify other designs (such as “This is as much like `/bin/cp` as we could make it.”, or “The behavior is the same for all directory-like sources.”), but that's the rationale for this design. > * try to make the code implement the table Yay! > * put an edited form of the table into NEWS, to explain the user-visible change Yay! > * put a smaller form (just bin/cp and current behavior) into cli.rst Yay! > * put an even smaller form (just current behavior, maybe as prose) into the tahoe-cp `--help` docstring Yay! ☺ Thank you for your good work on this.

I've got a branch which adds a test that exercises the full table. While studying how to change the code to let that test pass, I came across another wrinkle: cp accepts multiple source arguments.

In general, if you have multiple source arguments, then the target must be a directory. If the target is a directory, then you can't use unnamed files as sources (one or multiple). The only case that accepts an unnamed file as a source is when you're copying exactly one of them to a target that is (or will be) a file.

Here's a list of what I think should happen (I tried to compress some of the cases.. let me know if it doesn't seem to cover everything):

  • sources are NAMEDDIR, UNNAMEDDIR, NAMEDFILE, UNNAMEDFILE
  • targets are DIR, FILE, or MISSING
  • single-source cases:
  • cp FILE TO-FILE: replace the contents
  • cp FILE TO-MISSING: create the target file
  • cp NAMEDFILE TO-DIR: create/replace TO-DIR/filename
  • cp UNNAMEDFILE TO-DIR: error: need a name
  • (cp -r FILE X: behave same as without -r)
  • cp DIR X: error: must use -r if any source is a directory
  • cp -r NAMEDDIR TO-DIR: create TO-DIR/NAME/ and fill with contents
  • cp -r NAMEDDIR TO-MISSING: same: TO-MISSING/NAME/ filled with contents
  • cp -r UNNAMEDDIR TO-DIR: copy source/* into TO/*
  • cp -r UNNAMEDDIR TO-MISSING: same: mkdir TO-MISSING, fill with contents
  • multiple-source cases:
  • cp X.. TO-FILE: error: many-to-one requires target is a directory
  • cp NAMEDFILES.. TO-DIR: create/replace TO-DIR/filenames
  • cp NAMEDFILES.. TO-MISSING: mkdir, then treat like TO-DIR
  • cp UNNAMEDFILES.. X: error: need a name (1 source is ok, but not >1)
  • cp FILESDIRS.. X: error: must use -r if any source is a directory
  • cp -r X.. TO-MISSING: mkdir target, then treat as TO-DIR
  • cp -r X.. TO-DIR:
  • if X is UNNAMEDFILE: error, need a name
  • if X is NAMEDFILE: create/replace TO-DIR/name
  • if X is UNNAMEDDIR: copy source/* into TO/*, like with single-source
  • if X is NAMEDDIR: copy source/* into TO/name/*

Next step is to figure out how to turn this into a flowchart for tahoe_cp.Copier.try_copy.. I've started on the internal refactorings to make this easier (I was wrong before when I thought the basename should be tracked from outside of TahoeFileSource/etc.. treating it as a possibly-empty property of the source instance is totally the right way to do it).

I've got a branch which adds a test that exercises the full table. While studying how to change the code to let that test pass, I came across another wrinkle: `cp` accepts multiple source arguments. In general, if you have multiple source arguments, then the target must be a directory. If the target is a directory, then you can't use unnamed files as sources (one or multiple). The only case that accepts an unnamed file as a source is when you're copying exactly one of them to a target that is (or will be) a file. Here's a list of what I think should happen (I tried to compress some of the cases.. let me know if it doesn't seem to cover everything): * sources are NAMEDDIR, UNNAMEDDIR, NAMEDFILE, UNNAMEDFILE * targets are DIR, FILE, or MISSING * single-source cases: * cp FILE TO-FILE: replace the contents * cp FILE TO-MISSING: create the target file * cp NAMEDFILE TO-DIR: create/replace TO-DIR/filename * cp UNNAMEDFILE TO-DIR: error: need a name * (cp -r FILE X: behave same as without -r) * cp DIR X: error: must use -r if any source is a directory * cp -r NAMEDDIR TO-DIR: create TO-DIR/NAME/ and fill with contents * cp -r NAMEDDIR TO-MISSING: same: TO-MISSING/NAME/ filled with contents * cp -r UNNAMEDDIR TO-DIR: copy source/* into TO/* * cp -r UNNAMEDDIR TO-MISSING: same: mkdir TO-MISSING, fill with contents * multiple-source cases: * cp X.. TO-FILE: error: many-to-one requires target is a directory * cp NAMEDFILES.. TO-DIR: create/replace TO-DIR/filenames * cp NAMEDFILES.. TO-MISSING: mkdir, then treat like TO-DIR * cp UNNAMEDFILES.. X: error: need a name (1 source is ok, but not >1) * cp FILESDIRS.. X: error: must use -r if any source is a directory * cp -r X.. TO-MISSING: mkdir target, then treat as TO-DIR * cp -r X.. TO-DIR: * if X is UNNAMEDFILE: error, need a name * if X is NAMEDFILE: create/replace TO-DIR/name * if X is UNNAMEDDIR: copy source/* into TO/*, like with single-source * if X is NAMEDDIR: copy source/* into TO/name/* Next step is to figure out how to turn this into a flowchart for `tahoe_cp.Copier.try_copy`.. I've started on the internal refactorings to make this easier (I was wrong before when I thought the basename should be tracked from outside of `TahoeFileSource`/etc.. treating it as a possibly-empty property of the source instance is totally the right way to do it).
daira commented 2015-02-24 01:15:06 +00:00
Owner

You're missing a case:

  • cp NAMEDANDUNNAMEDFILES.. X: error: need a name (if there is >1 source of which >=1 is unnamed)
You're missing a case: * `cp NAMEDANDUNNAMEDFILES.. X`: error: need a name (if there is >1 source of which >=1 is unnamed)
daira commented 2015-02-24 01:21:39 +00:00
Owner

Similarly for cp -R X.. TO-DIR:

  • if X has >=1 UNNAMEDFILE: error, need a name
  • otherwise for each X,
    • if X is NAMEDFILE: create/replace TO-DIR/name
    • if X is UNNAMEDDIR: copy source/* into TO-DIR/*, like with single-source
    • if X is NAMEDDIR: copy source/* into TO-DIR/name/*
Similarly for `cp -R X.. TO-DIR`: * if X has >=1 UNNAMEDFILE: error, need a name * otherwise *for each* X, * if X is NAMEDFILE: create/replace TO-DIR/name * if X is UNNAMEDDIR: copy source/* into TO-DIR/*, like with single-source * if X is NAMEDDIR: copy source/* into TO-DIR/name/*

Ok, updates:

  • sources are NAMEDDIR, UNNAMEDDIR, NAMEDFILE, UNNAMEDFILE
  • targets are DIR, FILE, or MISSING
  • single-source cases:
  • cp FILE TO-FILE: replace the contents
  • cp FILE TO-MISSING: create the target file
  • cp NAMEDFILE TO-DIR: create/replace TO-DIR/filename
  • cp UNNAMEDFILE TO-DIR: error: need a name
  • (cp -r FILE X: behave same as without -r)
  • cp DIR X: error: must use -r if any source is a directory
  • cp -r DIR TO-FILE: error, directories must be copied into other directories
  • cp -r NAMEDDIR TO-DIR: create TO-DIR/NAME/ and fill with contents
  • cp -r NAMEDDIR TO-MISSING: same: TO-MISSING/NAME/ filled with contents
  • cp -r UNNAMEDDIR TO-DIR: copy source/* into TO/*
  • cp -r UNNAMEDDIR TO-MISSING: same: mkdir TO-MISSING, fill with contents
  • multiple-source cases:
  • cp X.. TO-FILE: error: many-to-one requires target is a directory
  • cp NAMEDFILES.. TO-DIR: create/replace TO-DIR/filenames
  • cp NAMEDFILES.. TO-MISSING: mkdir, then treat like TO-DIR
  • cp SOMEUNNAMEDFILES.. X: error: need a name
  • (cp UNNAMEDFILE X with 1 source is ok, but not if there are multiple sources)
  • cp FILESDIRS.. X: error: must use -r if any source is a directory
  • cp -r X.. TO-MISSING: mkdir target, then treat as TO-DIR
  • cp -r X.. TO-DIR: for each X:
  • if X is UNNAMEDFILE: error, need a name, whole command fails
  • if X is NAMEDFILE: create/replace TO-DIR/name
  • if X is UNNAMEDDIR: copy source/* into TO/*, like with single-source
  • if X is NAMEDDIR: copy source/* into TO/name/*
Ok, updates: * sources are NAMEDDIR, UNNAMEDDIR, NAMEDFILE, UNNAMEDFILE * targets are DIR, FILE, or MISSING * single-source cases: * cp FILE TO-FILE: replace the contents * cp FILE TO-MISSING: create the target file * cp NAMEDFILE TO-DIR: create/replace TO-DIR/filename * cp UNNAMEDFILE TO-DIR: error: need a name * (cp -r FILE X: behave same as without -r) * cp DIR X: error: must use -r if any source is a directory * cp -r DIR TO-FILE: error, directories must be copied into other directories * cp -r NAMEDDIR TO-DIR: create TO-DIR/NAME/ and fill with contents * cp -r NAMEDDIR TO-MISSING: same: TO-MISSING/NAME/ filled with contents * cp -r UNNAMEDDIR TO-DIR: copy source/* into TO/* * cp -r UNNAMEDDIR TO-MISSING: same: mkdir TO-MISSING, fill with contents * multiple-source cases: * cp X.. TO-FILE: error: many-to-one requires target is a directory * cp NAMEDFILES.. TO-DIR: create/replace TO-DIR/filenames * cp NAMEDFILES.. TO-MISSING: mkdir, then treat like TO-DIR * cp SOMEUNNAMEDFILES.. X: error: need a name * (cp UNNAMEDFILE X with 1 source is ok, but not if there are multiple sources) * cp FILESDIRS.. X: error: must use -r if any source is a directory * cp -r X.. TO-MISSING: mkdir target, then treat as TO-DIR * cp -r X.. TO-DIR: for each X: * if X is UNNAMEDFILE: error, need a name, whole command fails * if X is NAMEDFILE: create/replace TO-DIR/name * if X is UNNAMEDDIR: copy source/* into TO/*, like with single-source * if X is NAMEDDIR: copy source/* into TO/name/*

(https://github.com/warner/tahoe-lafs/tree/2329) has a branch that adds the tests (and some useful refactoring). It does not yet make any behavior changes. Take a look at the new test_cli_cp.CopyOut and see if it covers all those cases.

(https://github.com/warner/tahoe-lafs/tree/2329) has a branch that adds the tests (and some useful refactoring). It does not yet make any behavior changes. Take a look at the new `test_cli_cp.CopyOut` and see if it covers all those cases.

Ok, the patch is ready for review: https://github.com/tahoe-lafs/tahoe-lafs/pull/143 . I rewrote the target-assignment code, cleaning up an awful lot in the process. I tried to make the diff as minimal as possible, but it may still look a bit ugly. The core 100-line cluster of functions was replaced by a different 100-line cluster of functions, but there's enough overlap that 'git diff' tries too hard to show you line-by-line changes, and does it badly. My best advice for reviewing it is to print out those 100 lines before, and those 100 lines after, and compare those two printouts, instead of looking at a detailed diff.

Ok, the patch is ready for review: <https://github.com/tahoe-lafs/tahoe-lafs/pull/143> . I rewrote the target-assignment code, cleaning up an awful lot in the process. I tried to make the diff as minimal as possible, but it may still look a bit ugly. The core 100-line cluster of functions was replaced by a different 100-line cluster of functions, but there's enough overlap that 'git diff' tries too hard to show you line-by-line changes, and does it badly. My best advice for reviewing it is to print out those 100 lines before, and those 100 lines after, and compare those two printouts, instead of looking at a detailed diff.

Two unexpected cases discovered during today's review:

1: cp FILE1 TARGETFILE/

2: cp -r DIR1 DIR2 TARGETDIR

We decided the first should signal an error: the trailing slash will only be accepted if the target is directory-like (either a pre-existing directory, or something missing that will be created as a directory, either because the source is a directory, or because there are multiple sources). If the target is directory-like, the trailing slash will not affect the copying behavior.

For the second, the realization was that this causes the contents of DIR1 and DIR2 to be merged together in the TARGETDIR, and thus the order of the source arguments matters (presumeably DIR2's contents will overwrite those of DIR1). The same thing happens if you copy multiple files of the same name into a directory (cp foo/file.txt bar/file.txt outdir).

We need to ensure the implementation preserves the order of the source arguments (I think my current patch does, but if I'd used a set instead of a dict, it would behave differently). We should also double-check that /bin/cp does the same thing.

Two unexpected cases discovered during today's review: ``` 1: cp FILE1 TARGETFILE/ 2: cp -r DIR1 DIR2 TARGETDIR ``` We decided the first should signal an error: the trailing slash will only be accepted if the target is directory-like (either a pre-existing directory, or something missing that will be created as a directory, either because the source is a directory, or because there are multiple sources). If the target is directory-like, the trailing slash will not affect the copying behavior. For the second, the realization was that this causes the contents of DIR1 and DIR2 to be merged together in the TARGETDIR, and thus the order of the source arguments matters (presumeably DIR2's contents will overwrite those of DIR1). The same thing happens if you copy multiple files of the same name into a directory (`cp foo/file.txt bar/file.txt outdir`). We need to ensure the implementation preserves the order of the source arguments (I think my current patch does, but if I'd used a set instead of a dict, it would behave differently). We should also double-check that `/bin/cp` does the same thing.

I guess there are a couple of different forms we should examine.

  • cp -r foo/dir bar/dir TARGETDIR
  • cp -r DIRCAP1 DIRCAP2 TARGETDIR

The first is using two named directories that both happen to have the same name. This will cause TARGETDIR/dir to be created, and the contents of the sources merged into it.

The second is using unnamed directories, triggering our "unnamed directories refer to the contents, not the bag itself" rule. Their contents will be merged into TARGETDIR.

/bin/cp doesn't have unnamed directories, so the only way to simulate the contents-not-bag rule is to use /bin/cp -r DIR1/* DIR2/* TARGETDIR, in which case any name collisions are obvious on the post-glob-expansion argv that's passed from the shell to cp. I think (but I'm not sure) that the only way to wind up with collisions in /bin/cp is if the basename of two SOURCE arguments are the same, since /bin/cp always uses the basename of the source to create a child of the target.

(in other words, /bin/cp may not actually give us precedent to follow)

I guess there are a couple of different forms we should examine. * `cp -r foo/dir bar/dir TARGETDIR` * `cp -r DIRCAP1 DIRCAP2 TARGETDIR` The first is using two named directories that both happen to have the same name. This will cause `TARGETDIR/dir` to be created, and the contents of the sources merged into it. The second is using *unnamed* directories, triggering our "unnamed directories refer to the contents, not the bag itself" rule. Their contents will be merged into TARGETDIR. `/bin/cp` doesn't have unnamed directories, so the only way to simulate the contents-not-bag rule is to use `/bin/cp -r DIR1/* DIR2/* TARGETDIR`, in which case any name collisions are obvious on the post-glob-expansion argv that's passed from the shell to `cp`. I think (but I'm not sure) that the only way to wind up with collisions in `/bin/cp` is if the basename of two SOURCE arguments are the same, since `/bin/cp` always uses the basename of the source to create a child of the target. (in other words, `/bin/cp` may not actually give us precedent to follow)

I think I was able to compress the rules above into the following set of assertions. These are the ones implemented by the code:

  • if any source is a directory, must use -r
  • if target is missing:
    • if source is a single file, target will be a file
    • else target will be a directory, so mkdir it
  • if there are multiple sources, target must be a dir
  • if target is a file, source must be a single file
  • if target is directory, sources must be named or a dir

Copying files into files is easy. Copying things into directories requires looking at the type of each source object:

  • target is a directory, so each source must be one of:
    • a named file (copied to a new file under the target)
    • a named directory (causes a new directory of the same name to be created under the target, then the contents of the source are copied into that directory)
    • an unnamed directory (the contents of the source are copied into the target, without a new directory being made)
  • If any source is an unnamed file, throw an error, since we have no way to name the output file.
I think I was able to compress the rules above into the following set of assertions. These are the ones implemented by the code: * if any source is a directory, must use -r * if target is missing: * if source is a single file, target will be a file * else target will be a directory, so mkdir it * if there are multiple sources, target must be a dir * if target is a file, source must be a single file * if target is directory, sources must be named or a dir Copying files into files is easy. Copying things into directories requires looking at the type of each source object: * target is a directory, so each source must be one of: * a named file (copied to a new file under the target) * a named directory (causes a new directory of the same name to be created under the target, then the contents of the source are copied into that directory) * an unnamed directory (the contents of the source are copied into the target, without a new directory being made) * If any source is an unnamed file, throw an error, since we have no way to name the output file.

New pull request is up: https://github.com/tahoe-lafs/tahoe-lafs/pull/144

This incorporates all the review feedback so far. It also rejects trailing slashes on file-like targets, ensures in-order copies of colliding sources (last source wins), fixes a bug I uncovered that preventing colliding sources from working anyways, and adds a bunch more test cases.

New pull request is up: <https://github.com/tahoe-lafs/tahoe-lafs/pull/144> This incorporates all the review feedback so far. It also rejects trailing slashes on file-like targets, ensures in-order copies of colliding sources (last source wins), fixes a bug I uncovered that preventing colliding sources from working anyways, and adds a bunch more test cases.
daira commented 2015-03-05 00:23:25 +00:00
Owner

Reviewing.

Reviewing.

Ok, that PR (plus review feedback) has been landed, in e60392a. Remaining work: docs updates, and some notes for future cleanups.

Ok, that PR (plus review feedback) has been landed, in e60392a. Remaining work: docs updates, and some notes for future cleanups.

Some notes from our review discussion, which didn't suggest changes to the current behavior, but which should be recorded for future analysis:

  • cp SOURCE1 SOURCE2 missing is not so clear-cut. Current behavior is to mkdir, but maybe it should throw an error instead.
  • cp SOURCE1 SOURCE2 missing/ is obviously referring to a directory, so mkdir is more correct. (current behavior is to mkdir). (/bin/cp emits an error).
  • cp -r SOURCE1 SOURCEDIR2 missing is not clear-cut.

Cleanups to do:

  • add a test that uses a source directory which contains multiple files. the current tests use multiple source directories (with one file each)
  • find a way to reduce the with/without-trailing-slash redundancy in the test table
Some notes from our review discussion, which didn't suggest changes to the current behavior, but which should be recorded for future analysis: * `cp SOURCE1 SOURCE2 missing` is not so clear-cut. Current behavior is to mkdir, but maybe it should throw an error instead. * `cp SOURCE1 SOURCE2 missing/` is obviously referring to a directory, so mkdir is more correct. (current behavior is to mkdir). (`/bin/cp` emits an error). * `cp -r SOURCE1 SOURCEDIR2 missing` is not clear-cut. Cleanups to do: * add a test that uses a source directory which contains multiple files. the current tests use multiple source directories (with one file each) * find a way to reduce the with/without-trailing-slash redundancy in the test table
docs changes are in <https://github.com/tahoe-lafs/tahoe-lafs/pull/162>
Brian Warner <warner@lothar.com> commented 2015-05-04 04:50:31 +00:00
Owner

In /tahoe-lafs/trac-2024-07-25/commit/97fd19407d610de298c45500f7e1ad3e62b8a263:

Improve docs on 'cp -r', noting the recent 2329 changes

refs ticket:2329
In [/tahoe-lafs/trac-2024-07-25/commit/97fd19407d610de298c45500f7e1ad3e62b8a263](/tahoe-lafs/trac-2024-07-25/commit/97fd19407d610de298c45500f7e1ad3e62b8a263): ``` Improve docs on 'cp -r', noting the recent 2329 changes refs ticket:2329 ```

ok, I think that's a wrap.

ok, I think that's a wrap.
warner added the
fixed
label 2015-05-04 05:06:06 +00:00
Brian Warner <warner@lothar.com> commented 2015-05-04 05:15:24 +00:00
Owner

In /tahoe-lafs/trac-2024-07-25/commit/ca23c4fa23a77b1fa557c734a2ad1f2abe4e7688:

tahoe cp: ignore trailing slash on source arguments

This avoids an error case where an empty child name resulted in a
duplicate mkdir. It adds a precondition check to guard against empty
child names, and some test cases. It also cleans up a funny redundancy
noticed earlier (refs ticket:2329).
In [/tahoe-lafs/trac-2024-07-25/commit/ca23c4fa23a77b1fa557c734a2ad1f2abe4e7688](/tahoe-lafs/trac-2024-07-25/commit/ca23c4fa23a77b1fa557c734a2ad1f2abe4e7688): ``` tahoe cp: ignore trailing slash on source arguments This avoids an error case where an empty child name resulted in a duplicate mkdir. It adds a precondition check to guard against empty child names, and some test cases. It also cleans up a funny redundancy noticed earlier (refs ticket:2329). ```
Sign in to join this conversation.
No Milestone
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#2329
No description provided.