The help website/knowledgebase (bitwarden.com/help).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
fred_the_tech_writer 906e2ca0dd
Promote to Master (#748)
4 years ago
..
bench Promote to Master (#748) 4 years ago
ext/ruby_http_parser Promote to Master (#748) 4 years ago
lib Promote to Master (#748) 4 years ago
spec Promote to Master (#748) 4 years ago
tasks Promote to Master (#748) 4 years ago
.gitignore Promote to Master (#748) 4 years ago
.gitmodules Promote to Master (#748) 4 years ago
Gemfile Promote to Master (#748) 4 years ago
Gemfile.lock Promote to Master (#748) 4 years ago
LICENSE-MIT Promote to Master (#748) 4 years ago
README.md Promote to Master (#748) 4 years ago
Rakefile Promote to Master (#748) 4 years ago
http_parser.rb.gemspec Promote to Master (#748) 4 years ago

README.md

http_parser.rb

A simple callback-based HTTP request/response parser for writing http servers, clients and proxies.

This gem is built on top of joyent/http-parser and its java port http-parser/http-parser.java.

Supported Platforms

This gem aims to work on all major Ruby platforms, including:

  • MRI 1.8 and 1.9
  • Rubinius
  • JRuby
  • win32

Usage

require "http/parser"

parser = Http::Parser.new

parser.on_headers_complete = proc do
  p parser.http_version

  p parser.http_method # for requests
  p parser.request_url

  p parser.status_code # for responses

  p parser.headers
end

parser.on_body = proc do |chunk|
  # One chunk of the body
  p chunk
end

parser.on_message_complete = proc do |env|
  # Headers and body is all parsed
  puts "Done!"
end

Feed raw data from the socket to the parser

parser << raw_data

Advanced Usage

Accept callbacks on an object

module MyHttpConnection
  def connection_completed
    @parser = Http::Parser.new(self)
  end

  def receive_data(data)
    @parser << data
  end

  def on_message_begin
    @headers = nil
    @body = ''
  end

  def on_headers_complete(headers)
    @headers = headers
  end

  def on_body(chunk)
    @body << chunk
  end

  def on_message_complete
    p [@headers, @body]
  end
end

Stop parsing after headers

parser = Http::Parser.new
parser.on_headers_complete = proc{ :stop }

offset = parser << request_data
body = request_data[offset..-1]