forked from ChasManRors/ecb
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathecb-jde.el
179 lines (146 loc) · 6.79 KB
/
ecb-jde.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
;;; ecb-jde.el --- ECB JDE integrations
;; Copyright (C) 2000 - 2005 Jesper Nordenberg,
;; Klaus Berndl,
;; Kevin A. Burton,
;; Free Software Foundation, Inc.
;; Author: Jesper Nordenberg <[email protected]>
;; Klaus Berndl <[email protected]>
;; Kevin A. Burton <[email protected]>
;; Maintainer: Klaus Berndl <[email protected]>
;; Keywords: browser, code, programming, tools
;; Created: 2003
;; 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 2, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;; $Id$
;;; Commentary:
;;
;;
;; Contains code for JDEE integrations into ECB or vice versa
;; JDEE is available at http://jdee.sunsite.dk/
;;; History
;;
;; For the ChangeLog of this file see the CVS-repository. For a complete
;; history of the ECB-package see the file NEWS.
;;; Code
(eval-when-compile
(require 'silentcomp))
(silentcomp-defun jde-show-class-source)
(silentcomp-defvar jde-open-class-at-point-find-file-function)
(silentcomp-defun jde-open-functions-exist)
(silentcomp-defun jde-parse-java-variable-at-point)
(silentcomp-defun jde-open-get-class-to-open)
(silentcomp-defun jde-open-get-path-prefix-list)
(silentcomp-defun jde-open-find-java-file-name)
(silentcomp-defun jde-gen-class-buffer)
(silentcomp-defvar jde-sourcepath)
(require 'ecb-util)
(require 'ecb-layout)
(require 'ecb-file-browser)
(require 'ecb-method-browser)
(defgroup ecb-jde-integration nil
"Settings for the JDEE-integration in the Emacs code browser."
:group 'ecb
:prefix "ecb-jde-")
(defcustom ecb-jde-set-directories-buffer-to-jde-sourcepath nil
"*THIS FEATURE IS NOT YET FINISHED"
:group 'ecb-jde-integration
:type '(radio (const :tag "No" :value nil)
(const :tag "Add" :value add)
(const :tag "Replace" :value replace)))
(defun ecb-jde-display-class-at-point ()
"Displays in the ECB-methods-buffer contents of class under point.
This means displays the contents \(methods, attributes etc...) of the class
which contains the definition of the \"thing\" under point \(this can be a
variablename, classname, methodname, attributename). This function needs the
same requirements to work as the method-completion feature of JDE \(see
`jde-complete-at-point')!. The source-file is searched first in
`jde-sourcepath', then in `jde-global-classpath', then in $CLASSPATH, then in
current-directory.
Works only for classes where the source-code \(i.e. the *.java-file) is
available."
(interactive)
(when (and ecb-minor-mode
(ecb-point-in-edit-window-number)
(equal major-mode 'jde-mode))
(if (jde-open-functions-exist)
(let* (
(thing-of-interest (ecb-thing-at-point 'symbol))
(pair (save-excursion (ecb-end-of-thing 'symbol)
(jde-parse-java-variable-at-point)))
(class-to-open (jde-open-get-class-to-open
pair thing-of-interest))
(source-path-prefix-list (jde-open-get-path-prefix-list))
(java-file-name nil)
)
(if (and class-to-open (stringp class-to-open))
(progn
(setq java-file-name (jde-open-find-java-file-name
class-to-open source-path-prefix-list))
(if (not java-file-name)
(ecb-error "Can not find the sourcecode-file for \"%s\""
thing-of-interest)
;; TODO: Klaus Berndl <[email protected]>:
;; The following two lines of code are the only difference
;; between this function and `jde-open-class-at-point'.
;; Therefore it would be nice if the whole stuff necessary
;; for finding the source-file of `thing-of-interest' would
;; be extracted in an own function of JDE.
;; we have found the java-sourcefile. So let´s display its
;; contents in the method-buffer of ECB - we must select the
;; methods-window before because otherwise our automatically
;; buffer-sync would resync with current java-source-file.
(if (ecb-window-select ecb-methods-buffer-name)
(ecb-set-selected-source java-file-name nil t))))
(ecb-error "Can not parse the thing at point!")))
(message "You need JDE >= 2.2.6 and Senator for using this feature!"))))
(defun ecb-jde-show-class-source (external-tag)
"Calls `jde-show-class-source' for th tag-name of EXTERNAL-TAG.
Returns t if the tag is found and no error occurs otherwise nil.
This function is for usage with `ecb-find-external-tag-functions'."
(when (eq major-mode 'jde-mode)
(condition-case nil
(progn
(jde-show-class-source (ecb--semantic-tag-name external-tag))
t)
(error nil))))
(defun ecb-jde-gen-class-buffer (dir filename)
"Calls `jde-gen-class-buffer' for the file FILENAME in DIR. If this function
is not available then `find-file' is called."
(let ((file (concat dir "/" filename)))
(if (fboundp 'jde-gen-class-buffer)
(jde-gen-class-buffer file)
(find-file file))))
(defun ecb-jde-get-source-path ()
(mapcar 'jde-normalize-path jde-sourcepath))
(defun ecb-jde-update-ecb-source-paths ()
(interactive)
(case ecb-jde-set-directories-buffer-to-jde-sourcepath
(add
(add-hook 'ecb-source-path-functions
'ecb-jde-get-source-path))
(replace
(setq ecb-source-path (ecb-jde-get-source-path)))
(otherwise
(remove-hook 'ecb-source-path-functions
'ecb-jde-get-source-path)))
(ecb-update-directories-buffer))
(when (locate-library "efc")
(require 'efc)
(if (boundp 'efc-dialog-show-before-hook)
(add-hook 'efc-dialog-show-before-hook
(function (lambda ()
(ecb-toggle-compile-window -1)))))
(if (boundp 'efc-dialog-close-after-hook)
(add-hook 'efc-dialog-close-after-hook
(function (lambda ()
(ecb-toggle-compile-window 1))))))
(silentcomp-provide 'ecb-jde)
;;; ecb-jde.el ends here