net-http-persistent usage respects timeouts
[ruby-mogilefs-client.git] / lib / mogilefs / bigfile.rb
blob5fc88faf568f89340e2f48252075a44c11ad0d99
1 # -*- encoding: binary -*-
2 require 'uri'
4 # Used for reading deprecated "bigfile" objects generated by the deprecated
5 # mogtool(1) utility.  This is for reading legacy data and not recommended for
6 # new projects.  MogileFS itself is capable of storing standalone objects
7 # of arbitrary length (as long as the underlying database and underlying
8 # filesystem on the DAV devices accept them).
10 module MogileFS::Bigfile
11   # VALID_TYPES = %w(file tarball partition).map { |x| x.freeze }.freeze
13   # returns a big_info hash if successful
14   def bigfile_stat(key)
15     bigfile_parse_info(get_file_data(key))
16   end
18   # returns total bytes written and the big_info hash if successful, raises an
19   # exception if not.  wr_io is expected to be an IO-like object capable of
20   # receiving the write method.
21   def bigfile_write(key, wr_io, opts = { :verify => false })
22     info = bigfile_stat(key)
23     total = 0
24     t = @get_file_data_timeout
26     # we only decode raw zlib deflated streams that mogtool (unfortunately)
27     # generates.  tarballs and gzip(1) are up to to the application to decrypt.
28     if info[:compressed] || opts[:verify]
29       wr_io = MogileFS::Bigfile::Filter.new(wr_io, info, opts)
30     end
32     info[:parts].each_with_index do |part,part_nr|
33       next if part_nr == 0 # info[:parts][0] is always empty
35       begin
36         sock = MogileFS::HTTPReader.first(part[:paths], t)
37       rescue
38         # part[:paths] may not be valid anymore due to rebalancing, however we
39         # can get_keys on key,<part_nr> and retry paths if all paths fail
40         part_key = "#{key.sub(/^_big_info:/, '')},#{part_nr}"
41         paths = get_paths(part_key)
42         paths.empty? and
43           raise MogileFS::Backend::NoDevices,
44                 "no device for key=#{part_key.inspect}", []
45         sock = MogileFS::HTTPReader.first(paths, t)
46       end
48       begin
49         w = MogileFS.io.copy_stream(sock, wr_io)
50       ensure
51         sock.close
52       end
54       wr_io.respond_to?(:md5_check!) and wr_io.md5_check!(part[:md5])
55       total += w
56     end
57     wr_io.flush
58     total += wr_io.flushed_bytes if wr_io.respond_to?(:flushed_bytes)
60     [ total, info ]
61   end
63   ##
64   # parses the contents of a _big_info: string or IO object
65   def bigfile_parse_info(info) # :nodoc:
66     rv = { :parts => [] }
67     info.each_line do |line|
68       line.chomp!
69       case line
70       when /^(des|type|filename)\s+(.+)$/
71         rv[$1.to_sym] = $2
72       when /^compressed\s+([01])$/
73         rv[:compressed] = ($1 == '1')
74       when /^(chunks|size)\s+(\d+)$/
75         rv[$1.to_sym] = $2.to_i
76       when /^part\s+(\d+)\s+bytes=(\d+)\s+md5=(.+)\s+paths:\s+(.+)$/
77         rv[:parts][$1.to_i] = {
78           :bytes => $2.to_i,
79           :md5 => $3.downcase,
80           :paths => $4.split(/\s*,\s*/),
81         }
82       end
83     end
85     rv
86   end
87 end
88 require "mogilefs/bigfile/filter"
90 __END__
91 # Copied from mogtool:
92 # http://code.sixapart.com/svn/mogilefs/utils/mogtool, r1221
94 # this is a temporary file that we delete when we're doing recording all chunks
96 _big_pre:<key>
98     starttime=UNIXTIMESTAMP
100 # when done, we write the _info file and delete the _pre.
102 _big_info:<key>
104     des Cow's ljdb backup as of 2004-11-17
105     type  { partition, file, tarball }
106     compressed {0, 1}
107     filename  ljbinlog.305.gz
108     partblocks  234324324324
111     part 1 <bytes> <md5hex>
112     part 2 <bytes> <md5hex>
113     part 3 <bytes> <md5hex>
114     part 4 <bytes> <md5hex>
115     part 5 <bytes> <md5hex>
117 _big:<key>,<n>
118 _big:<key>,<n>
119 _big:<key>,<n>
122 Receipt format:
124 BEGIN MOGTOOL RECIEPT
125 type partition
126 des Foo
127 compressed foo
129 part 1 bytes=23423432 md5=2349823948239423984 paths: http://dev5/2/23/23/.fid, http://dev6/23/423/4/324.fid
130 part 1 bytes=23423432 md5=2349823948239423984 paths: http://dev5/2/23/23/.fid, http://dev6/23/423/4/324.fid
131 part 1 bytes=23423432 md5=2349823948239423984 paths: http://dev5/2/23/23/.fid, http://dev6/23/423/4/324.fid
132 part 1 bytes=23423432 md5=2349823948239423984 paths: http://dev5/2/23/23/.fid, http://dev6/23/423/4/324.fid
135 END RECIEPT