module Veewee module Provider module Core module Helper require 'webrick' include WEBrick module Servlet class FileServlet < WEBrick::HTTPServlet::AbstractServlet attr_reader :ui, :threaded def initialize(server,localfile,ui,threaded) super(server) @server=server @localfile=localfile @ui=ui @threaded=threaded end def do_GET(request,response) response['Content-Type']='text/plain' response.status = 200 content = File.open(@localfile, "r").read response.body = case File.extname(@localfile) when ".erb" ui.info "Rendering and serving file #{@localfile}" ERB.new(content).result(binding) else ui.info "Serving file #{@localfile}" content end if not @threaded ui.info "Shutting down for #{@localfile}" @server.shutdown end end end end module Web def wait_for_http_request(filename,options) # original blocking s = server_for_http_request(filename,options) s.start end def allow_for_http_request(filename,options) # start in new thread s = server_for_http_request(filename,options.merge({:threaded => false})) Thread.new { s.start } end def server_for_http_request(filename,options={:timeout => 10, :web_dir => "", :port => 7125, :threaded => false}) # Calculate the OS equivalent of /dev/null , on windows this is NUL: # http://www.ruby-forum.com/topic/115472 fn = test(?e, '/dev/null') ? '/dev/null' : 'NUL:' webrick_logger=WEBrick::Log.new(fn, WEBrick::Log::INFO) web_dir=options[:web_dir] filename=filename s= ::WEBrick::HTTPServer.new( :Port => options[:port], :Logger => webrick_logger, :AccessLog => webrick_logger ) mount_filename = filename.start_with?('/') ? filename : "/#{filename}" env.logger.debug("mounting file #{mount_filename}") s.mount("#{mount_filename}", Veewee::Provider::Core::Helper::Servlet::FileServlet,File.join(web_dir,filename),ui,options[:threaded]) trap("INT"){ s.shutdown ui.info "Stopping webserver" exit } s end end #Class end #Module end #Module end #Module end #Module