Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpythonic.el
More file actions
Latest commit
310 lines (254 loc) · 11.3 KB
/
Copy pathpythonic.el
File metadata and controls
310 lines (254 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
;;; pythonic.el --- Utility functions for writing pythonic emacs package -*- lexical-binding: t; -*-
;; Copyright (C) 2015-2021 by Artem Malyshev
;; Author: Artem Malyshev <proofit404@gmail.com>
;; URL: https://github.com/proofit404/pythonic
;; Version: 0.2
;; Package-Requires: ((emacs "25.1") (s "1.9") (f "0.17.2"))
;; Keywords: convenience pythonic
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; See the README for more details.
;;; Code:
(require'python)
(require'cl-lib)
(require'tramp)
(require's)
(require'f)
(defgrouppythonicnil
"Utility functions for writing pythonic emacs package."
:group'python)
;;; Connection predicates.
(defunpythonic-local-p ()
"Determine local virtual environment."
(not (pythonic-remote-p)))
(defunpythonic-remote-p ()
"Determine remote virtual environment."
(and (tramp-tramp-file-p (pythonic-aliased-path default-directory))
t))
(defunpythonic-remote-docker-p ()
"Determine docker remote virtual environment."
(and (pythonic-remote-p)
(s-equals-p (pythonic-remote-method) "docker")))
(defunpythonic-remote-ssh-p ()
"Determine ssh remote virtual environment."
(and (pythonic-remote-p)
(member (pythonic-remote-method) '("ssh""sshx"))))
(defunpythonic-remote-vagrant-p ()
"Determine vagrant remote virtual environment."
(and (pythonic-remote-p)
(s-equals-p (pythonic-remote-host) "localhost")
(s-equals-p (pythonic-remote-user) "vagrant")))
;;; Connection properties.
(defunpythonic-remote-method ()
"Get tramp method of the connection to the remote python interpreter."
(tramp-file-name-method (tramp-dissect-file-name (pythonic-aliased-path default-directory))))
(defunpythonic-remote-user ()
"Get user of the connection to the remote python interpreter."
(tramp-file-name-user (tramp-dissect-file-name (pythonic-aliased-path default-directory))))
(defunpythonic-remote-host ()
"Get host of the connection to the remote python interpreter."
(let ((hostname (tramp-file-name-host (tramp-dissect-file-name (pythonic-aliased-path default-directory)))))
(replace-regexp-in-string"#.*\\'""" hostname)))
(defunpythonic-remote-port ()
"Get port of the connection to the remote python interpreter."
(let ((port (tramp-file-name-port (tramp-dissect-file-name (pythonic-aliased-path default-directory)))))
;; In Emacs 25, `tramp-file-name-port' returns number,
;; in Emacs 26, it returns string. This condition makes them compatible.
(if (stringp port)
(string-to-number port)
port)))
;;; File names.
(defvarpythonic-directory-aliasesnil)
(defunpythonic-aliased-path (path)
"Get aliased PATH."
(let ((alias-tuple (cl-find-if
(lambda (it)
(or (f-same-p (car it) path)
(f-ancestor-of-p (car it) path)))
pythonic-directory-aliases)))
(if (null alias-tuple)
path
(f-join (cadr alias-tuple)
(f-relative path (car alias-tuple))))))
(defunpythonic-unaliased-path (alias)
"Get real path from ALIAS."
(let ((alias-tuple (cl-find-if
(lambda (it)
(or (f-same-p (cadr it) alias)
(f-ancestor-of-p (cadr it) alias)))
pythonic-directory-aliases)))
(if (null alias-tuple)
alias
(f-join (car alias-tuple)
(f-relative alias (cadr alias-tuple))))))
(defunpythonic-has-alias-p (path)
"Check if given PATH has alias."
(not (null (cl-find-if
(lambda (it)
(or (f-same-p (car it) path)
(f-ancestor-of-p (car it) path)))
pythonic-directory-aliases))))
(defunpythonic-python-readable-file-name (filename)
"Emacs to Python FILENAME conversion.
Take FILENAME from the perspective of the localhost and translate
it to the FILENAME Python process can read. Python can be
running locally or remotely. FILENAME can have local or tramp
format. Result will have local format."
(let ((alias (pythonic-aliased-path (expand-file-name filename))))
(if (tramp-tramp-file-p alias)
(tramp-file-name-localname (tramp-dissect-file-name alias))
alias)))
(defunpythonic-emacs-readable-file-name (filename)
"Python to Emacs FILENAME conversion.
Take FILENAME from the perspective of the python interpreter and
translate it to the FILENAME Emacs `find-file' command can
understand. Python can be running locally or remotely. FILENAME
should have local format. Result can have local or tramp
format."
(when (tramp-tramp-file-p filename)
(error"%s can not be tramp path" filename))
(if (pythonic-remote-p)
(let* ((directory (pythonic-aliased-path default-directory))
(connection (substring directory 0
(- (length directory)
(length (tramp-file-name-localname (tramp-dissect-file-name directory)))))))
(pythonic-unaliased-path (concat connection filename)))
filename))
;;; Docker Compose.
(defcustompythonic-docker-compose-filename"docker-compose.yml"
"File name of the docker-compose project file."
:type'string
:safe'stringp)
(defcustompythonic-docker-compose-service-namenil
"Name of the default service to execute commands."
:type'string
:safe'stringp)
(defvarpythonic-read-docker-compose-file-code"
from __future__ import print_function
import json, sys, yaml
print(json.dumps(yaml.safe_load(open(sys.argv[-1], 'r'))))
")
(defunpythonic-get-docker-compose-project ()
"Get directory where `pythonic-docker-compose-filename' is present."
(let ((project (locate-dominating-file default-directory pythonic-docker-compose-filename)))
(when project
(f-full project))))
(defunpythonic-get-docker-compose-filename (project)
"Get full path to the docker-compose PROJECT configuration file."
(f-join project pythonic-docker-compose-filename))
(defunpythonic-read-docker-compose-file (filename)
"Read docker-compose project configuration FILENAME."
(let ((json-key-type 'string)
(json-array-type 'list))
(json-read-from-string
(with-output-to-string
(with-current-buffer
standard-output
(call-process"python"niltnil"-c" pythonic-read-docker-compose-file-code filename))))))
(defunpythonic-get-docker-compose-volumes (struct)
"Get docker volume list from the compose STRUCT."
(let (volumes)
(dolist (service (cdr (assoc"services" struct)))
(dolist (volume (cdr (assoc"volumes" service)))
(when (s-starts-with-p "." volume)
(push (cons (car service) (s-split ":" volume)) volumes))))
volumes))
(defunpythonic-get-docker-compose-container (filenameservice)
"Get container name from the FILENAME project for SERVICE name."
(s-trim
;; FIXME:
;;
;; It is possible to have many running containers for given
;; service.
;;
;; Use container name, not the hash. This way we can survive
;; service recreation.
(with-output-to-string
(with-current-buffer
standard-output
(call-process"docker-compose"niltnil
"--file" filename "ps""--quiet" service)))))
(defunpythonic-set-docker-compose-alias ()
"Build alias string for current docker-compose project."
(hack-dir-local-variables-non-file-buffer)
(unless
(or (tramp-tramp-file-p default-directory)
(pythonic-has-alias-p default-directory))
(let ((project (pythonic-get-docker-compose-project)))
(when project
(let* ((filename (pythonic-get-docker-compose-filename project))
(struct (pythonic-read-docker-compose-file filename))
(volumes (pythonic-get-docker-compose-volumes struct))
;; FIXME: Each service can have many volumes. It
;; should appears once in the selection and all volumes
;; should be added to the alias list.
(volume (if (<1 (length volumes))
(assoc
(if pythonic-docker-compose-service-name
pythonic-docker-compose-service-name
(completing-read"Service: " (mapcar#'car volumes) nilt))
volumes)
(car volumes)))
(service (car volume))
(sub-project (f-join project (cadr volume)))
(mount (caddr volume))
(container (pythonic-get-docker-compose-container filename service))
;; FIXME: Get actual user for the connection string.
(connection (format"/docker:root@%s:%s" container mount))
(alias (list sub-project connection)))
(unless (s-blank-p container)
(push alias pythonic-directory-aliases))
alias)))))
;;; Processes.
(defvarpythonic-interpreter python-shell-interpreter
"Interpreter to use for pythonic process calls.")
(cl-defunpythonic-call-process (&keyfilebufferdisplayargscwd)
"Pythonic wrapper around `call-process'.
FILE is the input file. BUFFER is the output destination. DISPLAY
specifies to redisplay BUFFER on new output. ARGS is the list of
arguments passed to `call-process'. CWD will be working directory
for running process."
(let ((default-directory (pythonic-aliased-path (or cwd default-directory))))
(python-shell-with-environment
(apply#'process-file pythonic-interpreter file buffer display args))))
(cl-defunpythonic-start-process (&keyprocessbufferargscwdfiltersentinel (query-on-exit t))
"Pythonic wrapper around `start-process'.
PROCESS is a name of the created process. BUFFER is a output
destination. ARGS are the list of args passed to
`start-process'. CWD will be working directory for running
process. FILTER must be a symbol of process filter function if
necessary. SENTINEL must be a symbol of process sentinel
function if necessary. QUERY-ON-EXIT will be corresponding
process flag."
(let ((default-directory (pythonic-aliased-path (or cwd default-directory))))
(python-shell-with-environment
(let ((process (apply#'start-file-process process buffer pythonic-interpreter args)))
(when filter
(set-process-filter process filter))
(when sentinel
(set-process-sentinel process sentinel))
(set-process-query-on-exit-flag process query-on-exit)
process))))
;;; Commands.
;;;###autoload
(defunpythonic-activate (virtualenv)
"Activate python VIRTUALENV."
(interactive"DEnv: ")
(setq python-shell-virtualenv-root
(and virtualenv (pythonic-python-readable-file-name virtualenv))))
;;;###autoload
(defunpythonic-deactivate ()
"Deactivate python virtual environment."
(interactive)
(setq python-shell-virtualenv-root nil))
(provide'pythonic)
;;; pythonic.el ends here