Sha256: 8223170ac295aa658c403b21d808ead5dfc2a7b73f4e2baa3a10a664263a1081
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
module Extface class Device < ActiveRecord::Base attr_writer :driver_class belongs_to :extfaceable, polymorphic: true belongs_to :driver, inverse_of: :device has_many :jobs, inverse_of: :device accepts_nested_attributes_for :driver delegate :print?, :fiscal?, :raw?, :report?, to: :driver, allow_nil: true validates_uniqueness_of :name, :uuid, scope: [:extfaceable_id, :extfaceable_type] before_create do self.uuid = SecureRandom.hex self.name = uuid unless name.present? end before_save do if @driver_class.present? and @driver_class != driver_class.try(:to_s) driver.try(:destroy) self.driver = @driver_class.constantize.create if @driver_class.present? end end def driver_class driver.try(:class) end def driver_name driver_class::NAME if driver_class end def session(description = nil) job = jobs.create!(description: description) Thread.new do begin raise 'No driver configured' unless driver.present? driver.set_job(job) yield driver job.complete! rescue => e STDERR.puts e.message e.backtrace.each do |line| p line end job.failed! e.message ensure ActiveRecord::Base.connection.close end end job end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
extface-0.1.4 | app/models/extface/device.rb |
extface-0.1.3 | app/models/extface/device.rb |
extface-0.1.2 | app/models/extface/device.rb |
extface-0.1.1 | app/models/extface/device.rb |