Module: Open
- Defined in:
- lib/rbbt/util/open.rb
Defined Under Namespace
Classes: OpenGzipError, OpenURLError
Constant Summary collapse
- REMOTE_CACHEDIR =
"/tmp/open_cache"
- LAST_TIME =
Remote WGET
{}
Class Attribute Summary collapse
-
.repository_dirs ⇒ Object
Returns the value of attribute repository_dirs.
Class Method Summary collapse
- .add_cache(url, data, options = {}) ⇒ Object
-
.bgunzip(stream) ⇒ Object
Decompression.
- .bgzip?(file) ⇒ Boolean
- .cachedir ⇒ Object
- .cachedir=(cachedir) ⇒ Object
- .can_open?(file) ⇒ Boolean
-
.clean_cache(url, options = {}) ⇒ Object
Open Read Write.
- .digest_url(url, options = {}) ⇒ Object
- .exists?(file) ⇒ Boolean
- .exists_in_repo(dir, sub_path, content) ⇒ Object
- .file_open(file, grep, mode = 'r', invert_grep = false) ⇒ Object
- .file_write(file, content, mode = 'w') ⇒ Object
- .find_repo_dir(file) ⇒ Object
- .get_repo_from_dir(dir) ⇒ Object
- .get_stream_from_repo(dir, sub_path) ⇒ Object
-
.grep(stream, grep, invert = false) ⇒ Object
Grep.
- .gunzip(stream) ⇒ Object
- .gzip?(file) ⇒ Boolean
-
.in_cache(url, options = {}) ⇒ Object
Cache.
- .lock(file, options = {}, &block) ⇒ Object
- .mv(source, target, options) ⇒ Object
- .open(url, options = {}) ⇒ Object
- .read(file, options = {}, &block) ⇒ Object
-
.remote?(file) ⇒ Boolean
Questions.
- .remove_from_cache(url, options = {}) ⇒ Object
- .remove_from_repo(dir, sub_path, recursive = false) ⇒ Object
- .rm(file) ⇒ Object
- .rm_rf(file) ⇒ Object
- .save_content_in_repo(dir, sub_path, content) ⇒ Object
- .unzip(stream) ⇒ Object
- .wait(lag, key = nil) ⇒ Object
- .wget(url, options = {}) ⇒ Object
- .write(file, content = nil, options = {}) ⇒ Object
- .zip?(file) ⇒ Boolean
Class Attribute Details
.repository_dirs ⇒ Object
Returns the value of attribute repository_dirs.
16 17 18 |
# File 'lib/rbbt/util/open.rb', line 16 def repository_dirs @repository_dirs end |
Class Method Details
.add_cache(url, data, options = {}) ⇒ Object
121 122 123 124 |
# File 'lib/rbbt/util/open.rb', line 121 def self.add_cache(url, data, = {}) file = File.join(REMOTE_CACHEDIR, digest_url(url, )) Misc.sensiblewrite(file, data) end |
.bgunzip(stream) ⇒ Object
Decompression
290 291 292 |
# File 'lib/rbbt/util/open.rb', line 290 def self.bgunzip(stream) Bgzf.setup stream end |
.bgzip?(file) ⇒ Boolean
315 316 317 |
# File 'lib/rbbt/util/open.rb', line 315 def self.bgzip?(file) !! (file =~ /\.bgz$/) end |
.cachedir ⇒ Object
35 36 37 |
# File 'lib/rbbt/util/open.rb', line 35 def self.cachedir REMOTE_CACHEDIR end |
.cachedir=(cachedir) ⇒ Object
30 31 32 33 |
# File 'lib/rbbt/util/open.rb', line 30 def self.cachedir=(cachedir) REMOTE_CACHEDIR.replace cachedir FileUtils.mkdir_p REMOTE_CACHEDIR unless File.exist? REMOTE_CACHEDIR end |
.can_open?(file) ⇒ Boolean
410 411 412 |
# File 'lib/rbbt/util/open.rb', line 410 def self.can_open?(file) String === file and (File.exists?(file) or remote?(file)) end |
.clean_cache(url, options = {}) ⇒ Object
Open Read Write
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
# File 'lib/rbbt/util/open.rb', line 326 def self.clean_cache(url, = {}) = Misc.add_defaults , :noz => false, :mode => 'r' = [:wget_options] || {} [:nice] = .delete(:nice) [:nice_key] = .delete(:nice_key) [:quiet] = .delete(:quiet) ["--post-data="] = .delete(:post) if .include? :post ["--post-file"] = .delete("--post-file") if .include? "--post-file" ["--post-file="] = .delete("--post-file=") if .include? "--post-file=" [:cookies] = .delete(:cookies) cache_file = in_cache(url, ) Misc.lock(cache_file) do FileUtils.rm(cache_file) end if cache_file end |
.digest_url(url, options = {}) ⇒ Object
95 96 97 98 |
# File 'lib/rbbt/util/open.rb', line 95 def self.digest_url(url, = {}) params = [url, .values_at("--post-data", "--post-data="), (.include?("--post-file")? Open.read(["--post-file"]).split("\n").sort * "\n" : "")] digest = Misc.digest(params.inspect) end |
.exists?(file) ⇒ Boolean
268 269 270 271 272 273 274 275 |
# File 'lib/rbbt/util/open.rb', line 268 def self.exists?(file) if (dir_sub_path = find_repo_dir(file)) dir_sub_path.push file exists_in_repo(*dir_sub_path) else File.exists? file end end |
.exists_in_repo(dir, sub_path, content) ⇒ Object
173 174 175 176 177 178 |
# File 'lib/rbbt/util/open.rb', line 173 def self.exists_in_repo(dir, sub_path, content) repo = get_repo_from_dir(dir) repo.read_and_close do repo.include? sub_path end end |
.file_open(file, grep, mode = 'r', invert_grep = false) ⇒ Object
206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/rbbt/util/open.rb', line 206 def self.file_open(file, grep, mode = 'r', invert_grep = false) if (dir_sub_path = find_repo_dir(file)) stream = get_stream_from_repo(*dir_sub_path) else stream = File.open(file, mode) end if grep grep(stream, grep, invert_grep) else stream end end |
.file_write(file, content, mode = 'w') ⇒ Object
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
# File 'lib/rbbt/util/open.rb', line 220 def self.file_write(file, content, mode = 'w') if (dir_sub_path = find_repo_dir(file)) dir_sub_path.push content save_content_in_repo(*dir_sub_path) else File.open(file, mode) do |f| begin f.flock(File::LOCK_EX) f.write content f.flock(File::LOCK_UN) ensure f.close unless f.closed? end end end end |
.find_repo_dir(file) ⇒ Object
180 181 182 183 184 185 186 187 188 |
# File 'lib/rbbt/util/open.rb', line 180 def self.find_repo_dir(file) self.repository_dirs.each do |dir| if file.start_with? dir sub_path = file.to_s[dir.length..-1] return [dir, sub_path] end end nil end |
.get_repo_from_dir(dir) ⇒ Object
139 140 141 142 143 144 145 |
# File 'lib/rbbt/util/open.rb', line 139 def self.get_repo_from_dir(dir) @repos ||= {} @repos[dir] ||= begin repo_path = File.join(dir, '.file_repo') Persist.open_tokyocabinet(repo_path, false, :clean,TokyoCabinet::BDB ) end end |
.get_stream_from_repo(dir, sub_path) ⇒ Object
147 148 149 150 151 152 153 |
# File 'lib/rbbt/util/open.rb', line 147 def self.get_stream_from_repo(dir, sub_path) repo = get_repo_from_dir(dir) repo.read_and_close do content = repo[sub_path] content.nil? ? nil : StringIO.new(content) end end |
.grep(stream, grep, invert = false) ⇒ Object
Grep
128 129 130 131 132 133 134 135 136 137 |
# File 'lib/rbbt/util/open.rb', line 128 def self.grep(stream, grep, invert = false) case when Array === grep TmpFile.with_file(grep * "\n", false) do |f| CMD.cmd("grep #{invert ? '-v' : ''}", "-w" => true, "-f" => f, :in => stream, :pipe => true, :post => proc{FileUtils.rm f}) end else CMD.cmd("grep #{invert ? '-v ' : ''} '#{grep}' -", :in => stream, :pipe => true, :post => proc{begin stream.force_close; rescue Exception; end if stream.respond_to?(:force_close)}) end end |
.gunzip(stream) ⇒ Object
294 295 296 297 |
# File 'lib/rbbt/util/open.rb', line 294 def self.gunzip(stream) #Zlib::GzipReader.new(stream) CMD.cmd('zcat', :in => stream, :pipe => true) end |
.gzip?(file) ⇒ Boolean
311 312 313 |
# File 'lib/rbbt/util/open.rb', line 311 def self.gzip?(file) !! (file =~ /\.gz$/) end |
.in_cache(url, options = {}) ⇒ Object
Cache
101 102 103 104 105 106 107 108 |
# File 'lib/rbbt/util/open.rb', line 101 def self.in_cache(url, = {}) filename = File.join(REMOTE_CACHEDIR, digest_url(url, )) if File.exists? filename return filename else nil end end |
.lock(file, options = {}, &block) ⇒ Object
277 278 279 280 281 282 283 284 285 |
# File 'lib/rbbt/util/open.rb', line 277 def self.lock(file, = {}, &block) if (dir_sub_path = find_repo_dir(file)) dir, sub_path = dir_sub_path repo = get_repo_from_dir(dir) Misc.lock_in_repo(repo, sub_path, &block) else Misc.lock(file, , &block) end end |
.mv(source, target, options) ⇒ Object
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'lib/rbbt/util/open.rb', line 237 def self.mv(source, target, ) dir_sub_path_source = find_repo_dir(source) dir_sub_path_target = find_repo_dir(target) if dir_sub_path_source.nil? and dir_sub_path_target.nil? FileUtils.mkdir_p File.dirname(target) unless File.exists? File.dirname(target) return FileUtils.mv source, target end if dir_sub_path_source.nil? save_content_in_repo(dir_sub_path_target[0], dir_sub_path_target[1], Open.read(source)) return nil end if dir_sub_path_target.nil? Open.write(target, get_stream_from_repo(dir_sub_path_source)) return nil end repo_source = get_repo_from_dir(dir_sub_path_source[0]) repo_target = get_repo_from_dir(dir_sub_path_target[0]) repo_source.write_and_close do repo_target.write_and_close do repo_source[dir_sub_path_source[1]] = repo_target[dir_sub_path_target[1]] end end return nil end |
.open(url, options = {}) ⇒ Object
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
# File 'lib/rbbt/util/open.rb', line 344 def self.open(url, = {}) if IO === url if block_given? res = yield url url.close return res else return url end end = Misc.add_defaults , :noz => false, :mode => 'r' mode = Misc. , :mode = [:wget_options] || {} [:nice] = .delete(:nice) [:nice_key] = .delete(:nice_key) [:quiet] = .delete(:quiet) ["--post-data="] = .delete(:post) if .include? :post ["--post-file"] = .delete("--post-file") if .include? "--post-file" ["--post-file="] = .delete("--post-file=") if .include? "--post-file=" [:cookies] = .delete(:cookies) io = case when (IO === url or StringIO === url) url when (not remote?(url)) file_open(url, [:grep], mode, [:invert_grep]) when ([:nocache] and [:nocache] != :update) # What about grep? wget(url, ) when ([:nocache] != :update and in_cache(url, )) file_open(in_cache(url, ), [:grep], mode, [:invert_grep]) else io = wget(url, ) add_cache(url, io, ) file_open(in_cache(url, ), [:grep], mode, [:invert_grep]) end io = unzip(io) if ((String === url and zip?(url)) and not [:noz]) or [:zip] io = gunzip(io) if ((String === url and gzip?(url)) and not [:noz]) or [:gzip] io = bgunzip(io) if ((String === url and bgzip?(url)) and not [:noz]) or [:bgzip] if block_given? begin return yield(io) rescue Exception io.abort if io.respond_to? :abort io.join if io.respond_to? :join raise $! ensure io.join if io.respond_to? :join io.close if io.respond_to? :close and not io.closed? end else io end class << io; attr_accessor :filename end io.filename = url.to_s io end |
.read(file, options = {}, &block) ⇒ Object
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'lib/rbbt/util/open.rb', line 414 def self.read(file, = {}, &block) open(file, ) do |f| if block_given? res = [] while not f.eof? l = f.gets l = Misc.fixutf8(l) res << yield(l) end res else Misc.fixutf8(f.read) end end end |
.remote?(file) ⇒ Boolean
Questions
307 308 309 |
# File 'lib/rbbt/util/open.rb', line 307 def self.remote?(file) !! (file =~ /^(?:https?|ftp):\/\//) end |
.remove_from_cache(url, options = {}) ⇒ Object
110 111 112 113 114 115 116 117 118 119 |
# File 'lib/rbbt/util/open.rb', line 110 def self.remove_from_cache(url, = {}) digest = Misc.digest([url, .values_at("--post-data", "--post-data="), (.include?("--post-file")? Open.read(["--post-file"]) : "")].inspect) filename = File.join(REMOTE_CACHEDIR, digest) if File.exists? filename FileUtils.rm filename else nil end end |
.remove_from_repo(dir, sub_path, recursive = false) ⇒ Object
162 163 164 165 166 167 168 169 170 171 |
# File 'lib/rbbt/util/open.rb', line 162 def self.remove_from_repo(dir, sub_path, recursive = false) repo = get_repo_from_dir(dir) repo.write_and_close do if recursive repo.outlist repo.range sub_path, true, sub_path.sub(/.$/,('\1'.ord + 1).chr), false else repo.outlist sub_path end end end |
.rm(file) ⇒ Object
190 191 192 193 194 195 196 |
# File 'lib/rbbt/util/open.rb', line 190 def self.rm(file) if (dir_sub_path = find_repo_dir(file)) remove_from_repo(*dir_sub_path) else FileUtils.rm(file) end end |
.rm_rf(file) ⇒ Object
198 199 200 201 202 203 204 |
# File 'lib/rbbt/util/open.rb', line 198 def self.rm_rf(file) if (dir_sub_path = find_repo_dir(file)) remove_from_repo(dir_sub_path[0], dir_sub_path[1], true) else FileUtils.rm_rf(file) end end |
.save_content_in_repo(dir, sub_path, content) ⇒ Object
155 156 157 158 159 160 |
# File 'lib/rbbt/util/open.rb', line 155 def self.save_content_in_repo(dir, sub_path, content) repo = get_repo_from_dir(dir) repo.write_and_close do repo[sub_path] = content end end |
.unzip(stream) ⇒ Object
299 300 301 302 303 |
# File 'lib/rbbt/util/open.rb', line 299 def self.unzip(stream) TmpFile.with_file(stream.read) do |filename| StringIO.new(CMD.cmd("unzip '{opt}' #{filename}", "-p" => true, :pipe => true).read) end end |
.wait(lag, key = nil) ⇒ Object
41 42 43 44 45 46 47 48 49 |
# File 'lib/rbbt/util/open.rb', line 41 def self.wait(lag, key = nil) time = Time.now if LAST_TIME[key] != nil && (time < LAST_TIME[key] + lag) sleep (LAST_TIME[key] + lag) - time end LAST_TIME[key] = Time.now end |
.wget(url, options = {}) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/rbbt/util/open.rb', line 51 def self.wget(url, = {}) Log.low "WGET:\n -URL: #{ url }\n -OPTIONS: #{.inspect}" = Misc.add_defaults , "--user-agent=" => 'firefox', :pipe => true wait([:nice], [:nice_key]) if [:nice] .delete(:nice) .delete(:nice_key) pipe = .delete(:pipe) quiet = .delete(:quiet) post = .delete(:post) = .delete(:cookies) ["--quiet"] = quiet if ["--quiet"].nil? ["--post-data="] ||= post if post if ["--save-cookies"] = ["--load-cookies"] = ["--keep-session-cookies"] = true end stderr = case when ['stderr'] ['stderr'] when ['--quiet'] false else nil end begin = .merge( '-O' => '-') [:pipe] = pipe unless pipe.nil? [:stderr] = stderr unless stderr.nil? CMD.cmd("wget '#{ url }'", ) rescue STDERR.puts $!.backtrace.inspect raise OpenURLError, "Error reading remote url: #{ url }.\n#{$!.}" end end |
.write(file, content = nil, options = {}) ⇒ Object
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
# File 'lib/rbbt/util/open.rb', line 430 def self.write(file, content = nil, = {}) = Misc.add_defaults , :mode => 'w' file = file.find([:where]) if Path === file mode = Misc. , :mode FileUtils.mkdir_p File.dirname(file) case when block_given? begin File.open(file, mode) do |f| yield f end rescue Exception FileUtils.rm file if File.exists? file raise $! end when content.nil? File.open(file, mode){|f| f.write "" } when String === content file_write(file, content, mode) else begin File.open(file, mode) do |f| f.flock(File::LOCK_EX) while block = content.read(2014) f.write block end f.flock(File::LOCK_UN) end rescue Exception FileUtils.rm_rf file if File.exists? file raise $! end content.close end end |
.zip?(file) ⇒ Boolean
319 320 321 |
# File 'lib/rbbt/util/open.rb', line 319 def self.zip?(file) !! (file =~ /\.zip/) end |