-
Notifications
You must be signed in to change notification settings - Fork 102
/
eclim-java.el
704 lines (622 loc) · 30.7 KB
/
eclim-java.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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
;; eclim-java.el --- an interface to the Eclipse IDE.
;;
;; Copyright (C) 2009 Yves Senn <yves senn * gmx ch>
;;
;; 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/>.
;;
;;; Contributors
;;
;; - Tassilo Horn <tassilo@member.fsf.org>
;;
;;; Conventions
;;
;; Conventions used in this file: Name internal variables and functions
;; "eclim--<descriptive-name>", and name eclim command invocations
;; "eclim/command-name", like eclim/project-list.
;;* Eclim Java
(require 'json)
(require 'dash)
(define-key eclim-mode-map (kbd "C-c C-e s") 'eclim-java-method-signature-at-point)
(define-key eclim-mode-map (kbd "C-c C-e f d") 'eclim-java-find-declaration)
(define-key eclim-mode-map (kbd "C-c C-e f r") 'eclim-java-find-references)
(define-key eclim-mode-map (kbd "C-c C-e f t") 'eclim-java-find-type)
(define-key eclim-mode-map (kbd "C-c C-e f f") 'eclim-java-find-generic)
(define-key eclim-mode-map (kbd "C-c C-e r") 'eclim-java-refactor-rename-symbol-at-point)
(define-key eclim-mode-map (kbd "C-c C-e i") 'eclim-java-import-organize)
(define-key eclim-mode-map (kbd "C-c C-e h") 'eclim-java-hierarchy)
(define-key eclim-mode-map (kbd "C-c C-e z") 'eclim-java-implement)
(define-key eclim-mode-map (kbd "C-c C-e d") 'eclim-java-doc-comment)
(define-key eclim-mode-map (kbd "C-c C-e f s") 'eclim-java-format)
(define-key eclim-mode-map (kbd "C-c C-e g") 'eclim-java-generate-getter-and-setter)
(define-key eclim-mode-map (kbd "C-c C-e t") 'eclim-run-junit)
(defvar eclim-java-show-documentation-map
(let ((map (make-keymap)))
(suppress-keymap map)
(define-key map (kbd "<tab>") 'forward-button)
(define-key map (kbd "S-<tab>") 'backward-button)
(define-key map (kbd "q") 'eclim-quit-window)
map))
(defgroup eclim-java nil
"Java: editing, browsing, refactoring"
:group 'eclim)
(defcustom eclim-java-major-modes '(java-mode jde-mode)
"This variable contains a list of major modes to edit java
files. There are certain operations, that eclim will only perform when
the current buffer is contained within this list"
:group 'eclim-java
:type 'list)
;; Could this value be taken from Eclipse somehow?"
(defcustom eclim-java-documentation-root nil
"Root directory of Java HTML documentation.
If Android is used then Eclipse may refer standard Java elements from the copy of
Java documentation under Android docs, so don't forget to set
`eclim-java-android-documentation-root' too in that case."
:group 'eclim-java
:type 'directory)
;; Could this value be taken from Eclipse somehow?"
(defcustom eclim-java-android-documentation-root nil
"Root directory of Android HTML documentation."
:group 'eclim-java
:type 'directory)
(defvar eclim--java-search-types '("all"
"annotation"
"class"
"classOrEnum"
"classOrInterface"
"constructor"
"enum"
"field"
"interface"
"method"
"package"
"type"))
(defvar eclim--java-search-scopes '("all"
"project"
"type"))
(defvar eclim--java-search-contexts '("all"
"declarations"
"implementors"
"references"))
(defvar eclim--is-completing nil)
(defun eclim/groovy-src-update (&optional save-others)
"If `eclim-auto-save' is non-nil, save the current java
buffer. In addition, if `save-others' is non-nil, also save any
other unsaved buffer. Finally, tell eclim to update its java
sources."
(when eclim-auto-save
(when (buffer-modified-p) (save-buffer)) ;; auto-save current buffer, prompt on saving others
(when save-others (save-some-buffers nil (lambda () (string-match "\\.groovy$" (buffer-file-name)))))))
(defun eclim/java-src-update (&optional save-others)
"If `eclim-auto-save' is non-nil, save the current java
buffer. In addition, if `save-others' is non-nil, also save any
other unsaved buffer. Finally, tell eclim to update its java
sources."
(when eclim-auto-save
(when (buffer-modified-p) (save-buffer)) ;; auto-save current buffer, prompt on saving others
(when save-others (save-some-buffers nil (lambda () (string-match "\\.java$" (buffer-file-name)))))))
(defadvice delete-file (around eclim--delete-file activate)
"Advice the `delete-file' function to trigger a source update
in eclim when appropriate."
(let ((pr nil)
(fn nil))
(ignore-errors
(and (setq pr (eclim-project-name filename))
(setq fn (file-relative-name filename (eclim--project-dir pr)))))
ad-do-it
(when (and pr fn)
(ignore-errors (apply 'eclim--call-process (list "java_src_update" "-p" pr "-f" fn))))))
(defun eclim--java-parser-read (str)
(first
(read-from-string
(format "(%s)"
(replace-regexp-in-string
"[<>(),?]"
(lambda (m) (assoc-default m '(("<" . "((") (">" . "))")
("(" . "((") (")" ."))")
("," . ")(")
("?" . "\\\\?"))))
str)))))
(defun eclim--java-parse-method-signature (signature)
(cl-flet ((parser3/parse-arg (arg)
(let ((arg-rev (reverse arg)))
(cond ((null arg) nil)
((= (length arg) 1) (list (list :type (first arg))))
((listp (first arg-rev)) (list (cons :type arg)))
(t (list (cons :name (first arg-rev)) (cons :type (reverse (rest arg-rev)))))))))
(let ((ast (reverse (eclim--java-parser-read signature))))
(list (cons :arglist (mapcar #'parser3/parse-arg (first ast)))
(cons :name (second ast))
(cons :return (reverse (rest (rest ast))))))))
(defun eclim--java-current-type-name (&optional type)
"Searches backward in the current buffer until a type
declaration has been found. TYPE may be either 'class',
'interface', 'enum' or nil, meaning 'match all of the above'."
(save-excursion
(if (re-search-backward
(concat (or type "\\(class\\|interface\\|enum\\)") "\\s-+\\([^<{\s-]+\\)") nil t)
(match-string-no-properties 2)
"")))
(defun eclim--java-current-class-name ()
"Searches backward in the current buffer until a class declaration
has been found."
(eclim--java-current-type-name "\\(class\\)"))
(defun eclim/java-classpath (project)
(eclim--check-project project)
(eclim--call-process "java_classpath" "-p" project))
(defun eclim/java-classpath-variables ()
;; TODO: fix trailing whitespaces
(mapcar (lambda (line)
(split-string line "-")) (eclim--call-process "java_classpath_variables")))
(defun eclim/java-classpath-variable-create (name path)
(eclim--call-process "java_classpath_variable_create" "-n" name "-p" path))
(defun eclim/java-classpath-variable-delete (name)
(eclim--call-process "java_classpath_variable_create" "-n" name))
(defun eclim-java-doc-comment ()
"Inserts or updates a javadoc comment for the element at point."
(interactive)
(eclim/execute-command "javadoc_comment" "-p" "-f" "-o"))
(defun eclim-run-java-doc ()
"Run Javadoc on current or all projects."
(interactive)
(let ((project-list (mapcar 'third (eclim/project-list))))
(if (y-or-n-p "Run Javadoc for all projects?")
(dolist (project project-list)
(eclim/execute-command "javadoc" ("-p" project)))
(eclim/execute-command "javadoc" "-p"))
(message "Javadoc creation finished.")))
(defun eclim-java-format ()
"Format the source code of the current java source file."
(interactive)
(eclim/execute-command "java_format" "-p" "-f" ("-h" 0) ("-t" (1- (point-max))) "-e"))
(defun eclim-java-generate-getter-and-setter (project file offset encoding)
"Generates getter and setter methods for the symbol at point."
(interactive (list (eclim-project-name)
(eclim--project-current-file)
(eclim--byte-offset)
(eclim--current-encoding)))
(eclim--call-process "java_bean_properties"
"-p" project
"-f" file
"-o" (number-to-string offset)
"-e" encoding
"-r" (cdr (eclim--java-identifier-at-point t))
"-t" "gettersetter")
(revert-buffer t t t))
(defun eclim-java-constructor ()
(interactive)
(eclim/execute-command "java_constructor" "-p" "-f" "-o"))
(defun eclim/java-call-hierarchy (project file offset length encoding)
(eclim--call-process "java_callhierarchy"
"-p" project
"-f" file
"-o" (number-to-string offset)
"-l" (number-to-string length)
"-e" encoding))
(defun eclim/java-hierarchy (project file offset encoding)
(eclim--call-process "java_hierarchy"
"-p" project
"-f" file
"-o" (number-to-string offset)
"-e" encoding))
(defun eclim-java-refactor-rename-symbol-at-point ()
"Rename the java symbol at point."
(interactive)
(let* ((i (eclim--java-identifier-at-point t))
(n (read-string (concat "Rename " (cdr i) " to: ") (cdr i))))
(eclim/with-results res ("java_refactor_rename" "-p" "-e" "-f" ("-n" n)
("-o" (car i)) ("-l" (length (cdr i))))
(if (stringp res) (error res))
(loop for (from to) in (mapcar (lambda (x) (list (assoc-default 'from x) (assoc-default 'to x))) res)
do (when (and from to)
(kill-buffer (find-buffer-visiting from))
(find-file to)))
(save-excursion
(loop for file in (mapcar (lambda (x) (assoc-default 'file x)) res)
do (when file
(let ((buf (get-file-buffer (file-name-nondirectory file))))
(when buf
(switch-to-buffer buf)
(revert-buffer t t t))))))
(message "Done"))))
(defun eclim-java-call-hierarchy (project file encoding)
(interactive (list (eclim-project-name)
(eclim--project-current-file)
(eclim--current-encoding)))
(let ((boundary "\\([<>()\\[\\.\s\t\n!=,;]\\|]\\)"))
(save-excursion
(if (re-search-backward boundary nil t)
(forward-char))
(let ((top-node (eclim/java-call-hierarchy project file (eclim--byte-offset)
(length (cdr (eclim--java-identifier-at-point t))) encoding)))
(pop-to-buffer "*eclim: call hierarchy*" t)
(special-mode)
(let ((buffer-read-only nil))
(erase-buffer)
(eclim--java-insert-call-hierarchy-node
project
top-node
0))))))
(defun eclim--java-insert-call-hierarchy-node (project node level)
(let ((declaration (cdr (assoc 'name node))))
(insert (format (concat "%-"(number-to-string (* level 2)) "s=> ") ""))
(lexical-let ((position (cdr (assoc 'position node))))
(if position
(insert-text-button declaration
'follow-link t
'help-echo declaration
'action #'(lambda (&rest ignore)
(eclim--visit-declaration position)))
(insert declaration)))
(newline)
(loop for caller across (cdr (assoc 'callers node))
do (eclim--java-insert-call-hierarchy-node project caller (1+ level)))))
(defun eclim-java-hierarchy (project file offset encoding)
(interactive (list (eclim-project-name)
(eclim--project-current-file)
(eclim--byte-offset)
(eclim--current-encoding)))
(let ((top-node (eclim/java-hierarchy project file offset encoding)))
(pop-to-buffer "*eclim: hierarchy*" t)
(special-mode)
(let ((buffer-read-only nil))
(erase-buffer)
(eclim--java-insert-hierarchy-node
project
top-node
0))))
(defun eclim--java-insert-file-path-for-hierarchy-node (node)
(eclim/with-results hits ("java_search" ("-p" (cdr (assoc 'qualified node))) ("-t" "type") ("-x" "declarations") ("-s" "workspace"))
(assoc-default 'filename (elt hits 0))))
(defun eclim--java-insert-hierarchy-node (project node level)
(let ((declaration (cdr (assoc 'name node)))
(qualified-name (cdr (assoc 'qualified node))))
(insert (format (concat "%-"(number-to-string (* level 2)) "s=> ") ""))
(lexical-let ((file-path (eclim--java-insert-file-path-for-hierarchy-node node)))
(if file-path
(insert-text-button declaration
'follow-link t
'help-echo qualified-name
'action (lambda (&rest ignore)
(eclim--find-file file-path)))
(insert declaration))))
(newline)
(let ((children (cdr (assoc 'children node))))
(loop for child across children do
(eclim--java-insert-hierarchy-node project child (+ level 1)))))
(defun eclim-java-find-declaration ()
"Find and display the declaration of the java identifier at point."
(interactive)
(let ((i (eclim--java-identifier-at-point t)))
(eclim/with-results hits ("java_search" "-n" "-f" ("-o" (car i)) ("-l" (length (cdr i))) ("-x" "declaration"))
(eclim--find-display-results (cdr i) hits t))))
(defun eclim-c-find-declaration ()
"Find and display the declaration of the c identifier at point."
(interactive)
(let ((i (eclim--java-identifier-at-point t)))
(eclim/with-results hits ("c_search" "-n" "-f" ("-o" (car i)) ("-l" (length (cdr i))))
(eclim--find-display-results (cdr i) hits t))))
(defun eclim-java-find-references ()
"Find and display references for the java identifier at point."
(interactive)
(let ((i (eclim--java-identifier-at-point t)))
(eclim/with-results hits ("java_search" "-n" "-f" ("-o" (car i)) ("-l" (length (cdr i))) ("-x" "references"))
(eclim--find-display-results (cdr i) hits))))
(defun eclim-java-find-type (type-name &optional case-insensitive)
"Searches the project for a given class. The TYPE-NAME is the
pattern, which will be used for the search. If invoked with the
universal argument the search will be made CASE-INSENSITIVE."
(interactive (list (read-string "Name: " (let ((case-fold-search nil)
(current-symbol (symbol-name (symbol-at-point))))
(if (string-match-p "^[A-Z]" current-symbol)
current-symbol
(eclim--java-current-type-name))))
"P"))
(eclim-java-find-generic "workspace" "declarations" "type" type-name case-insensitive t))
(defun eclim-java-find-generic (scope context type pattern &optional case-insensitive open-single-file)
"Searches within SCOPE (all/project/type) for a
TYPE (all/annotation/class/classOrEnum/classOrInterface/constructor/enum/field/interface/method/package/type)
matching the given
CONTEXT (all/declarations/implementors/references) and
PATTERN. If invoked with the universal argument the search will
be made CASE-INSENSITIVE."
(interactive (list (eclim--completing-read "Scope: " eclim--java-search-scopes)
(eclim--completing-read "Context: " eclim--java-search-contexts)
(eclim--completing-read "Type: " eclim--java-search-types)
(read-string "Pattern: ")
"P"))
(eclim/with-results hits ("java_search" ("-p" pattern) ("-t" type) ("-x" context) ("-s" scope) (if case-insensitive '("-i" "")))
(eclim--find-display-results pattern hits open-single-file)))
(defun eclim--java-identifier-at-point (&optional full position)
"Returns a cons cell (BEG . IDENTIFIER) where BEG is the start
buffer byte offset of the token/identifier at point, and
IDENTIFIER is the string from BEG to (point). If argument FULL is
non-nill, IDENTIFIER will contain the whole identifier, not just
the start. If argument POSITION is non-nil, BEG will contain the
position of the identifier instead of the byte offset (which only
matters for buffers containing non-ASCII characters)."
(let ((boundary "\\([<>()\\[\\.\s\t\n!=,;]\\|]\\)"))
;; TODO: make this work for dos buffers
(save-excursion
(if (and full (re-search-forward boundary nil t))
(backward-char))
(let ((end (point))
(start (progn
(if (re-search-backward boundary nil t) (forward-char))
(point))))
(cons (if position (point) (eclim--byte-offset))
(buffer-substring-no-properties start end))))))
(defun eclim--java-package-components (package)
"Returns the components of a Java package statement."
(split-string package "\\."))
(defun eclim--java-current-package ()
"Returns the package for the class in the current buffer."
(save-excursion
(goto-char 0)
(if (re-search-forward "package \\(.*?\\);" (point-max) t)
(match-string-no-properties 1))))
(defun eclim-soft-revert-imports (ignore-auto noconfirm)
"Can be used as a REVERT-BUFFER-FUNCTION to only replace the
imports section of a java source file. This will preserve the
undo history."
(interactive)
(cl-flet ((cut-imports ()
(beginning-of-buffer)
(if (re-search-forward "^import" nil t)
(progn
(beginning-of-line)
(let ((beg (point)))
(end-of-buffer)
(re-search-backward "^import")
(end-of-line)
(let ((imports (buffer-substring-no-properties beg (point))))
(delete-region beg (point))
imports)))
(progn
(forward-line 1)
(delete-blank-lines)
(insert "\n\n\n")
(forward-line -2)))))
(save-excursion
(clear-visited-file-modtime)
(cut-imports)
(widen)
(insert
(let ((fname (buffer-file-name)))
(with-temp-buffer
(insert-file-contents fname)
(cut-imports))))
(not-modified)
(set-visited-file-modtime))))
(defun eclim-java-import (type)
"Adds an import statement for the given type, if one does not
exist already."
(save-excursion
(beginning-of-buffer)
(let ((revert-buffer-function 'eclim-soft-revert-imports))
(when (not (re-search-forward (format "^import %s;" type) nil t))
(eclim/execute-command "java_import" "-p" "-f" "-o" "-e" ("-t" type))
(eclim--problems-update-maybe)))))
(defun eclim-java-import-organize (&optional types)
"Checks the current file for missing imports, removes unused imports and
sorts import statements. "
(interactive)
(let ((revert-buffer-function 'eclim-soft-revert-imports))
(eclim/with-results res ("java_import_organize" "-p" "-f" "-o" "-e"
(when types (list "-t" (reduce (lambda (a b) (concat a "," b)) types))))
(eclim--problems-update-maybe)
(when (vectorp res)
(save-excursion
(eclim-java-import-organize
(mapcar (lambda (imports) (eclim--completing-read "Import: " (append imports '()))) res)))))))
(defun format-type (type)
(cond ((null type) nil)
((listp (first type))
(append (list "<") (rest (mapcan (lambda (type) (append (list ", ") (format-type type))) (first type))) (list ">")
(format-type (rest type))))
(t (cons (let ((type-name (symbol-name (first type))))
(when (string-match "\\(.*\\.\\)?\\(.*\\)" type-name)
(match-string 2 type-name)))
(format-type (rest type))))))
(defun eclim-java-implement (&optional name)
"Lets the user select from a list of methods to
implemnt/override, then inserts a skeleton for the chosen
method."
(interactive)
(eclim/with-results response ("java_impl" "-p" "-f" "-o")
(cl-flet ((join (glue items)
(cond ((null items) "")
((= 1 (length items)) (format "%s" (first items)))
(t (reduce (lambda (a b) (format "%s%s%s" a glue b)) items))))
(format-type (type)
(cond ((null type) nil)
((listp (first type))
(append (list "<") (rest (mapcan (lambda (type) (append (list ", ") (format-type type))) (first type))) (list ">")
(format-type (rest type))))
(t (cons (let ((type-name (symbol-name (first type))))
(when (string-match "\\(.*\\.\\)?\\(.*\\)" type-name)
(let ((package (match-string 1 type-name))
(class (match-string 2 type-name)))
(eclim-java-import (concat package class))
class)))
(format-type (rest type)))))))
(let* ((methods (remove-if-not (lambda (m) (or (null name)
(string-match name m)))
(mapcar (lambda (x) (replace-regexp-in-string "[ \n\t]+" " " x))
(apply 'append
(mapcar (lambda (x) (append (assoc-default 'methods x) nil))
(assoc-default 'superTypes response))))))
(method (if (= 1 (length methods)) (first methods)
(eclim--completing-read "Signature: " methods)))
(sig (eclim--java-parse-method-signature method))
(ret (assoc-default :return sig)))
(yas/expand-snippet (format "@Override\n%s %s(%s) {$0}"
(apply #'concat
(join " " (remove-if-not (lambda (m) (find m '(public protected private void))) (subseq ret 0 (1- (length ret)))))
" "
(format-type (remove-if (lambda (m) (find m '(abstract public protected private ))) ret)))
(assoc-default :name sig)
(join ", " (loop for arg in (remove-if #'null (assoc-default :arglist sig))
for i from 0
collect (format "%s ${arg%s}" (apply #'concat (format-type (assoc-default :type arg))) i)))))))))
(defun eclim-package-and-class ()
(let ((package-name (eclim--java-current-package))
(class-name (eclim--java-current-class-name)))
(if package-name (concat package-name "." class-name)
class-name)))
(defun eclim-run-class ()
"Run the current class."
(interactive)
(if (not (string= major-mode "java-mode"))
(message "Sorry cannot run current buffer.")
(compile (concat eclim-executable " -command java -p " (eclim-project-name)
" -c " (eclim-package-and-class)))))
(defun eclim--java-junit-file (project file offset encoding)
(concat eclim-executable
" -command java_junit -p " project
" -f " file
" -o " (number-to-string offset)
" -e " encoding))
(defun eclim--java-junit-project (project encoding)
(concat eclim-executable
" -command java_junit -p " project
" -e " encoding))
(defun eclim--buffer-contains-substring (string)
(save-excursion
(save-match-data
(goto-char (point-min))
(search-forward string nil t))))
(defun eclim--java-make-popup-item (correction)
(popup-make-item
(cdr (assoc 'description correction))
:value (cdr (assoc 'index correction))
:document (cdr (assoc 'preview correction))))
(defun eclim-java-junit-buffer? ()
(eclim--buffer-contains-substring "org.junit.Test"))
(defun eclim-java-testng-buffer? ()
(eclim--buffer-contains-substring "org.testng.annotations.Test"))
(defun eclim-run-junit (project file offset encoding)
"Run the current JUnit tests for current project or
current class or current method.
This method hooks onto the running Eclipse process and is thus
much faster than running mvn test -Dtest=TestClass#method."
(interactive (list (eclim-project-name)
(eclim--project-current-file)
(eclim--byte-offset)
(eclim--current-encoding)))
(if (not (string= major-mode "java-mode"))
(message "Running JUnit tests only makes sense for Java buffers.")
(compile (if (eclim-java-junit-buffer?)
(eclim--java-junit-file project file offset encoding)
(eclim--java-junit-project project encoding)))))
(defun eclim-java-correct (line offset)
(eclim/with-results correction-info ("java_correct" "-p" "-f" ("-l" line) ("-o" offset))
(if (stringp correction-info)
(message correction-info)
(-if-let* ((corrections (cdr (assoc 'corrections correction-info)))
(cmenu (mapcar 'eclim--java-make-popup-item corrections))
(choice (popup-menu* cmenu)))
(eclim/with-results correction-info
("java_correct"
("-p" (eclim-project-name))
"-f"
("-l" line)
("-o" offset)
("-a" choice)))
(message "No automatic corrections found. Sorry")))))
(defun eclim-java-show-documentation-for-current-element ()
"Displays the doc comments for the element at the pointers position."
(interactive)
(let ((symbol (symbol-at-point)))
(if symbol
(let ((bounds (bounds-of-thing-at-point 'symbol))
(window-config (current-window-configuration)))
(eclim/with-results doc ("java_element_doc"
("-p" (eclim-project-name))
"-f"
("-l" (- (cdr bounds) (car bounds)))
("-o" (save-excursion
(goto-char (car bounds))
(eclim--byte-offset))))
(pop-to-buffer "*java doc*")
(use-local-map eclim-java-show-documentation-map)
(eclim--java-show-documentation-and-format doc)
(message (substitute-command-keys
(concat
"\\[forward-button] - move to next link, "
"\\[backward-button] - move to previous link, "
"\\[eclim-quit-window] - quit")))))
(message "No element found at point."))))
(defun eclim--java-show-documentation-and-format (doc &optional add-to-history)
(make-local-variable 'eclim-java-show-documentation-history)
(setq eclim-java-show-documentation-history
(if add-to-history
(push (buffer-substring (point-min) (point-max))
eclim-java-show-documentation-history)))
(erase-buffer)
(insert (cdr (assoc 'text doc)))
(let ((links (cdr (assoc 'links doc)))
link placeholder text href)
(dotimes (i (length links))
(setq link (aref links i))
(setq text (cdr (assoc 'text link)))
(setq href (cdr (assoc 'href link)))
(setq placeholder (format "|%s[%s]|" text i))
(goto-char (point-min))
(while (search-forward placeholder nil t)
(replace-match text)
(make-text-button (match-beginning 0)
(+ (match-beginning 0) (length text))
'action 'eclim-java-show-documentation-follow-link
'url href))))
(when add-to-history
(goto-char (point-max))
(insert "\n\n")
(insert-text-button "back" 'action 'eclim--java-show-documentation-go-back))
(goto-char (point-min)))
(defun eclim-java-show-documentation-follow-link (link)
(interactive)
(let ((url (button-get link 'url)))
(if (string-match "^eclipse-javadoc" url)
(eclim/with-results doc ("java_element_doc"
("-u" url))
(eclim--java-show-documentation-and-format doc t))
(if (string-match "^\.\." url)
(let* ((doc-root-vars '(eclim-java-documentation-root
eclim-java-android-documentation-root))
(path (replace-regexp-in-string "^[./]+" "" url))
(fullpath (some (lambda (var)
(let ((fullpath (concat (symbol-value var)
"/"
path)))
(if (file-exists-p (replace-regexp-in-string
"#.+"
""
fullpath))
fullpath)))
doc-root-vars)))
(if fullpath
(browse-url (concat "file://" fullpath))
(message (concat "Can't find the root directory for this file: %s. "
"Are the applicable variables set properly? (%s)")
path
(mapconcat (lambda (var)
(symbol-name var))
doc-root-vars ", "))))
(message "There is no handler for this kind of url yet. Implement it! : %s"
url)))))
(defun eclim--java-show-documentation-go-back (link)
(erase-buffer)
(insert (pop eclim-java-show-documentation-history))
(goto-char (point-min)))
(provide 'eclim-java)