require 'singleton' # Handles a pool of Worker objects module RestFtpDaemon class WorkerPool include Singleton include BmcDaemonLib::LoggerHelper include ::NewRelic::Agent::Instrumentation::ControllerInstrumentation # Class options attr_reader :wid def initialize # Logger log_pipe :workers # Prepare status hash and vars @statuses = {} @workers = {} @mutex = Mutex.new # Identifiers generator @seqno = 0 end def start_em_all # Read configuration or initialize with empty hash pools = Conf.at[:pools] pools = {} unless pools.is_a? Hash # Minimum one worker on DEFAULT_POOL if !(pools.is_a? Hash) log_error "create_threads: one JobWorker is the minimum (#{pools.inspect}" end log_info "WorkerPool creating all workers with #{pools.to_hash.inspect}" # Start ConchitaWorker and ReporterWorker create_thread ConchitaWorker, :conchita create_thread ReporterWorker, :reporter # Start JobWorkers threads, ensure we have at least one worker in default pool pools[DEFAULT_POOL] ||= 1 pools.each do |pool, count| count.times do my_wid = next_wid() create_thread TransferWorker, my_wid, pool end end rescue StandardError => ex log_error "EXCEPTION: #{ex.message}", ex.backtrace end def worker_variables vars = {} @workers.collect do |wid, worker| vars[wid] = thread_variables worker end vars end def worker_alive? wid @workers[wid] && @workers[wid].alive? end private def thread_variables thread vars = {} thread.thread_variables.each do |var| vars[var] = thread.thread_variable_get var end vars end def next_wid @mutex.synchronize do @seqno += 1 end "w#{@seqno}" end def create_thread klass, wid, pool = nil # def create_thread wid, klass, pool = nil # Spawn thread and add it to my index log_info "spawning #{klass.name} wid[#{wid}] pool[#{pool}]" @workers[wid] = Thread.new do begin # Create a worker inside worker = klass.new wid, pool # FIXME: sleep for a small amount of time to allow correct sequence of logging sleep 0.1 rescue StandardError => ex log_error "#{klass.name} EXCEPTION: #{ex.message}" end end end # NewRelic instrumentation add_transaction_tracer :create_thread, category: :task end end