-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompileAndRunJava.applescript
83 lines (72 loc) · 2.31 KB
/
CompileAndRunJava.applescript
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
on replace_text(this_text, search_string, replacement_string)
set AppleScript's text item delimiters to the search_string
set the item_list to every text item of this_text
set AppleScript's text item delimiters to the replacement_string
set this_text to the item_list as string
set AppleScript's text item delimiters to {""}
return this_text
end replace_text
tell application "TextWrangler"
save text document 1
set the_file to file of text document 1
end tell
tell application "Finder"
set compiled_name to name of (file the_file as alias)
set compiled_name to text 1 thru -6 of compiled_name
end tell
set no_error to true
set package_name to ""
set file_contents to paragraphs of (read file the_file)
repeat with next_line in file_contents
if {next_line contains "package " and package_name is ""} then
set package_name to replace_text(next_line, "package ", "")
set package_name to replace_text(package_name, ";", "")
if package_name contains " " then
set package_name to replace_text(package_name, " ", "")
end if
end if
end repeat
tell application "Finder"
if (package_name is "") then
set folder_path to (POSIX path of ((container of file the_file) as string)) as string
else
set folder_path to text 1 thru (-1 * (2 + (length of package_name))) of (POSIX path of ((container of file the_file) as string)) as string
end if
end tell
try
tell application "Terminal"
activate
if (package_name is "") then
set shell_script to "cd " & quoted form of folder_path & ¬
"; javac " & compiled_name & ".java"
else
set shell_script to "cd " & quoted form of folder_path & ¬
"; find . -name \"*.java\" -print | xargs javac "
end if
if (count windows) is 0 then
do script shell_script
else
do script shell_script in the front window
end if
set result to do shell script shell_script
end tell
on error
set no_error to false
end try
if (no_error) then
tell application "Terminal"
activate
if (package_name is "") then
set shell_script to "cd " & quoted form of folder_path & ¬
"; java " & compiled_name
else
set shell_script to "cd " & quoted form of folder_path & ¬
"; java " & package_name & "." & compiled_name
end if
if (count windows) is 0 then
do script shell_script
else
do script shell_script in the front window
end if
end tell
end if