-
Notifications
You must be signed in to change notification settings - Fork 55
/
jdee-parse-expr.el
249 lines (212 loc) · 9.32 KB
/
jdee-parse-expr.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
;;; jdee-parse-expr.el -- Beanshell JDEE integration.
;; Author: Paul Landes <landes <at> mailc dot net>
;; Maintainer: Paul Landes
;; Keywords: java, tools, parse expression
;; Copyright (C) 2009 by Paul Landes
;; GNU Emacs 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.
;; GNU Emacs 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.
;;; Commentary:
;;; Code:
(require 'cl-lib)
(require 'thingatpt)
;; FIXME: (require 'cc-cmds) doesn't work
(declare-function c-beginning-of-statement "cc-cmds" (&optional count lim sentence-flag))
(declare-function c-end-of-statement "cc-cmds" (&optional count lim sentence-flag))
(defun jdee-beginning-of-expression ()
(c-beginning-of-statement))
(put 'java-expression 'beginning-op 'jdee-beginning-of-expression)
(defun jdee-end-of-expression ()
(c-end-of-statement))
(put 'java-expression 'end-op 'jdee-end-of-expression)
;;;###autoload
(defun jdee-hungarian-to-reverse-camel-notation (start end local-replacement-p)
"\
Converts Hungarian (i.e. m_sMyApp) to reverse camel notation (i.e. myApp).
Hungarian notation is used, for example, in most Microsoft visual C++ code
whereas reverse camel notation is used as the Sun Java standard style.
START the start of the buffer region
END is the end of the buffer region
LOCAL-REPLACEMENT-P, if non-nil, replace expecting a local variable
replacement. This adds a `this.' to each replacment."
(interactive
(if (not mark-active)
(error "No region selected")
(list (region-beginning) (region-end) current-prefix-arg)))
(let ((case-fold-search nil)
(reg "\\(?:oa\\|[onbfs]\\)\\([A-Z]\\)\\([a-zA-Z0-9]+\\)"))
(save-excursion
(save-restriction
(narrow-to-region start end)
(save-match-data
(goto-char (point-min))
(while (re-search-forward (concat "m_" reg) nil t)
(replace-match (concat (and local-replacement-p "this.")
(downcase (match-string 1))
(match-string 2))))
(goto-char (point-min))
(while (re-search-forward (concat "\\<" reg "\\>") nil t)
(replace-match (concat (downcase (match-string 1))
(match-string 2)))))))))
(defun jdee-split-by-camel-notation (to-parse)
"Parse tokens based on \(reverse) camel notation.
TO-PARSE is the string to parse."
(if (or nil (= 0 (length to-parse)))
nil
(let ((last-cap 0)
toks)
(setq to-parse (append (vconcat to-parse) nil))
(cl-flet ((upperp
(pos)
(if (<= pos 0)
t
(let ((char (elt to-parse pos)))
(and (eq char (upcase char))))))
(handle
(pos)
(prog1
(apply 'string (cl-subseq to-parse last-cap pos))
(setq last-cap pos))))
(cl-do ((pos 0 (cl-incf pos)))
((> pos (1- (length to-parse))))
(if (and (upperp pos)
;;(> (- pos last-cap) 2))
(> (- pos last-cap) 0))
(setq toks (append toks (cons (handle pos) nil)))))
(append toks (cons (handle (length to-parse)) nil))))))
(defconst jdee-camel-tok-skip-chars " \t\n().'\""
"Characters used top a traveral of a reverse camel notation string." )
(defun jdee-beginning-of-camel-tok ()
"Go to the beginning of a reverese camel case token."
(interactive)
(let ((space-regex (format "[%s]" jdee-camel-tok-skip-chars))
(n-space-regex (format "[^%s]" jdee-camel-tok-skip-chars))
start end reg toks)
(save-excursion
(save-match-data
(if (and (> (point) (- 2 (point-min)))
(save-excursion
(forward-char -1)
(looking-at space-regex)))
(re-search-backward n-space-regex nil t))
(setq end (point))
(setq start (or (when (re-search-backward space-regex nil t)
(forward-char 1)
(point))
(point-min)))))
(setq reg (buffer-substring start end)
toks (jdee-split-by-camel-notation reg))
(goto-char (- end (length (car (last toks)))))))
(defun jdee-end-of-camel-tok ()
"Go to the beginning of a reverese camel case token."
(interactive)
(let ((space-regex (format "[%s]" jdee-camel-tok-skip-chars))
(n-space-regex (format "[^%s]" jdee-camel-tok-skip-chars)))
(if (looking-at space-regex) (re-search-forward n-space-regex))
(let ((start (point))
(end (or (save-excursion
(save-match-data
(re-search-forward space-regex nil t)))
(point-max)))
reg toks)
(setq reg (buffer-substring start end)
toks (jdee-split-by-camel-notation reg))
(goto-char (+ start (length (car toks)))))))
(defun jdee-forward-camel-tok (arg)
"Go forward a reverse camel case token."
(interactive "p")
(dotimes (i arg) (jdee-end-of-camel-tok)))
(defun jdee-backward-camel-tok (arg)
"Go back a reverse camel case token."
(interactive "p")
(dotimes (i arg) (jdee-beginning-of-camel-tok)))
(defun jdee-kill-camel-tok ()
"Kill a reverse camel case token."
(interactive)
(delete-region (point) (save-excursion (jdee-end-of-camel-tok))))
(defun jdee-backward-kill-camel-tok ()
"Go back a reverse camel case token and kill."
(interactive)
(delete-region (save-excursion (jdee-beginning-of-camel-tok)) (point)))
(defun jdee-map-camel-notation-token (start end iter-fn delimiter)
"Helper method to remove and add back tokesn with a delimiter.
Operates on the current buffer.
START the beginning of the region.
END the end of the region.
ITER-FN the function used to map over to create the string to add
back after the deletion. This is usually something like
`upcaes'. The function takes the camel token.
DELIMITER the delimiter used to place between each camel token."
(let ((toks (jdee-split-by-camel-notation
(buffer-substring start end))))
(save-excursion
(delete-region start end)
(goto-char start)
(insert (mapconcat iter-fn toks delimiter)))))
(defun jdee-parse-expr-get-region-or-thing (thing)
(if mark-active
(list (region-beginning) (region-end))
(let ((cell (bounds-of-thing-at-point thing)))
(list (car cell) (cdr cell)))))
;;;###autoload
(defun jdee-camel-to-sql (start end)
"Convert from reverse camel notation to the SQL underscore convention."
(interactive (jdee-parse-expr-get-region-or-thing 'word))
(jdee-map-camel-notation-token start end 'downcase "_"))
;;;###autoload
(defun jdee-camel-to-c-const (start end)
"Convert from reverse camel notation to the C constant convention."
(interactive (jdee-parse-expr-get-region-or-thing 'word))
(jdee-map-camel-notation-token start end 'upcase "_"))
;;;###autoload
(defun jdee-camel-to-lisp (start end)
"Convert from reverse camel notation to the lisp symbol convention."
(interactive (jdee-parse-expr-get-region-or-thing 'word))
(jdee-map-camel-notation-token start end 'downcase "-"))
(defun jdee-camel-to-java-property (start end)
"Convert from reverse camel notation to the Java properties convention."
(interactive (jdee-parse-expr-get-region-or-thing 'symbol))
(let ((str (buffer-substring start end)))
(save-excursion
(goto-char start)
(delete-region start end)
(insert (downcase (replace-regexp-in-string "_" "." str nil t))))))
;;;###autoload
(defun jdee-member-to-attribute (member-name getterp)
"Convert Java member to a getter or setter syntax.
MEMBER-NAME is member to convret. This is taken as the current word at point
when called interactively.
GETTERP, if non-nil, make it a getter, otherwise make it a setter. If
\\[universal-argument] is used while calling interactively, then make it a
setter, otherwise, make a getter."
(interactive (list (thing-at-point 'word) (not current-prefix-arg)))
(let* ((toks (jdee-split-by-camel-notation member-name))
(attr (apply 'concat
(append (list (if getterp "get" "set")
(capitalize (substring (car toks) 0 1))
(substring (car toks) 1))
(cdr toks)))))
(if (called-interactively-p 'interactive)
(let ((bounds (bounds-of-thing-at-point 'word)))
(delete-region (car bounds) (cdr bounds))
(insert (concat attr "(" (if getterp ")")))))
attr))
(eval-after-load
"jdee"
'(progn
;; wait until jdee-mode-map is defined in jdee.el
;; clobbers `kill-word'
(define-key jdee-mode-map "\M-d" 'jdee-kill-camel-tok)
;; clobbers `backward-kill-word'
(define-key jdee-mode-map [M-backspace] 'jdee-backward-kill-camel-tok)))
(provide 'jdee-parse-expr)
;;; jdee-parse-expr.el ends here