ui: Rename '_' to 'G_'.
[jackhill/guix/guix.git] / guix / scripts / copy.scm
CommitLineData
f11c444d 1;;; GNU Guix --- Functional package management for GNU
615c5298 2;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
f11c444d
LC
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (guix scripts copy)
20 #:use-module (guix ui)
21 #:use-module (guix scripts)
22 #:use-module (guix ssh)
23 #:use-module (guix store)
24 #:use-module (guix utils)
25 #:use-module (guix derivations)
26 #:use-module (guix scripts build)
27 #:use-module ((guix scripts archive) #:select (options->derivations+files))
f11c444d
LC
28 #:use-module (srfi srfi-1)
29 #:use-module (srfi srfi-11)
30 #:use-module (srfi srfi-37)
31 #:use-module (ice-9 match)
32 #:use-module (ice-9 format)
33 #:export (guix-copy))
34
35\f
36;;;
37;;; Exchanging store items over SSH.
38;;;
39
f11c444d
LC
40(define (ssh-spec->user+host+port spec)
41 "Parse SPEC, a string like \"user@host:port\" or just \"host\", and return
42three values: the user name (or #f), the host name, and the TCP port
43number (or #f) corresponding to SPEC."
44 (define tokens
45 (char-set #\@ #\:))
46
47 (match (string-tokenize spec (char-set-complement tokens))
48 ((host)
49 (values #f host #f))
50 ((left right)
51 (if (string-index spec #\@)
52 (values left right #f)
53 (values #f left (string->number right))))
54 ((user host port)
55 (match (string->number port)
56 ((? integer? port)
57 (values user host port))
58 (x
69daee23 59 (leave (G_ "~a: invalid TCP port number~%") port))))
f11c444d 60 (x
69daee23 61 (leave (G_ "~a: invalid SSH specification~%") spec))))
f11c444d
LC
62
63(define (send-to-remote-host target opts)
64 "Send ITEMS to TARGET. ITEMS is a list of store items or package names; for ;
65package names, build the underlying packages before sending them."
66 (with-store local
67 (set-build-options-from-command-line local opts)
68 (let-values (((user host port)
69 (ssh-spec->user+host+port target))
70 ((drv items)
71 (options->derivations+files local opts)))
72 (show-what-to-build local drv
73 #:use-substitutes? (assoc-ref opts 'substitutes?)
74 #:dry-run? (assoc-ref opts 'dry-run?))
75
76 (and (or (assoc-ref opts 'dry-run?)
77 (build-derivations local drv))
78 (let* ((session (open-ssh-session host #:user user #:port port))
79 (sent (send-files local items
80 (connect-to-remote-daemon session)
81 #:recursive? #t)))
82 (format #t "~{~a~%~}" sent)
83 sent)))))
84
85(define (retrieve-from-remote-host source opts)
86 "Retrieve ITEMS from SOURCE."
87 (with-store local
88 (let*-values (((user host port)
89 (ssh-spec->user+host+port source))
90 ((session)
91 (open-ssh-session host #:user user #:port port))
92 ((remote)
93 (connect-to-remote-daemon session)))
94 (set-build-options-from-command-line local opts)
95 ;; TODO: Here we could to compute and build the derivations on REMOTE
96 ;; rather than on LOCAL (one-off offloading) but that is currently too
97 ;; slow due to the many RPC round trips. So we just assume that REMOTE
98 ;; contains ITEMS.
99 (let*-values (((drv items)
100 (options->derivations+files local opts))
101 ((retrieved)
102 (retrieve-files local items remote #:recursive? #t)))
103 (format #t "~{~a~%~}" retrieved)
104 retrieved))))
105
106\f
107;;;
108;;; Options.
109;;;
110
111(define (show-help)
69daee23 112 (display (G_ "Usage: guix copy [OPTION]... ITEMS...
f11c444d 113Copy ITEMS to or from the specified host over SSH.\n"))
69daee23 114 (display (G_ "
f11c444d 115 --to=HOST send ITEMS to HOST"))
69daee23 116 (display (G_ "
f11c444d
LC
117 --from=HOST receive ITEMS from HOST"))
118 (newline)
119 (show-build-options-help)
120 (newline)
69daee23 121 (display (G_ "
f11c444d 122 -h, --help display this help and exit"))
69daee23 123 (display (G_ "
f11c444d
LC
124 -V, --version display version information and exit"))
125 (newline)
126 (show-bug-report-information))
127
128(define %options
129 ;; Specifications of the command-line options.
130 (cons* (option '("to") #t #f
131 (lambda (opt name arg result)
132 (alist-cons 'destination arg result)))
133 (option '("from") #t #f
134 (lambda (opt name arg result)
135 (alist-cons 'source arg result)))
136 (option '(#\h "help") #f #f
137 (lambda args
138 (show-help)
139 (exit 0)))
140 (option '(#\V "version") #f #f
141 (lambda args
142 (show-version-and-exit "guix copy")))
143 (option '(#\s "system") #t #f
144 (lambda (opt name arg result)
145 (alist-cons 'system arg
146 (alist-delete 'system result eq?))))
147 %standard-build-options))
148
149(define %default-options
150 `((system . ,(%current-system))
151 (substitutes? . #t)
152 (graft? . #t)
153 (max-silent-time . 3600)
154 (verbosity . 0)))
155
156\f
157;;;
158;;; Entry point.
159;;;
160
161(define (guix-copy . args)
162 (with-error-handling
163 (let* ((opts (parse-command-line args %options (list %default-options)))
164 (source (assoc-ref opts 'source))
165 (target (assoc-ref opts 'destination)))
166 (cond (target (send-to-remote-host target opts))
167 (source (retrieve-from-remote-host source opts))
69daee23 168 (else (leave (G_ "use '--to' or '--from'~%")))))))