Class: BmcDaemonLib::Conf

Inherits:
Object
  • Object
show all
Extended by:
Chamber
Defined in:
lib/bmc-daemon-lib/conf.rb

Constant Summary collapse

PIDFILE_DIR =
"/tmp/"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.app_envObject

Returns the value of attribute app_env.



18
19
20
# File 'lib/bmc-daemon-lib/conf.rb', line 18

def app_env
  @app_env
end

.app_libsObject (readonly)

Returns the value of attribute app_libs.



20
21
22
# File 'lib/bmc-daemon-lib/conf.rb', line 20

def app_libs
  @app_libs
end

.app_nameObject (readonly)

Returns the value of attribute app_name.



21
22
23
# File 'lib/bmc-daemon-lib/conf.rb', line 21

def app_name
  @app_name
end

.app_rootObject (readonly)

Returns the value of attribute app_root.



19
20
21
# File 'lib/bmc-daemon-lib/conf.rb', line 19

def app_root
  @app_root
end

.app_specObject (readonly)

Returns the value of attribute app_spec.



24
25
26
# File 'lib/bmc-daemon-lib/conf.rb', line 24

def app_spec
  @app_spec
end

.app_startedObject (readonly)

Returns the value of attribute app_started.



23
24
25
# File 'lib/bmc-daemon-lib/conf.rb', line 23

def app_started
  @app_started
end

.app_verObject (readonly)

Returns the value of attribute app_ver.



22
23
24
# File 'lib/bmc-daemon-lib/conf.rb', line 22

def app_ver
  @app_ver
end

.filesObject (readonly)

Returns the value of attribute files.



25
26
27
# File 'lib/bmc-daemon-lib/conf.rb', line 25

def files
  @files
end

.hostObject (readonly)

Returns the value of attribute host.



26
27
28
# File 'lib/bmc-daemon-lib/conf.rb', line 26

def host
  @host
end

Class Method Details

.at(*path) ⇒ Object

Direct access to any depth



110
111
112
113
# File 'lib/bmc-daemon-lib/conf.rb', line 110

def self.at *path
  ensure_init
  path.reduce(Conf) { |m, key| m && m[key.to_s] }
end

.dumpObject



104
105
106
107
# File 'lib/bmc-daemon-lib/conf.rb', line 104

def self.dump
  ensure_init
  to_hash.to_yaml(indent: 4, useheader: true, useversion: false )
end

.generate(what) ⇒ Object

Defaults generators



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/bmc-daemon-lib/conf.rb', line 121

def self.generate what
  ensure_init
  return case what

  when :user_agent
    "#{@app_name}/#{@app_ver}" if @app_name && @app_ver

  when :config_defaults
    "#{@app_root}/defaults.yml" if @app_root

  when :config_etc
    "/etc/#{@app_name}.yml" if @app_name

  when :process_name
    parts = [@app_name, @app_env]
    parts << self[:port] if self[:port]
    parts.join('-')

  when :pidfile
    process_name = self.generate(:process_name)
    File.expand_path "#{process_name}.pid", PIDFILE_DIR

  when :config_message
    config_defaults = self.generate(:config_defaults)
    config_etc = self.generate(:config_etc)

    "A default configuration is available (#{config_defaults}) and can be copied to the default location (#{config_etc}): \n sudo cp #{config_defaults} #{config_etc}"

  end
end

.init(app_root) ⇒ Object



29
30
31
32
33
34
35
36
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
65
66
67
# File 'lib/bmc-daemon-lib/conf.rb', line 29

def self.init app_root
  # Permanent flags
  @initialized  = true
  @app_started  = Time.now

  # Default values
  @files        ||= []
  @app_name     ||= "app_name"
  @app_env      ||= "production"
  @host         ||= `hostname`.to_s.chomp.split(".").first

  # Store and clean app_root
  @app_root = File.expand_path(app_root)

  # Try to find any gemspec file
  matches   = Dir["#{@app_root}/*.gemspec"]
  fail ConfigMissingGemspec, "gemspec file not found: #{gemspec_path}" if matches.size < 1
  fail ConfigMultipleGemspec, "gemspec file not found: #{gemspec_path}" if matches.size > 1

  # Load Gemspec (just the only match)
  @spec     = Gem::Specification::load(matches.first)
  @app_name = @spec.name
  @app_ver  = @spec.version
  fail ConfigMissingParameter, "gemspec: missing name" unless @app_name
  fail ConfigMissingParameter, "gemspec: missing version" unless @app_ver

  # Now we know app_name, initalize app_libs
  @app_libs = File.expand_path("lib/#{@app_name}/", @app_root)

  # By default, Newrelic is disabled
  ENV["NEWRELIC_AGENT_ENABLED"] = "false"

  # Add other config files
  add_config generate(:config_defaults)
  add_config generate(:config_etc)

  # Return something
  return @app_name
end

.newrelic_enabled?Boolean

Returns:

  • (Boolean)


115
116
117
118
# File 'lib/bmc-daemon-lib/conf.rb', line 115

def self.newrelic_enabled?
  ensure_init
  !! (self[:newrelic] && self[:newrelic][:license])
end

.prepare(args = {}) ⇒ Object



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
94
95
96
# File 'lib/bmc-daemon-lib/conf.rb', line 69

def self.prepare args = {}
  ensure_init

  # Add extra config file and load them all
  add_config args[:config]
  reload!

  # Set Rack env
  ENV["RACK_ENV"] = @app_env.to_s

  # Set up encodings
  Encoding.default_internal = "utf-8"
  Encoding.default_external = "utf-8"

  # Init New Relic
  logs_newrelic = Conf.at :logs, :newrelic
  logs_path = Conf.at :logs, :path
  newrelic_logfile = File.expand_path logs_newrelic.to_s, logs_path.to_s
  prepare_newrelic self[:newrelic], newrelic_logfile

  # Try to access any key to force parsing of the files
  self[:dummy]

rescue Psych::SyntaxError => e
  fail ConfigParseError, e.message
rescue StandardError => e
  fail ConfigOtherError, "#{e.message} \n #{e.backtrace.to_yaml}"
end

.reload!Object

Reload files



99
100
101
102
# File 'lib/bmc-daemon-lib/conf.rb', line 99

def self.reload!
  ensure_init
  load_files
end