summaryrefslogtreecommitdiff
path: root/lib/tapicero/json_stream.rb
blob: 64b160f859497446db22b4e31d5c9f55c0804b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'net/http'
require 'uri'
require 'yajl'

# UNUSED: We're currently using couchrest instead as that is what we use all
#         over the place. It internally uses curl to fetch the stream.
#
# Since Yajl HTTP Stream will go a way in version 2.0 here's a simple substitude.
#
module Tapicero
  class JsonStream

    def self.get(url, options, &block)
      uri = URI(url)
      parser = Yajl::Parser.new(options)
      parser.on_parse_complete = block
      Net::HTTP.start(uri.host, uri.port) do |http|
        request = Net::HTTP::Get.new uri.request_uri


        http.request request do |response|
          response.read_body do |chunk|
            parser << chunk
          end
        end
      end

    end
  end
end