-
Notifications
You must be signed in to change notification settings - Fork 55
/
jdee-ant.el
717 lines (618 loc) · 27.6 KB
/
jdee-ant.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
705
706
707
708
709
710
711
712
713
714
715
716
717
;;; jdee-ant.el --- Frontend to Apache Ant
;; Copyright (C) 2009 by Paul Landes
;; Author: Jason Stell | jason.stell@globalone.net
;; Author: Kevin A. Burton ( burton@openprivacy.org )
;; This file is not part of Emacs
;; 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 this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;; This file defines jdee-ant-build and some helper functions.
;; jdee-ant-build uses the specified ant program/shell script to
;; execute a specified build file (in the project root).
;;
;;; History:
;;
;; - Version 1.4.4 Thu Jan 17 2002 03:51 PM (burton@openprivacy.org):
;;
;; - We now have `jdee-ant-build-hook' that runs hooks after a build is
;; started.
;;
;; - Version 1.4.3 Thu Jan 17 2002 03:37 PM (burton@openprivacy.org):
;;
;; - fixed a bug with target completion. We were not using initial-input
;; correctly.
;;
;; - fixed a bug with jdee-ant-build-classpath which wasn't using ant-home
;; correctly. (Thanks to Javier S. Lopez)
;;
;; - Version 1.4.2 Wed Jan 16 2002 05:46 PM (burton@openprivacy.org): added
;; `jdee-ant-use-global-classpath' (which is disabled by default) so that the
;; `jdee-global-classpath' can be used.
;;
;; -- Version 1.3 (19 June 2001)
;; : Addition of jdee-ant-projecthelp to display list of targets for
;; the current buildfile.
;; -- Version 1.2 (4 June 2001)
;; : Addition of jdee-ant-read-buildfile option to prompt for the buildfile
;; name -- contributed by Rob Shaw <shaw@servidium.com>
;; : Various Bug fixes contributed by Rob Shaw <shaw@servidium.com>
;; - The setting of the system property in a format other
;; than -Dname=value had the side effect of negating the -emacs
;; command line argument.
;; - The setting of the current directory to the location of the
;; JDEE project file is now taking place when
;; jdee-ant-enable-find is nil.
;; - The ant target is now the last thing to be appended to
;; ant command to avoid any possible confusion for ANT
;; as to what is the desired target.
;; -- Version 1.2b2 (25 May 2001)
;; : Fix to properly use the -find <buildfile> Ant switch--contributed
;; by Rob Shaw <shaw@servidium.com>.
;; -- Version 1.2b1 (23 May 2001)
;; : Added jdee-ant-enable-find custom flag to use the -find switch
;; available in Ant. This overrides the requirement for a JDEE
;; project file
;; : Fixed minor bug missing whitespace before -buildfile switch
;; when building the ant compile command
;; -- Version 1.1 (20 October 2000)
;; : Added interactive prompts (optional, based on customizable
;; toggles) for Ant target and additional args. Removed the
;; jdee-ant-target custom variable, since this is really
;; represented by the default target in the build file.
;; : The -f switch seems to be causing problems. Removed it from
;; the default jdee-ant-args.
;; : Basic changes to the way the ant command is assembled.
;;
;; -- Version 1.0 (19 October 2000)
;; Initial Version
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Code:
(require 'cl-lib)
(require 'compile)
(require 'jdee-classpath)
(require 'jdee-backend)
(require 'jdee-files)
(require 'jdee-project-file)
(require 'jdee-jdk-manager)
(require 's)
(defgroup jdee-ant nil
"JDEE Ant"
:group 'jdee
:prefix "jdee-ant-")
;;; start of Douglas WF Acheson mod
;;; The next three custom variables and defun added by Douglas WF Acheson to
;;; allow a user to select how ant is invoked, either by script or via Java
(defcustom jdee-ant-invocation-method (list "Script")
"*Specifies how to invoke ant. Ant can be invoked in one of three
ways. The first is via the ant script/program that comes with ant.
The second is via java and the third is via the Ant Server."
:group 'jdee-ant
:type '(list
(radio-button-choice
(const "Script")
(const "Java")
(const "Ant Server"))))
(defcustom jdee-ant-home ""
"*Directory where ant is installed."
:group 'jdee-ant
:type 'file)
(defcustom jdee-ant-user-jar-files nil
"*Specifies jar files that hold user-defined tasks."
:group 'jdee-ant
:type '(repeat (file :tag "Path")))
(defcustom jdee-ant-program "ant"
"*Specifies name of ant program/script."
:group 'jdee-ant
:type 'string)
(defcustom jdee-ant-args "-emacs"
"*Specifies arguments to be passed to make program."
:group 'jdee-ant
:type 'string)
(defcustom jdee-ant-buildfile "build.xml"
"*Specifies the default buildfile to use."
:group 'jdee-ant
:type 'string)
(defcustom jdee-ant-read-buildfile nil
"*Specify whether to prompt for a buildfile. If non-nil, the jdee-ant-build
command prompts you for an ant buildfile. Note that when `jdee-ant-enable-find'
is enable the value entered for `jdee-ant-read-buildfile' is used as a
default. If no value is entered, or the file is non-existent, or is a
directory, the code tries to find the buildfile."
:group 'jdee-ant
:type 'boolean)
(defcustom jdee-ant-read-target nil
"*Specify whether to prompt for a build target. If non-nil, the
jdee-ant-build command prompts you for an ant target."
:group 'jdee-ant
:type 'boolean)
(defvar jdee-ant-interactive-buildfile nil
"Defauilt buildfile to use when prompting interactively.")
(defvar jdee-ant-interactive-target-history nil
"History of targets entered in the minibuffer.")
(defcustom jdee-ant-read-args nil
"*Specify whether to prompt for additional arguments to pass to ant. If
non-nil, the jdee-ant-build command prompts you for the additional arguments."
:group 'jdee-ant
:type 'boolean)
(defvar jdee-ant-interactive-args-history nil
"History of targets entered in the minibuffer.")
(defvar jdee-ant-buildfile-history nil
"History of targets entered in the minibuffer.")
(defvar jdee-ant-passed-security-exception nil
"This variable is used to indicate that we have passed the
java.lang.SecurityException in the output. The JDESecurityManager throws an
exception when ANT tries exiting the JVM using System.exit(0). This exception
causes an stack trace in the compilation buffer. This variable is used to
indicate the start of the exception, therefore no more output should be
inserted into the buffer")
(defvar jdee-ant-build-status nil
"Used to indicated the status of build, success or failure")
(defcustom jdee-ant-enable-find nil
"*Specify whether jdee-ant find the build.xml file based on your current
directory. If non-nil, we will search up the directory hierarchy from the
current directory for the build definition file. Also note that, if non-nil,
this will relax the requirement for an explicit jdee project file. If
`jdee-ant-read-buildfile' is enable that value is used as a default if valid."
:group 'jdee-ant
:safe 'booleanp
:type 'boolean)
(defcustom jdee-ant-complete-target t
"*Specify whether to enable completion of build target names in the
minibuffer.
If non-nil, the jdee-ant-build command allows you to use tab completion
in the minibuffer to specify the build target name. This list of
valid build targets is determined by parsing the Ant build file. This
option has no effect if jdee-ant-read-target is nil."
:group 'jdee-ant
:type 'boolean)
(defcustom jdee-ant-use-global-classpath nil
"*Specify whether to enable use of `jdee-global-classpath' when running jdee-ant."
:group 'jdee-ant
:type 'boolean)
(defcustom jdee-ant-target-regexp "<\\s-*target\\s-[^...]*?name\\s-*=\\s-*\"\\s-*\\([^\"]+\\)"
"*Regular expression used to match target names in Ant build files."
:group 'jdee-ant
:type 'string)
(defcustom jdee-ant-build-hook '(jdee-compile-finish-kill-buffer
jdee-compile-finish-refresh-speedbar
jdee-compile-finish-update-class-info)
"*List of hook functions run by `jdee-ant-build' (see `run-hooks'). Each
function should accept two arguments: the compilation buffer and a string
describing how the compilation finished"
:group 'jdee-ant
:type 'hook)
(defcustom jdee-ant-working-directory ""
"*Path of the working directory to use in 'ant' build mode.
This string must end in a slash, for example, c:/foo/bar/ or ./ .
If this string is empty, the 'ant' build mode uses the current file location
as its working directory."
:group 'jdee-ant
:type 'string)
(defun jdee-build-ant-command (target more-args &optional buildfile)
"Constructs the java ant command for `TARGET' and its `MORE-ARGS'.
The variable `jdee-ant-home' is used if it is set, otherwise it gets
the Ant home from the environment variable ANT_HOME."
;;provide a default buildfile.
(when (null buildfile)
(setq buildfile jdee-ant-buildfile))
(let* ((ant-home (jdee-ant-get-ant-home))
(delimiter (if (or
(string= (car jdee-ant-invocation-method) "Java")
(string= (car jdee-ant-invocation-method) "Script"))
"'"
"\""))
(classpath-delimiter (if (and (or (eq system-type 'windows-nt)
(eq system-type 'cygwin32))
(s-matches? "sh$" shell-file-name))
delimiter))
(buildfile-delimiter (if (eq system-type 'windows-nt)
"\"" delimiter))
(ant-program (if (or (s-matches? "\\\\" jdee-ant-program)
(s-matches? "/" jdee-ant-program))
(jdee-normalize-path jdee-ant-program)
jdee-ant-program))
(ant-command
(concat
(if (string= (car jdee-ant-invocation-method) "Script") ant-program)
(if (string= (car jdee-ant-invocation-method) "Java")
(concat
(jdee-get-jdk-prog 'java)
" -classpath "
classpath-delimiter
(jdee-ant-build-classpath)
classpath-delimiter))
(if ant-home
(concat
" -Dant.home="
(if (s-matches? " " ant-home) ; Quote paths with spaces
(concat "\"" ant-home "\"")
ant-home)))
(if (string= (car jdee-ant-invocation-method) "Java")
(concat
" "
"org.apache.tools.ant.Main")))))
(if (not (string= buildfile ""))
(setq ant-command
(concat ant-command
" -buildfile " buildfile-delimiter
(jdee-normalize-path buildfile)
buildfile-delimiter)))
(if (not (string= jdee-ant-args ""))
(setq ant-command (concat ant-command " " jdee-ant-args)))
(if (and (not (null more-args))
(not (string= more-args "")))
(setq ant-command (concat ant-command " " more-args)))
(if (not (string= target ""))
(setq ant-command (concat ant-command " " target " ")))
ant-command))
(defun jdee-ant-build-classpath()
"Build the classpath we should use when running ant. This returns a
classpath normalized with `jdee-build-classpath'."
(let* ((ant-home (jdee-ant-get-ant-home))
classpath)
(setq classpath (append (list (expand-file-name "lib" ant-home)
(jdee-get-tools-jar))
jdee-ant-user-jar-files))
;; silence the compiler
;; TODO: remove this boundp and require 'jdee after resolving jde
;; compilation warnings
(with-no-warnings
(when jdee-ant-use-global-classpath
(setq classpath (append classpath jdee-global-classpath))))
(jdee-build-classpath classpath)))
(defun jdee-ant-get-ant-home ()
"Calculate an appropriate ant home."
(let ((ant-home
(if (string= jdee-ant-home "")
(getenv "ANT_HOME")
jdee-ant-home)))
(if ant-home
(jdee-normalize-path ant-home))))
(defun jdee-ant-interactive-get-buildfile ()
"Get a buildfile interactively. This is used so that code that needs to read
a buildfile from interactive can share the same type of behavior. This will
return a new filename which points to the build.xml file to use."
(let (buildfile)
(if jdee-ant-read-buildfile
;;read the buildfile from the user.
;;figure out which directory to execute from.
(let (prompt-directory prompt-filename)
(if jdee-ant-interactive-buildfile
(progn
(setq prompt-directory
(file-name-directory jdee-ant-interactive-buildfile))
(setq prompt-filename
(file-name-nondirectory jdee-ant-interactive-buildfile)))
(setq prompt-directory (jdee-ant-get-default-directory))
(setq prompt-filename ""))
(setq buildfile
(read-file-name "Buildfile: " prompt-directory nil t
prompt-filename))))
(if (or (and jdee-ant-enable-find (not jdee-ant-read-buildfile)) ;enable only
(and jdee-ant-enable-find jdee-ant-read-buildfile
(or (null buildfile) ;no buildfile
(string= "" buildfile)
(and (file-exists-p buildfile) ;buildfile is a directory
(file-directory-p buildfile)))))
(progn
(setq buildfile (jdee-ant-find-build-file
(jdee-ant-get-default-directory)))
(when (null buildfile)
(error "Could not find Ant build file"))
(when (not (file-exists-p buildfile))
(error "File does not exist %s " buildfile))))
(if (and (not jdee-ant-enable-find)
(not jdee-ant-read-buildfile))
;;use the default buildfile.
(setq buildfile (jdee-normalize-path jdee-ant-buildfile)))
buildfile))
;;;###autoload
(defun jdee-ant-build (buildfile target &optional interactive-args)
"Build the current project using Ant. If interactive, we try to prompt the
user for certain variables.."
(interactive
(let* ((buildfile (jdee-ant-interactive-get-buildfile))
(build-history (jdee-ant-get-from-history buildfile))
(targets
(if jdee-ant-read-target
(if jdee-ant-complete-target
(if (fboundp 'completing-read-multiple)
(completing-read-multiple
"Target to build: "
(jdee-ant-get-target-alist buildfile)
nil
nil
(car build-history)
'build-history)
(list (completing-read
"Target to build: "
(jdee-ant-get-target-alist buildfile)
nil
t
(car build-history)
'build-history)))
(list (read-from-minibuffer
"Target to build: "
(car build-history)
nil
nil
'build-history)))))
(target
(jdee-ant-escape (mapconcat 'identity targets " ")))
(interactive-args
(if jdee-ant-read-args
(read-from-minibuffer
"Additional build args: "
(nth 0 jdee-ant-interactive-args-history)
nil nil
'(jdee-ant-interactive-args-history . 1)))))
;; Setting the history for future use
(jdee-ant-add-to-history buildfile build-history)
;;some of these global variables are defaults. We should restore then for
;;every request. IE jdee-ant-interactive-target and
;;jdee-ant-interactive-args
(setq jdee-ant-interactive-buildfile buildfile)
;;return our new arguments.
;;This should be a list of buildfile, target and optional-args.
(list buildfile target interactive-args)))
(let ((compile-command
(jdee-build-ant-command target interactive-args buildfile))
process-connection-type)
(when compile-command
;; Force save-some-buffers to use the minibuffer
;; to query user about whether to save modified buffers.
;; Otherwise, when user invokes the command from
;; menu, save-some-buffers tries to popup a menu
;; which seems not to be supported--at least on
;; the PC.
(if (eq system-type 'windows-nt)
(let ((temp last-nonmenu-event))
;; The next line makes emacs think that the command
;; was invoked from the minibuffer, even when it
;; is actually invoked from the menu-bar.
(setq last-nonmenu-event t)
(save-some-buffers (not compilation-ask-about-save) nil)
(setq last-nonmenu-event temp))
(save-some-buffers (not compilation-ask-about-save) nil))
(setq compilation-finish-functions
(lambda (buf msg)
(run-hook-with-args 'jdee-ant-build-hook buf msg)
(setq compilation-finish-functions nil)))
(if (string= (car jdee-ant-invocation-method) "Ant Server")
(progn
(while (string-match "\"" compile-command)
(setq compile-command (replace-match "" nil nil
compile-command)))
(jdee-ant-compile-internal compile-command
"No more errors"))
(let ((default-directory (jdee-ant-get-default-directory)))
(compilation-start compile-command))))))
(defvar jdee-ant-comint-filter nil)
(defun jdee-ant-escape (target)
"Looks for \ characters and escape them, i.e. \\"
(if (not (null target))
(let (temp c)
(while (not (string= target ""))
(setq c (substring target 0 1))
(if (string= c "\\")
(setq temp (concat temp c)))
(setq temp (concat temp c))
(setq target (substring target 1)))
temp)))
(defun jdee-ant-compile-internal (command error-message)
"This method displays ant output in a compilation buffer.
error-message is a string to print if the user asks to see another error
and there are no more errors. "
(let* (error-regexp-alist
enter-regexp-alist
leave-regexp-alist
file-regexp-alist
nomessage-regexp-alist
outbuf)
(save-excursion ;;getting or creating
(setq outbuf (get-buffer-create "*compilation*"));;the compilation buffer
(set-buffer outbuf) ;;setting the compilation buffer
;; In case the compilation buffer is current, make sure we get the global
;; values of compilation-error-regexp-alist, etc.
(kill-all-local-variables))
(setq error-regexp-alist compilation-error-regexp-alist)
(setq enter-regexp-alist
(if (boundp 'compilation-enter-directory-regexp-alist)
compilation-enter-directory-regexp-alist))
(setq leave-regexp-alist
(if (boundp 'compilation-leave-directory-regexp-alist)
compilation-leave-directory-regexp-alist))
(setq file-regexp-alist
(if (boundp 'compilation-file-regexp-alist)
compilation-file-regexp-alist))
(setq nomessage-regexp-alist
(if (boundp 'compilation-nomessage-regexp-alist)
compilation-nomessage-regexp-alist))
(let* (proc (thisdir (jdee-ant-get-default-directory)) outwin)
(save-excursion
;; Clear out the compilation buffer and make it writable.
(jdee-backend-load-project)
(setq proc (jdee-backend-get-process))
(set-buffer outbuf)
(compilation-mode)
(setq buffer-read-only nil)
(buffer-disable-undo (current-buffer))
(erase-buffer)
(buffer-enable-undo (current-buffer))
(display-buffer outbuf)
(insert "AntServer output:\n")
(insert command "\n")
(set-buffer-modified-p nil)
(setq jdee-ant-comint-filter (process-filter proc))
(set-process-filter proc 'jdee-ant-filter)
;;resets the jdee-ant-passed-security-exception flag
(setq jdee-ant-passed-security-exception nil)
(process-send-string proc
(jdee-backend-get-ant-start-server-command command)))
(setq outwin (display-buffer outbuf))
(save-excursion
;; (setq buffer-read-only t) ;;; Non-ergonomic.
(if (boundp 'compilation-error-message)
(set (make-local-variable 'compilation-error-message)
error-message))
(set (make-local-variable 'compilation-error-regexp-alist)
error-regexp-alist)
(dolist (elt `((compilation-enter-directory-regexp-alist
,enter-regexp-alist)
(compilation-leave-directory-regexp-alist
,leave-regexp-alist)
(compilation-file-regexp-alist
,file-regexp-alist)
(compilation-nomessage-regexp-alist
,nomessage-regexp-alist)))
(if (boundp (car elt))
(set (make-local-variable (car elt)) (cadr elt))))
(if (boundp 'compilation-directory-stack)
(setq default-directory thisdir
compilation-directory-stack (list default-directory)))
(compilation-set-window-height outwin)
(if compilation-process-setup-function
(funcall compilation-process-setup-function))))
;; Make it so the next C-x ` will use this buffer.
(setq compilation-last-buffer outbuf)))
(defun jdee-ant-filter (proc string)
"This filter prints out the result of the process without buffering.
The result is inserted as it comes in the compilation buffer."
(let ((compilation-buffer (get-buffer "*compilation*")))
(if (not (null compilation-buffer))
(with-current-buffer compilation-buffer
(let ((stack-trace
(string-match "java.lang.SecurityException" string))
(end-of-result (string-match ".*bsh % " string))
(win (get-buffer-window "*compilation*")))
(save-excursion
;;Insert the text, advancing the process marker
(goto-char (point-max))
;;if the security exception has been thrown set the
;;jdee-ant-passed-security-exception flag and filter the stack
;;trace out of the ouput
(if stack-trace
(progn
(setq jdee-ant-passed-security-exception t)
(insert (substring string 0 stack-trace))
(set-buffer-modified-p nil)
(compilation-mode)
(jdee-ant-set-build-status (buffer-string))
(jdee-ant-handle-exit)))
(if end-of-result
(progn
(if (not jdee-ant-passed-security-exception)
(progn
(insert (substring string 0 end-of-result))
(set-buffer-modified-p nil)
(compilation-mode)
(jdee-ant-set-build-status (buffer-string))
(jdee-ant-handle-exit)))
(set-process-filter proc jdee-ant-comint-filter)))
(if (and (not end-of-result)
(not jdee-ant-passed-security-exception))
(insert string)))
(if compilation-scroll-output
(save-selected-window
(if win
(progn
(select-window win)
(goto-char (point-max)))))))))))
(defun jdee-ant-handle-exit ()
"Handles the compilation exit"
(compilation-handle-exit
'exit jdee-ant-build-status
(if (string= "0" jdee-ant-build-status)
"finished\n"
"exited abnormally with code 1\n")))
(defun jdee-ant-set-build-status (buffer-contents)
"Sets the build status based on the BUFFER-CONTENTS"
(if (string-match ".*BUILD SUCCESSFUL.*" buffer-contents)
(setq jdee-ant-build-status "0"))
(if (string-match ".*BUILD FAILED.*" buffer-contents)
(setq jdee-ant-build-status "1")))
;;;###autoload
(defun jdee-ant-projecthelp(buildfile)
"Display Ant project help for the current project.
This will execute the Ant program with the `-projecthelp' switch to output
available targets with their descriptions for the current buildfile. This
function uses the same rules as `jdee-ant-build' for finding the buildfile."
(interactive
(list
(jdee-ant-interactive-get-buildfile)))
(jdee-ant-build buildfile nil "-projecthelp"))
(defun jdee-ant-find-build-file (dir)
"Find the next Ant build file upwards in the directory tree from DIR.
Returns nil if it cannot find a project file in DIR or an ascendant directory."
(let ((file (cl-find (cond ((string= jdee-ant-buildfile "") "build.xml")
(t jdee-ant-buildfile))
(directory-files dir) :test 'string=)))
(if file
(setq file (expand-file-name file dir))
(if (not (jdee-root-dir-p dir))
(setq file (jdee-ant-find-build-file (concat dir "../")))))
file))
(defun jdee-ant-get-target-alist (buildfile)
"Returns asociation list of valid Ant project targets."
(let ((targets nil )
(temp-buf (get-buffer-create "*jdee-ant-get-target-list-temp-buffer*")))
(unwind-protect
(with-current-buffer temp-buf
(erase-buffer)
(insert-file-contents buildfile)
(goto-char (point-min))
(while (re-search-forward jdee-ant-target-regexp (point-max) t)
(setq targets (append targets (list (list (match-string 1)))))))
(kill-buffer temp-buf))
targets))
;;;###autoload
(defun jdee-ant-show-options ()
"Show the JDE Ant Options panel."
(interactive)
(customize-apropos "jdee-ant" 'groups))
(defun jdee-ant-get-default-directory ()
"Gets the default-directory according to the value of
'jdee-ant-working-directory."
(if (string= jdee-ant-working-directory "")
default-directory
jdee-ant-working-directory))
(defun jdee-ant-add-to-history (buildfile build-history)
(let ((temp (nth 0 jdee-ant-interactive-target-history))
(index -1) (found nil))
(while (and temp (not found))
(setq index (1+ index))
(setq temp (nth index jdee-ant-interactive-target-history))
(if (string= (car temp) buildfile)
(setq found t)))
(if found
(setcdr temp build-history)
(setq jdee-ant-interactive-target-history
(append
jdee-ant-interactive-target-history
(list (list buildfile (car build-history))))))))
(defun jdee-ant-get-from-history (buildfile)
(let ((temp (nth 0 jdee-ant-interactive-target-history))
(index -1) (found nil))
(while (and temp (not found))
(setq index (1+ index))
(setq temp (nth index jdee-ant-interactive-target-history))
(if (string= (car temp) buildfile)
(setq found t)))
(if found
(cdr temp)
nil)))
;; Register and initialize the customization variables defined
;; by this package.
(jdee-update-autoloaded-symbols)
(provide 'jdee-ant)
;;; jdee-ant.el ends here