Rubyはeventmachineを使ってHTTPサーバにファイルダウンロード機能を追加します。


考え方:
ruby eventmachineとem-http-server gemを使って、簡単なファイルダウンロード機能を提供するHttpServerを完成します。
EMを使用したFileStereamerは非同期でファイルを送信し、ファイルを送る時はまずheaderを組み立ててからFileStereamerを呼び出します。
コード:

require 'rubygems'
require 'eventmachine'
require 'em-http-server'
 
class HTTPHandler < EM::HttpServer::Server
 attr_accessor :filename, :filesize, :path
 
 def process_http_request
  #send file async
  if @http_request_method.to_s =~ /GET/ && @http_request_uri.to_s.end_with?(filename)
   send_data "HTTP/1.1 200 OK
" send_data "Server: XiaoMi
" send_data "Connection: Keep-Alive
" send_data "Keep-Alive: timeout=15
" send_data "Content-Type: application/octet-stream
" send_data "Content-Disposition: filename='#{filename}'
" send_data "Content-Length: #{filesize}
" send_data "
" streamer = EventMachine::FileStreamer.new(self, path) streamer.callback { # file was sent successfully close_connection_after_writing } else response = EM::DelegatedHttpResponse.new(self) response.status = 200 response.content_type 'text/html' response.content = "Package HttpServer<br>usage: wget http://host:port/#{filename}" response.send_response end end end EM::run do path = '/tmp/aaa.tar.gz' EM::start_server("0.0.0.0", 8080, HTTPHandler) do |conn| conn.filename = File.basename(path) conn.filesize = File.size(path) conn.path = path end end
PS:eventmachineのインストールエラーについて
windowsにeventmachineをインストールするといつもエラーが発生します。
 

Building native extensions. This could take a while...
ERROR: Error installing eventmachine:
    ERROR: Failed to build gem native extension.
または他の種類:

ERROR: Error installing ruby-debug:
      The 'linecache' native gem requires installed build tools.
   
  Please update your PATH to include build tools or download the DevKit
  from 'http://rubyinstaller.org/downloads' and follow the instructions
  at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'
長いGoogleを経て、2つのソロを見つけました。
1.より低いバージョンのeventmachineを使う
 
このヒントはずっと続きます。下にはもう一つの大きなミスがあります。全部Cのコンパイルミスです。ネットで二つの方法を探しました。
(1)

gem install eventmachine-win32   
これは低バージョンでインストールされているようです。
(2)gem install

 eventmachine --pre   
これはbeta 1.00をインストールしているようです。
 
2.アップグレードdevkit
 
上に具体的な解決策はありませんでしたが、問題が発生する可能性のある二つの原因があります。
(1)Cコンパイル環境がない
(2)パスの中にスペースがあります。
上のエラーログを見てください。環境をコンパイルする問題かもしれません。そこで探してみました。
私のrubyはone-click installerで詰めました。バージョンは1.8.6-p 398です。
ルビーinstallerのaddonページで、DevKitを見つけました。
DevKitの説明を見ました。
//Sometimes you just want RubyGems to build that cool native、
//C-based extension without squawking.
//Who's your buddyDevKit
これが必要です。
 
エラーの原因はeventmachineをインストールする時、build toolsが必要ですが、システムにはありません。エラーメッセージの中には解決法も提示されています。
(1)までhttp://rubyinstaller.org/downloads/ dev kit C DevKi-tdm-32-4.5.1-201404-sfx.exeをダウンロードします。
(2)に従ってhttp://github.com/oneclick/rubyinstaller/wiki/Development-Kit/ インストールdev kit
主なインストール手順は以下の通りです。
元のシステムに既に旧版のdev kitがインストールされていたら削除します。
上記のdev kitをダウンロードします。
ダウンロードしたファイルを解凍して指定されたディレクトリに行きます。c:/devkitなどです。注意:ディレクトリにスペースがないようにしてください。
ルビーdk.rbを実行し、それぞれの提示に従ってルビーdk.rb initとルビーdk.rb installを実行して、ルビーを強化します。
実行可能

gem install rdiscount Cplatform=ruby 
を選択します。
インストール手順に従い、DevKitのインストールが完了しました。とても簡単です。
その後、再度eventmachineをインストールします。

gem install eventmachine