Class: Storeband
- Inherits:
-
Object
- Object
- Storeband
- Defined in:
- lib/manband/store.rb
Overview
this class manage the storage of a job directory to S3
Constant Summary collapse
- @@log =
Logger.new(STDOUT)
Instance Method Summary collapse
-
#compress(dir, name) ⇒ Object
Compress a directory.
-
#sends3(name, bucket, access, secret) ⇒ Object
Sends the file to the S3 bucket name: file name bucket: destination bucket name access: user credential access secret: user credential secret.
-
#store(job, uid, bucket = "manband") ⇒ Object
Store a job workdir to S3.
Instance Method Details
#compress(dir, name) ⇒ Object
Compress a directory
17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/manband/store.rb', line 17 def compress(dir,name) Zip::ZipFile.open(name, Zip::ZipFile::CREATE)do |zipfile| Find.find(dir) do |path| Find.prune if File.basename(path)[0] == ?. dest = /#{dir}\/(\w.*)/.match(path) # Skip files if they exists begin zipfile.add(dest[1],path) if dest rescue Zip::ZipEntryExistsError end end end end |
#sends3(name, bucket, access, secret) ⇒ Object
Sends the file to the S3 bucket name: file name bucket: destination bucket name access: user credential access secret: user credential secret
71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/manband/store.rb', line 71 def sends3(name,bucket,access,secret) @@log.debug "connect to s3: "+FlowConfig.s3host+":"+FlowConfig.s3port.to_s+FlowConfig.s3path AWS::S3::Base.establish_connection!( :access_key_id => access, :secret_access_key => secret, :server => FlowConfig.s3host, :port => FlowConfig.s3port, :path => FlowConfig.s3path ) fbase = File.basename(name) AWS::S3::S3Object.store(fbase, open(name), bucket) @@log.debug "object stored" end |
#store(job, uid, bucket = "manband") ⇒ Object
Store a job workdir to S3
job: current job uid: user identifier bucket: bucket name to store the zip file
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/manband/store.rb', line 37 def store(job,uid,bucket="manband") user = User.get(uid) if user == nil job.update(:store => STORE_ERROR) return false end if user.s3_access.nil? || user.s3_secret.nil? job.update(:store => STORE_ERROR) return false end job.update(:store => STORE_RUN) zipfile = "manband-"+job.wid.to_s+"-"+job.node+".zip" if File.exists?(FlowConfig.workdir+"/"+zipfile) File.delete(FlowConfig.workdir+"/"+zipfile) end begin # compress @@log.debug "Compress to "+FlowConfig.workdir+"/"+zipfile compress(job.workdir, FlowConfig.workdir+"/"+zipfile) # Send file sends3(FlowConfig.workdir+"/"+zipfile,bucket,user.s3_access,user.s3_secret) rescue Exception => e @@log.error "An error occured during S3 operation: "+job.id.to_s+" "+e. job.update(:store => STORE_ERROR) return false end job.update(:store => STORE_OVER) end |