aboutsummaryrefslogtreecommitdiff
path: root/duet.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-06 11:28:45 -0500
committerCraig Jennings <c@cjennings.net>2026-06-06 11:28:45 -0500
commitbe0feb2b0d0070f23bc9cd348c877aa3ad6c8b7b (patch)
treea374f1a4865e8cbcedcc488ad2eee5335b917e74 /duet.el
parent7757f6909bfcc20211e8ae1f4ad364082ca924f5 (diff)
downloadduet-be0feb2b0d0070f23bc9cd348c877aa3ad6c8b7b.tar.gz
duet-be0feb2b0d0070f23bc9cd348c877aa3ad6c8b7b.zip
fix: build route-specific rsync specs and defer both-remote to Phase 6
duet--rsync-command built one direct rsync argv for every pair, rendering each remote endpoint as host:path. That is right when at most one endpoint is remote, but rsync refuses a source and destination that are both remote, so the argv was unexecutable for every remote-to-remote route, not just the round-trip. Now rsync builds a single argv only for :local and :local-remote, the routes it can run in one invocation. A both-remote pair returns a deferred spec: nil argv, an :exec-mode marker, and the route. Phase 6 reads the route to run rsync on a host (same-host), route through this machine (round-trip), or go direct host-to-host when the override is set. transfer-spec now carries the classified :src-endpoint and :dst-endpoint alongside the route, so execution has the structured endpoints and never has to reinterpret an argv string. The runnable-shape check from the in-process-mode fix extends to accept :exec-mode, so a deferred spec reads as a real plan rather than a broken nil-argv command. Tests cover local-to-remote and remote-to-local argv shapes including a port, and the same-host, round-trip, and direct routes each producing a deferred spec.
Diffstat (limited to 'duet.el')
-rw-r--r--duet.el52
1 files changed, 35 insertions, 17 deletions
diff --git a/duet.el b/duet.el
index 28d45f2..1fe3d31 100644
--- a/duet.el
+++ b/duet.el
@@ -271,12 +271,14 @@ normalizer."
(defun duet--command-spec-executable-p (spec)
"Return non-nil when process SPEC has a recognized, runnable execution shape.
A SPEC is runnable when it is a non-empty plist carrying either a non-empty
-:argv whose elements are all strings (a CLI backend) or an explicit
-in-process mode such as :tramp (a backend that copies in process). A nil
-spec, a bare nil argv, or a shell string is not runnable."
+:argv whose elements are all strings (a CLI backend) or an explicit non-argv
+mode -- :tramp for an in-process copy, or :exec-mode for a route that Phase 6
+orchestrates (a both-remote rsync). A nil spec, a bare nil argv, or a shell
+string is not runnable."
(and (listp spec) spec
(not (plist-get spec :shell-command))
(or (plist-get spec :tramp)
+ (plist-get spec :exec-mode)
(let ((argv (plist-get spec :argv)))
(and (consp argv) (cl-every #'stringp argv))))))
@@ -420,23 +422,34 @@ A local endpoint uses its localname; a remote one uses rsync's native
(let ((port (or (plist-get src :port) (plist-get dst :port))))
(list "-e" (if port (format "ssh -p %s" port) "ssh"))))
-(defun duet--rsync-command (src dst opts)
- "Build an rsync process spec for SRC to DST with OPTS.
-OPTS carries :sources (the source paths) and :destination (the destination
-directory). Sources and destination become rsync path arguments, and a
-remote endpoint adds an ssh transport. File names reach rsync as argv
-elements, never interpolated into a shell string."
- (let* ((sources (plist-get opts :sources))
- (remote (or (duet--ssh-endpoint-p src) (duet--ssh-endpoint-p dst)))
- (src-args (mapcar (lambda (p)
- (duet--rsync-endpoint-arg (duet--classify-path p)))
- sources)))
+(defun duet--rsync-local-command (src dst sources)
+ "Build a single-invocation rsync spec where at most one endpoint is remote.
+SOURCES are the source paths; SRC and DST are the classified representative
+endpoints. A remote endpoint adds an ssh transport. File names reach rsync
+as argv elements, never interpolated into a shell string."
+ (let ((remote (or (duet--ssh-endpoint-p src) (duet--ssh-endpoint-p dst)))
+ (src-args (mapcar (lambda (p)
+ (duet--rsync-endpoint-arg (duet--classify-path p)))
+ sources)))
(list :argv (append '("rsync" "-a" "--partial" "--info=progress2")
(when remote (duet--rsync-ssh-transport src dst))
src-args
(list (duet--rsync-endpoint-arg dst)))
:default-directory "/")))
+(defun duet--rsync-command (src dst opts)
+ "Build an rsync process spec for SRC to DST with OPTS.
+rsync moves data in one invocation only when at most one endpoint is remote
+\(routes :local and :local-remote). It refuses a source and destination that
+are both remote, so a both-remote pair yields a deferred spec carrying the
+route and an :exec-mode marker; Phase 6 runs rsync on a host or routes through
+the local machine per the route. OPTS carries :sources and :route."
+ (if (and (duet--remote-endpoint-p src) (duet--remote-endpoint-p dst))
+ (list :argv nil
+ :exec-mode 'rsync-remote-to-remote
+ :route (plist-get opts :route))
+ (duet--rsync-local-command src dst (plist-get opts :sources))))
+
(defun duet--tramp-handles (_src _dst)
"Score TRAMP: the universal fallback, costlier than a native transport."
100)
@@ -499,17 +512,22 @@ backend's command builder. Return nil when no backend handles the pair."
(dst (duet--classify-path destination-directory))
(backend (duet--select-backend src dst)))
(when backend
- (let* ((bopts (append (list :sources sources
- :destination destination-directory)
+ (let* ((route (duet--transfer-route src dst opts))
+ (bopts (append (list :sources sources
+ :destination destination-directory
+ :route route)
opts))
(cmd (funcall (duet-backend-command backend) src dst bopts)))
(list :sources sources
:destination-directory destination-directory
:destination-name (plist-get opts :destination-name)
:backend (duet-backend-name backend)
- :route (duet--transfer-route src dst opts)
+ :route route
+ :src-endpoint src
+ :dst-endpoint dst
:argv (plist-get cmd :argv)
:tramp (plist-get cmd :tramp)
+ :exec-mode (plist-get cmd :exec-mode)
:default-directory (plist-get cmd :default-directory)
:process-environment (plist-get cmd :process-environment)
:async (if (plist-member opts :async) (plist-get opts :async) t))))))