Sha256: fd14292b07641dfaf6ce3fff53c8a7f2048ee19cfd893316842530d01967f124
Contents?: true
Size: 1.89 KB
Versions: 1
Compression:
Stored size: 1.89 KB
Contents
require "rubygems" require "bundler/setup" require 'time' require 'active_record' require 'eventmachine' require 'sqlite3' require 'rflow/configuration' require 'rflow/master' require 'rflow/message' require 'rflow/components' require 'rflow/connections' require 'rflow/logger' class RFlow include Log4r class Error < StandardError; end class << self attr_accessor :config_database_path attr_accessor :logger attr_accessor :configuration attr_accessor :master end def self.run(config_database_path=nil, daemonize=nil) self.configuration = Configuration.new(config_database_path) if config_database_path # First change to the config database directory, which might hold # relative paths for the other files/directories, such as the # application_directory_path Dir.chdir File.dirname(config_database_path) end # Bail unless you have some of the basic information. TODO: # rethink this when things get more dynamic unless configuration['rflow.application_directory_path'] error_message = "Empty configuration database! Use a view/controller (such as the RubyDSL) to create a configuration" RFlow.logger.error "Empty configuration database! Use a view/controller (such as the RubyDSL) to create a configuration" raise ArgumentError, error_message end Dir.chdir configuration['rflow.application_directory_path'] self.logger = RFlow::Logger.new(configuration, !daemonize) @master = Master.new(configuration) master.daemonize! if daemonize master.run # Runs EM and doesn't return # Should never get here logger.warn "going down" rescue SystemExit => e # Do nothing, just prevent a normal exit from causing an unsightly # error in the logs rescue Exception => e logger.fatal "Exception caught: #{e.class} - #{e.message}\n#{e.backtrace.join "\n"}" exit 1 end end # class RFlow
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rflow-1.0.0a1 | lib/rflow.rb |