Module: Java::Commands
- Defined in:
- lib/buildr/java/commands.rb
Overview
JDK commands: java, javac, javadoc, etc.
Class Method Summary collapse
-
.apt(*args) ⇒ Object
:call-seq: apt(*files, options).
-
.java(*args, &block) ⇒ Object
:call-seq: java(class, *args, options?).
-
.javac(*args) ⇒ Object
:call-seq: javac(*files, options).
-
.javadoc(*args) ⇒ Object
:call-seq: javadoc(*files, options).
Class Method Details
.apt(*args) ⇒ Object
:call-seq:
apt(*files, )
Runs Apt with the specified arguments.
The last argument may be a Hash with additional options:
-
:compile – If true, compile source files to class files.
-
:source – Specifies source compatibility with a given JVM release.
-
:output – Directory where to place the generated source files, or the generated class files when compiling.
-
:classpath – One or more file names, tasks or artifact specifications. These are all expanded into artifacts, and all tasks are invoked.
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/buildr/java/commands.rb', line 142 def apt(*args) = Hash === args.last ? args.pop : {} , :compile, :source, :output, :classpath files = args.flatten.map(&:to_s). collect { |arg| File.directory?(arg) ? FileList["#{arg}/**/*.java"] : arg }.flatten cmd_args = [ trace?(:apt) ? '-verbose' : '-nowarn' ] if [:compile] cmd_args << '-d' << [:output].to_s else cmd_args << '-nocompile' << '-s' << [:output].to_s end cmd_args << '-source' << [:source] if [:source] cp = classpath_from() cmd_args << '-classpath' << cp.join(File::PATH_SEPARATOR) unless cp.empty? cmd_args += files unless Buildr.application..dryrun info 'Running apt' trace (['apt'] + cmd_args).join(' ') Java.load ::Java::com.sun.tools.apt.Main.process(cmd_args.to_java(::Java::java.lang.String)) == 0 or fail 'Failed to process annotations, see errors above' end end |
.java(*args, &block) ⇒ Object
:call-seq:
java(class, *args, )
Runs Java with the specified arguments.
Each argument should be provided as separate array value, e.g.
java("-jar", "yuicompressor-2.4.2.jar", "--type","css",
"src/main/webapp/styles/styles-all.css",
"-o", "src/main/webapp/styles/styles-all-min.css")
The last argument may be a Hash with additional options:
-
:dir – The working directory from which to execute task..
-
:classpath – One or more file names, tasks or artifact specifications. These are all expanded into artifacts, and all tasks are invoked.
-
:java_args – Any additional arguments to pass (e.g. -hotspot, -xms)
-
:properties – Hash of system properties (e.g. ‘path’=>base_dir).
-
:name – Shows this name, otherwise shows the first argument (the class name).
-
:verbose – If true, prints the command and all its argument.
-
:pathing_jar – If true, forces the use of a “pathing” jar, false disables. Nil
will default to using a "pathing" jar under windows with long classpaths. See http://stackoverflow.com/questions/201816/how-to-set-a-long-java-classpath-in-msdos-windows
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 |
# File 'lib/buildr/java/commands.rb', line 46 def java(*args, &block) = Hash === args.last ? args.pop : {} [:verbose] ||= trace?(:java) , :classpath, :java_args, :properties, :name, :verbose, :dir, :pathing_jar name = [:name] if name.nil? name = "java #{args.first}" end cmd_args = [] if [:dir] pwd = [:dir] if Buildr::Util.win_os? # Ruby uses forward slashes regardless of platform, # unfortunately cd c:/some/path fails on Windows cmd_args << "cd /d \"#{pwd.gsub(%r{/}, '\\')}\" && " else cmd_args << "cd '#{pwd}' && " end end cmd_args << path_to_bin('java') cp = classpath_from() unless cp.empty? if [:pathing_jar] == true || ([:pathing_jar].nil? && Util.win_os? && cp.join(':').size > 2048) paths = cp.map do |c| path = File.directory?(c) && !c.end_with?('/') ? "#{c}/" : c.to_s Buildr::Util.win_os? ? "/#{path}" : path end manifest = Buildr::Packaging::Java::Manifest.new([{'Class-Path' => paths.map{|p| URI.encode(p)}.join(" ")}]) tjar = Tempfile.new(['javacmd', '.jar']) Zip::OutputStream.open(tjar.path) do |zos| zos.put_next_entry('META-INF/MANIFEST.MF') zos.write manifest.to_s zos.write "\n" end tjar.close cmd_args << '-classpath' << tjar.path else cmd_args << '-classpath' << cp.join(File::PATH_SEPARATOR) end end [:properties].each { |k, v| cmd_args << "-D#{k}=#{v}" } if [:properties] cmd_args += ([:java_args] || (ENV['JAVA_OPTS'] || ENV['JAVA_OPTIONS']).to_s.split).flatten cmd_args += args.flatten.compact tmp = nil begin # Windows can't handle cmd lines greater than 2048/8192 chars. # If our cmd line is longer, we create a batch file and execute it instead. if Util.win_os? && cmd_args.map(&:inspect).join(' ').size > 2048 # remove '-classpath' and the classpath itself from the cmd line. cp_i = cmd_args.index{|x| x.to_s =~ /^-classpath/} 2.times do cmd_args.delete_at cp_i unless cp_i.nil? end # create tmp batch file. tmp = Tempfile.new(['starter', '.bat']) tmp.write "@echo off\n" tmp.write "SET CLASSPATH=#{cp.join(File::PATH_SEPARATOR).gsub(%r{/}, '\\')}\n" tmp.write cmd_args.map(&:inspect).join(' ') tmp.close # set new cmd line. cmd_args = [tmp.path] end unless Buildr.application..dryrun info "Running #{name}" if name && [:verbose] block = lambda { |ok, res| fail "Failed to execute #{name}, see errors above" unless ok } unless block cmd_args = cmd_args.map(&:inspect).join(' ') if Util.win_os? sh(*cmd_args) do |ok, ps| block.call ok, ps end end ensure unless tmp.nil? tmp.close tmp.unlink end end end |
.javac(*args) ⇒ Object
:call-seq:
javac(*files, )
Runs Javac with the specified arguments.
The last argument may be a Hash with additional options:
-
:output – Target directory for all compiled class files.
-
:classpath – One or more file names, tasks or artifact specifications. These are all expanded into artifacts, and all tasks are invoked.
-
:sourcepath – Additional source paths to use.
-
:javac_args – Any additional arguments to pass (e.g. -extdirs, -encoding)
-
:name – Shows this name, otherwise shows the working directory.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/buildr/java/commands.rb', line 179 def javac(*args) = Hash === args.last ? args.pop : {} , :classpath, :sourcepath, :output, :javac_args, :name files = args.flatten.each { |f| f.invoke if f.respond_to?(:invoke) }.map(&:to_s). collect { |arg| File.directory?(arg) ? FileList["#{File.expand_path(arg)}/**/*.java"] : File.(arg) }.flatten name = [:name] || Dir.pwd cmd_args = [] cp = classpath_from() cmd_args << '-classpath' << cp.join(File::PATH_SEPARATOR) unless cp.empty? cmd_args << '-sourcepath' << [[:sourcepath]].flatten.join(File::PATH_SEPARATOR) if [:sourcepath] cmd_args << '-d' << File.([:output].to_s) if [:output] cmd_args += [:javac_args].flatten if [:javac_args] cmd_args += files unless Buildr.application..dryrun mkdir_p [:output] if [:output] info "Compiling #{files.size} source files in #{name}" trace (['javac'] + cmd_args).join(' ') Java.load ::Java::com.sun.tools.javac.Main.compile(cmd_args.to_java(::Java::java.lang.String)) == 0 or fail 'Failed to compile, see errors above' end end |
.javadoc(*args) ⇒ Object
:call-seq:
javadoc(*files, )
Runs Javadocs with the specified files and options.
This method accepts the following special options:
-
:output – The output directory
-
:classpath – Array of classpath dependencies.
-
:sourcepath – Array of sourcepaths (paths or tasks).
-
:name – Shows this name, otherwise shows the working directory.
All other options are passed to Javadoc as following:
-
true – As is, for example, :author=>true becomes -author
-
false – Prefixed, for example, :index=>false becomes -noindex
-
string – Option with value, for example, :windowtitle=>‘My project’ becomes -windowtitle “My project”
-
array – Option with set of values separated by spaces.
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 |
# File 'lib/buildr/java/commands.rb', line 220 def javadoc(*args) = Hash === args.last ? args.pop : {} fail "No output defined for javadoc" if [:output].nil? [:output] = File.([:output].to_s) cmd_args = [ '-d', [:output], trace?(:javadoc) ? '-verbose' : '-quiet' ] .reject { |key, value| [:output, :name, :sourcepath, :classpath].include?(key) }. each { |key, value| value.invoke if value.respond_to?(:invoke) }. each do |key, value| case value when true, nil cmd_args << "-#{key}" when false cmd_args << "-no#{key}" when Hash value.each { |k,v| cmd_args << "-#{key}" << k.to_s << v.to_s } else cmd_args += Array(value).map { |item| ["-#{key}", item.to_s] }.flatten end end [:sourcepath, :classpath].each do |option| [option].to_a.flatten.tap do |paths| cmd_args << "-#{option}" << paths.flatten.map(&:to_s).join(File::PATH_SEPARATOR) unless paths.empty? end end files = args.each {|arg| arg.invoke if arg.respond_to?(:invoke)}.collect {|arg| arg.is_a?(Project) ? arg.compile.sources.collect{|dir| Dir["#{File.expand_path(dir.to_s)}/**/*.java"]} : File.(arg.to_s) } cmd_args += files.flatten.uniq.map(&:to_s) name = [:name] || Dir.pwd unless Buildr.application..dryrun info "Generating Javadoc for #{name}" trace (['javadoc'] + cmd_args).join(' ') Java.load ::Java::com.sun.tools.javadoc.Main.execute(cmd_args.to_java(::Java::java.lang.String)) == 0 or fail 'Failed to generate Javadocs, see errors above' end end |