forked from remvee/android-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
android-mode.el
452 lines (399 loc) · 18.2 KB
/
android-mode.el
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
;;; android-mode.el --- Minor mode for Android application development
;; Copyright (C) 2009-2013 R.W van 't Veer
;; Author: R.W. van 't Veer
;; Created: 20 Feb 2009
;; Keywords: tools processes
;; Version: 0.2.4
;; URL: https://github.com/remvee/android-mode
;; Contributors:
;; Bert Hartmann
;; Cristian Esquivias
;; Donghyun Cho
;; Jürgen Hötzel
;; Karsten Gebbert
;; Habibullah Pagarkar
;; Hiroo Matsumoto
;; 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; Provides support for running Android SDK subprocesses like the
;; emulator, logcat, ddms and ant. When loaded `dired-mode' and
;; `find-file' hooks are added to automatically enable `android-mode'
;; when opening a file or directory in an android project.
;;; Code:
(eval-when-compile (require 'cl-lib))
(defgroup android-mode nil
"A minor mode for Android application development"
:prefix "android-mode-"
:group 'applications)
(defcustom android-mode-sdk-dir "~/Android/sdk"
"Set to the directory containing the Android SDK."
:type 'string
:group 'android-mode)
(defcustom android-mode-sdk-tool-subdirs '("tools" "platform-tools")
"List of subdirectors in the SDK containing commandline tools."
:type '(repeat string)
:group 'android-mode)
(defcustom android-mode-sdk-tool-extensions '("" ".bat" ".exe")
"List of possible extensions for commandline tools."
:type '(repeat string)
:group 'android-mode)
(defcustom android-mode-key-prefix "\C-c \C-c"
"Minor mode keys prefix."
:type 'string
:group 'android-mode)
(defcustom android-mode-avd ""
"Default AVD to use."
:type 'string
:group 'android-mode)
(defface android-mode-verbose-face '((t (:foreground "DodgerBlue")))
"Font Lock face used to highlight VERBOSE log records."
:group 'android-mode)
(defface android-mode-debug-face '((t (:foreground "ForestGreen")))
"Font Lock face used to highlight DEBUG log records."
:group 'android-mode)
(defface android-mode-info-face '((t (:foreground "Gray45")))
"Font Lock face used to highlight INFO log records."
:group 'android-mode)
(defface android-mode-warning-face '((t (:foreground "Red")))
"Font Lock face used to highlight WARN log records."
:group 'android-mode)
(defface android-mode-error-face '((t (:foreground "Red" :bold t)))
"Font Lock face used to highlight ERROR log records."
:group 'android-mode)
(defvar android-mode-log-face-alist
'(("V" . android-mode-verbose-face)
("D" . android-mode-debug-face)
("I" . android-mode-info-face)
("W" . android-mode-warning-face)
("E" . android-mode-error-face)))
(defun android-root ()
"Look for AndroidManifest.xml file to find project root of android application."
(locate-dominating-file default-directory "AndroidManifest.xml"))
(defmacro android-in-root (body)
"Execute BODY form with project root directory as
``default-directory''. The form is not executed when no project
root directory can be found."
`(let ((android-root-dir (android-root)))
(when android-root-dir
(let ((default-directory android-root-dir))
,body))))
(defun android-local-sdk-dir ()
"Try to find android sdk directory through the local.properties
file in the android project base directory. If local.properties
doesn't exist, it does not contain the sdk-dir property or the
referred directory does not exist, return `android-mode-sdk-dir'
variable."
(or
(android-in-root
(let ((local-properties "local.properties"))
(and (file-exists-p local-properties)
(with-temp-buffer
(insert-file-contents local-properties)
(goto-char (point-min))
(and (re-search-forward "^sdk\.dir=\\(.*\\)" nil t)
(let ((sdk-dir (match-string 1)))
(and (file-exists-p sdk-dir) sdk-dir)))))))
android-mode-sdk-dir))
(defun android-tool-path (name)
"Find path to SDK tool. Calls `android-local-sdk-dir' to try to find locally
defined sdk directory. Defaults to `android-mode-sdk-dir'."
(or (cl-find-if #'file-exists-p
(apply #'append
(mapcar (lambda (path)
(mapcar (lambda (ext)
(mapconcat 'identity
`(,(android-local-sdk-dir)
,path ,(concat name ext))
"/"))
android-mode-sdk-tool-extensions))
android-mode-sdk-tool-subdirs)))
(error "can't find SDK tool: %s" name)))
(defvar android-exclusive-processes ())
(defun android-start-exclusive-command (name command &rest args)
(and (not (cl-find (intern name) android-exclusive-processes))
(set-process-sentinel (apply 'start-process-shell-command name name command args)
(lambda (proc msg)
(when (memq (process-status proc) '(exit signal))
(setq android-exclusive-processes
(delete (intern (process-name proc))
android-exclusive-processes)))))
(setq android-exclusive-processes (cons (intern name)
android-exclusive-processes))))
(defun android-create-project (path package activity)
"Create new Android project with SDK app"
(interactive "FPath: \nMPackage: \nMActivity: ")
(let* ((target (completing-read "Target: " (android-list-targets)))
(expanded-path (expand-file-name path))
(command (format "%s create project --path %S --package %s --activity %s --target %S"
(android-tool-path "android")
expanded-path package activity target))
(output (shell-command-to-string command)))
(if (string-equal "Error" (substring output 0 5))
(error output)
(find-file expanded-path))))
(defun android-list-targets ()
"List Android SDKs installed on local machine."
(let* ((command (concat (android-tool-path "android") " list target"))
(output (shell-command-to-string command))
(result nil)
(offset 0))
(while (string-match "id: [[:digit:]]+ or \"\\(.*\\)\"" output offset)
(setq result (cons (match-string 1 output) result))
(setq offset (match-end 0)))
(if result
(reverse result)
(error "no Android Targets found"))))
(defun android-list-avd ()
"List of Android Virtual Devices installed on local machine."
(let* ((command (concat (android-tool-path "android") " list avd"))
(output (shell-command-to-string command))
(result nil)
(offset 0))
(while (string-match "Name: \\(.*\\)" output offset)
(setq result (cons (match-string 1 output) result))
(setq offset (match-end 0)))
(if result
(reverse result)
(error "no Android Virtual Devices found"))))
(defun android-start-emulator ()
"Launch Android emulator."
(interactive)
(let ((avd (or (and (not (string= android-mode-avd "")) android-mode-avd)
(completing-read "Android Virtual Device: " (android-list-avd)))))
(unless (android-start-exclusive-command (concat "*android-emulator-" avd "*")
(concat (android-tool-path "emulator") " -avd " avd))
(message (concat "emulator " avd " already running")))))
(defun android-start-ddms ()
"Launch Dalvik Debug Monitor Service tool."
(interactive)
(unless (android-start-exclusive-command "*android-ddms*" (android-tool-path "ddms"))
(message "ddms already running")))
(defcustom android-logcat-buffer "*android-logcat*"
"Name for the buffer where logcat output goes."
:type 'string
:group 'android-mode)
(defun android-logcat-find-file ()
(interactive)
(let ((filename (get-text-property (point) 'filename))
(linenr (get-text-property (point) 'linenr)))
(when filename
(find-file (concat (android-root) "/src/" filename))
(goto-char (point-min))
(forward-line (1- linenr)))))
(defun android-logcat-find-file-mouse (event)
(interactive "e")
(let (window pos file)
(save-excursion
(setq window (posn-window (event-end event))
pos (posn-point (event-end event)))
(set-buffer (window-buffer window))
(goto-char pos)
(android-logcat-find-file))))
(defvar android-logcat-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "RET") 'android-logcat-find-file)
(define-key map [mouse-2] 'android-logcat-find-file-mouse)
(define-key map (kbd "n") 'next-logical-line)
(define-key map (kbd "p") 'previous-logical-line)
(define-key map (kbd "q") 'delete-window)
map))
(defun android-logcat-prepare-msg (msg)
(if (string-match "\\bat \\(.+\\)\\.\\([^.]+\\)\\.\\([^.]+\\)(\\(.+\\):\\([0-9]+\\))" msg)
(let* ((package (match-string 1 msg))
(class (match-string 2 msg))
(method (match-string 3 msg))
(filename (concat (replace-regexp-in-string "\\." "/" package) "/" (match-string 4 msg)))
(linenr (match-string 5 msg)))
(if (file-exists-p (concat (android-root) "/src/" filename))
(propertize msg
'face 'underline
'mouse-face 'highlight
'filename filename
'linenr (string-to-number linenr)
'follow-link t)
msg))
msg))
(defvar android-logcat-pending-output "")
(defun android-logcat-process-filter (process output)
"Process filter for displaying logcat output."
(with-current-buffer android-logcat-buffer
(let ((following (= (point-max) (point)))
(buffer-read-only nil)
(pos 0)
(output (concat android-logcat-pending-output
(replace-regexp-in-string "" "" output))))
(save-excursion
(while (string-match "\n" output pos)
(let ((line (substring output pos (match-beginning 0))))
(setq pos (match-end 0))
(goto-char (point-max))
(if (string-match "^\\(.\\)/\\(.*\\)( *\\([0-9]+\\)): \\(.*\\)$" line)
(let* ((level (match-string 1 line))
(level-face (cdr (or (assoc level android-mode-log-face-alist)
(assoc "I" android-mode-log-face-alist))))
(tag (replace-regexp-in-string " *$" "" (match-string 2 line)))
(pid (match-string 3 line))
(msg (match-string 4 line)))
(insert (propertize level
'font-lock-face level-face))
(tab-to-tab-stop)
(insert (propertize tag
'font-lock-face 'font-lock-function-name-face))
(insert (propertize (concat "(" pid ")")
'font-lock-face 'font-lock-constant-face))
(tab-to-tab-stop)
(insert (android-logcat-prepare-msg (propertize msg 'font-lock-face level-face))))
(insert (propertize line
'font-lock-face 'font-lock-warning-face)))
(insert "\n")))
(setq android-logcat-pending-output (substring output pos)))
(when following (goto-char (point-max))))))
(defun android-logcat ()
"Switch to ADB logcat buffer, create it when it doesn't exists yet."
(interactive)
(when (android-start-exclusive-command android-logcat-buffer
(android-tool-path "adb")
"logcat")
(set-process-filter (get-buffer-process android-logcat-buffer)
#'android-logcat-process-filter)
(with-current-buffer android-logcat-buffer
(setq buffer-read-only t)
(set (make-local-variable 'tab-stop-list) '(2 30))
(use-local-map android-logcat-map)
(font-lock-mode t)
(android-mode t)))
(switch-to-buffer android-logcat-buffer)
(goto-char (point-max)))
(defun android-current-buffer-class-name ()
"Try to determine the full qualified class name defined in the
current buffer."
(save-excursion
(when (and buffer-file-name
(string-match "\\.java$" buffer-file-name))
(goto-char (point-min))
(let* ((case-fold-search nil)
(package (and (search-forward-regexp "^[ \t]*package[ \t]+\\([a-z0-9_.]+\\)" nil t)
(match-string-no-properties 1)))
(class (and (search-forward-regexp "\\bpublic[ \t]+class[ \t]+\\([A-Za-z0-9]+\\)" nil t)
(match-string-no-properties 1))))
(cond ((and package class) (concat package "." class))
(class class))))))
(defun android-project-package ()
"Return the package of the Android project"
(android-in-root
(let ((root (car (xml-parse-file "AndroidManifest.xml"))))
(xml-get-attribute root 'package))))
(defun android-project-main-activities (&optional category)
"Return list of main activity class names as found in the
manifest. The names returned are fully qualified class names.
Names starting with a period or a capital letter are prepended by
the project package name.
Filter on CATEGORY intent when supplied."
(android-in-root
(cl-flet* ((first-xml-child (parent name)
(car (xml-get-children parent name)))
(action-main-p (activity)
(let ((el (first-xml-child (first-xml-child activity
'intent-filter)
'action)))
(equal "android.intent.action.MAIN"
(xml-get-attribute el 'android:name))))
(category-p (activity)
(let ((el (first-xml-child (first-xml-child activity
'intent-filter)
'category)))
(equal (concat "android.intent.category." category)
(xml-get-attribute el 'android:name)))))
(let* ((root (car (xml-parse-file "AndroidManifest.xml")))
(package (xml-get-attribute root 'package))
(application (first-xml-child root 'application)))
(mapcar (lambda (activity)
(let ((case-fold-search nil)
(name (xml-get-attribute activity 'android:name)))
(cond ((string-match "^\\." name) (concat package name))
((string-match "^[A-Z]" name) (concat package "." name))
(t name))))
(cl-member-if (lambda (activity)
(and (action-main-p activity)
(or (not category) (category-p activity))))
(xml-get-children application 'activity)))))))
(defun android-start-app ()
"Start activity in the running emulator. When the current
buffer holds an activity class specified in the manifest as a
main action intent is will be run. Otherwise start the first
activity in the 'launcher' category."
(interactive)
(let* ((package (android-project-package))
(current (android-current-buffer-class-name))
(activity (if (member current
(android-project-main-activities))
current
(car (android-project-main-activities "LAUNCHER"))))
(command (concat (android-tool-path "adb")
" shell am start -n "
(concat package "/" activity))))
(unless activity (error "no main activity found in manifest"))
(message "Starting activity: %s" activity)
(let ((output (shell-command-to-string command)))
(when (string-match "^Error: " output)
(error (concat command "\n" output))))))
(defun android-ant (task)
"Run ant TASK in the project root directory."
(interactive "sTask: ")
(android-in-root
(compile (concat "ant -e " task))))
(defmacro android-defun-ant-task (task)
`(defun ,(intern (concat "android-ant-"
(replace-regexp-in-string "[[:space:]]" "-" task)))
()
,(concat "Run 'ant " task "' in the project root directory.")
(interactive)
(android-ant ,task)))
(android-defun-ant-task "clean")
(android-defun-ant-task "test")
(android-defun-ant-task "debug")
(android-defun-ant-task "installd")
(android-defun-ant-task "uninstall")
(defconst android-mode-keys
'(("d" . android-start-ddms)
("e" . android-start-emulator)
("l" . android-logcat)
("C" . android-ant-clean)
("t" . android-ant-test)
("c" . android-ant-debug)
("i" . android-ant-installd)
("r" . android-ant-reinstall)
("u" . android-ant-uninstall)
("a" . android-start-app)))
(defvar android-mode-map (make-sparse-keymap))
(add-hook 'android-mode-hook
(lambda ()
(dolist (spec android-mode-keys)
(define-key
android-mode-map
(read-kbd-macro (concat android-mode-key-prefix " " (car spec)))
(cdr spec)))))
;;;###autoload
(define-minor-mode android-mode
"Android application development minor mode."
nil
" Android"
android-mode-map)
(add-hook 'dired-mode-hook (lambda () (when (android-root) (android-mode t))))
(add-hook 'find-file-hook (lambda () (when (android-root) (android-mode t))))
(provide 'android-mode)
;;; android-mode.el ends here