Skip to content

Instantly share code, notes, and snippets.

@monkstone
Last active December 20, 2015 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monkstone/6172815 to your computer and use it in GitHub Desktop.
Save monkstone/6172815 to your computer and use it in GitHub Desktop.
jruby.sh
#!/usr/bin/env bash
export GEM_HOME=/home/tux/.gem/ruby/2.0.0
export JAVA_HOME=/opt/jdk1.7.0_25
/opt/jruby-1.7.4/bin/jruby -J-Djruby.launch.inproc=false $@
require 'rake/clean'
require 'shellwords'
JRUBY_VERSION = "1.7.4"
PROCESSING_VERSION = "2.0.2"
CLOBBER.include("processing-#{PROCESSING_VERSION}-linux64.tgz", "jruby-complete-#{JRUBY_VERSION}.jar")
desc "download and copy to ruby-processing"
task :default => [:download, :copy_ruby, :copy]
desc "download Processing & JRuby upstream sources"
task :download => ["processing-#{PROCESSING_VERSION}-linux64.tgz", "jruby-complete-#{JRUBY_VERSION}.jar"]
file "processing-#{PROCESSING_VERSION}-linux64.tgz" do
sh "wget http://download.processing.org/processing-#{PROCESSING_VERSION}-linux64.tgz"
check_sha1("processing-#{PROCESSING_VERSION}-linux64.tgz", "6709bbe97520a0a2d1d76a5cb9671136aa7215eb")
end
file "jruby-complete-#{JRUBY_VERSION}.jar" do
sh "wget http://jruby.org.s3.amazonaws.com/downloads/#{JRUBY_VERSION}/jruby-complete-#{JRUBY_VERSION}.jar"
check_sha1("jruby-complete-#{JRUBY_VERSION}.jar", "a117e28e715184074980d6228962b9fb6b5607ac")
end
directory "../lib/core"
desc "copy libs & jars"
task :copy => ["../lib/core"] do
processing_zip = File.expand_path("processing-#{PROCESSING_VERSION}-linux64.tgz")
sh "cd ../lib/core && tar --wildcards --strip=3 -zvxf #{Shellwords.shellescape(processing_zip)} processing-#{PROCESSING_VERSION}/core/library/*.jar"
dirs = %w{dxf minim net pdf serial video}
Dir.chdir("../library/") do
sh "rm -rf processing-#{PROCESSING_VERSION}/ #{dirs.join(" ")}"
inside_zip_dirs = dirs.collect { |d| "processing-#{PROCESSING_VERSION}/modes/java/libraries/#{d}/library/*" }
sh "tar --wildcards -zxvf #{Shellwords.shellescape(processing_zip)} #{inside_zip_dirs.join(" ")}"
sh "mv processing-#{PROCESSING_VERSION}/modes/java/libraries/* ."
sh "rm -r processing-#{PROCESSING_VERSION}/"
end
end
def check_sha1(filename, expected_hash)
require "digest/sha1"
sha1 = Digest::SHA1.new
File.open(filename, "r") do |f|
while buf = f.read(4096)
sha1.update(buf)
end
end
if sha1.hexdigest != expected_hash
raise "bad sha1 checksum for #{filename} (expected #{expected_hash} got #{sha1.hexdigest})"
end
end
require 'ostruct'
require 'fileutils'
require 'ruby-processing/config'
module Processing
# Utility class to handle the different commands that the 'rp5' command
# offers. Able to run, watch, live, create, app, and unpack
class Runner
HELP_MESSAGE = <<-EOS
Version: #{Processing::VERSION}
Ruby-Processing is a little shim between Processing and JRuby that helps
you create sketches of code art.
Usage:
rp5 [run | watch | live | create [width height] | app | unpack] path/to/sketch
run: run sketch once
watch: watch for changes on the file and relaunch it on the fly
live: launch sketch and give an interactive IRB shell
create: create new sketch. Use --bare to generate simpler sketches without a class
app: create an application version of the sketch
unpack: unpack samples or library
Common options:
--jruby: passed, use the installed version of jruby, instead of
our vendored jarred one (useful for gems).
Configuration file:
A YAML configuration file is located at #{Processing::CONFIG_FILE_PATH}
Possible options are:
java_args: pass additionnals arguments to Java VM upon launching.
Useful for increasing available memory (for example:
-Xms256m -Xmx256m) or force 32 bits mode (-d32).
sketchbook_path: specify Processing sketchbook path to load additionnal
libraries
Examples:
rp5 unpack samples
rp5 run samples/contributed/jwishy.rb
rp5 create some_new_sketch 640 480
rp5 create some_new_sketch --p3d 640 480
rp5 watch some_new_sketch.rb
Everything Else:
http://wiki.github.com/jashkenas/ruby-processing
EOS
# Dispatch central.
def execute!
case @options.action
when 'run' then run(@options.path, @options.args)
when 'watch' then watch(@options.path, @options.args)
when 'live' then live(@options.path, @options.args)
when 'create' then create(@options.path, @options.args, @options.p3d)
when 'app' then app(@options.path)
when 'unpack' then unpack(@options.path)
when /-v/ then show_version
when /-h/ then show_help
else
show_help
end
end
# Parse the command-line options. Keep it simple.
def parse_options(args)
@options = OpenStruct.new
@options.p3d = !!args.delete('--p3d')
@options.jruby = !!args.delete('--jruby')
@options.action = args[0] || nil
@options.path = args[1] || File.basename(Dir.pwd + '.rb')
@options.args = args[2..-1] || []
end
# Create a fresh Ruby-Processing sketch, with the necessary
# boilerplate filled out.
def create(sketch, args, p3d)
Processing::Creator.new.create!(sketch, args, p3d)
end
# Just simply run a ruby-processing sketch.
def run(sketch, args)
ensure_exists(sketch)
spin_up('run.rb', sketch, args)
end
# Run a sketch, keeping an eye on it's file, and reloading
# whenever it changes.
def watch(sketch, args)
ensure_exists(sketch)
spin_up('watch.rb', sketch, args)
end
1,17 Top
# Run a sketch, opening its guts to IRB, letting you play with it.
def live(sketch, args)
ensure_exists(sketch)
spin_up('live.rb', sketch, args)
end
# Generate a cross-platform application of a given Ruby-Processing sketch.
def app(sketch)
Processing::ApplicationExporter.new.export!(sketch)
end
# Install the included samples to a given path, where you can run and
# alter them to your heart's content.
def unpack(dir)
require 'fileutils'
usage = "Usage: rp5 unpack [samples | library]"
puts usage and return unless dir.match(/\A(samples|library)\Z/)
FileUtils.cp_r("#{RP5_ROOT}/#{dir}", "#{Dir.pwd}/#{dir}")
end
# Display the current version of Ruby-Processing.
def show_version
puts "Ruby-Processing version #{Processing::VERSION}"
end
# Show the standard help/usage message.
def show_help
puts HELP_MESSAGE
end
private
# Trade in this Ruby instance for a JRuby instance, loading in a
# If --jruby is passed, use the installed version of jruby, instead of
# our vendored jarred one (useful for gems).
def spin_up(starter_script, sketch, args)
runner = "#{RP5_ROOT}/lib/ruby-processing/runners/#{starter_script}"
java_args = discover_java_args(sketch)
command = @options.jruby ?
['jruby', java_args, runner, sketch, args].flatten :
['java', java_args, '-cp', jruby_complete, 'org.jruby.Main', runner, sketch, args].flatten
exec *command
# exec replaces the Ruby process with the JRuby one.
end
# If you need to pass in arguments to Java, such as the ones on this page:
# http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html
# then type them into a java_args.txt in your data directory next to your sketch.
def discover_java_args(sketch)
arg_file = "#{File.dirname(sketch)}/data/java_args.txt"
args = []
args += dock_icon
if File.exists?(arg_file)
args += File.read(arg_file).split(/\s+/)
elsif CONFIG["java_args"]
args += CONFIG["java_args"].split(/\s+/)
end
args.map! {|arg| "-J#{arg}" } if @options.jruby
args
end
def ensure_exists(sketch)
puts "Couldn't find: #{sketch}" and exit unless File.exists?(sketch)
end
def jruby_complete
File.join(RP5_ROOT, 'lib/ruby/jruby-complete.jar')
end
# On the Mac, we can display a fat, shiny ruby in the Dock.
def dock_icon
mac = RUBY_PLATFORM.match(/darwin/i) || (RUBY_PLATFORM == 'java' && ENV_JAVA['os.name'].match(/mac/i))
mac ? ["-Xdock:name=Ruby-Processing", "-Xdock:icon=#{RP5_ROOT}/lib/templates/application/Contents/Resources/sketch.icns"] : []
end
end # class Runner
end # module Processing
186,23 Bot
@monkstone
Copy link
Author

Updated to include support when directories have special characters in their names.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment