Module: LogStash::Environment
- Extended by:
- Environment
- Included in:
- Environment
- Defined in:
- lib/logstash/environment.rb,
lib/logstash/environment.rb
Constant Summary collapse
- LOGSTASH_HOME =
Stud::Temporary.directory("logstash-home")
- LOGSTASH_CORE =
::File.(::File.join(::File.dirname(__FILE__), "..", ".."))
- LOGSTASH_ENV =
(ENV["LS_ENV"] || 'production').to_s.freeze
- LINUX_OS_RE =
/linux/
- WINDOW_OS_RE =
/mswin|msys|mingw|cygwin|bccwin|wince|emc/
- MACOS_OS_RE =
/darwin/
Instance Method Summary collapse
-
#add_plugin_path(path) ⇒ Object
add path for bare/ungemified plugins lookups.
- #development? ⇒ Boolean
- #env ⇒ Object
- #find_jars(pattern) ⇒ Object
- #host_os ⇒ Object
- #linux? ⇒ Boolean
- #load_jars!(pattern) ⇒ Object
- #load_locale! ⇒ Object
- #load_runtime_jars!(dir_name = "vendor", package = "jar-dependencies") ⇒ Object
- #load_test_jars!(dir_name = "vendor", package = "jar-dependencies") ⇒ Object
- #locales_path(path) ⇒ Object
- #production? ⇒ Boolean
- #require_jars!(files) ⇒ Object
- #ruby_bin ⇒ Object
- #runtime_jars_root(dir_name, package) ⇒ Object
- #test? ⇒ Boolean
- #test_jars_root(dir_name, package) ⇒ Object
- #windows? ⇒ Boolean
Instance Method Details
#add_plugin_path(path) ⇒ Object
add path for bare/ungemified plugins lookups. the path must be the base path that will include the dir structure ‘logstash/TYPE/NAME.rb’ where TYPE is ‘inputs’ ‘filters’, ‘outputs’ or ‘codecs’ and NAME is the name of the plugin
194 195 196 |
# File 'lib/logstash/environment.rb', line 194 def add_plugin_path(path) $LOAD_PATH << path end |
#development? ⇒ Boolean
119 120 121 |
# File 'lib/logstash/environment.rb', line 119 def development? env.downcase == "development" end |
#env ⇒ Object
111 112 113 |
# File 'lib/logstash/environment.rb', line 111 def env LOGSTASH_ENV end |
#find_jars(pattern) ⇒ Object
148 149 150 151 152 153 |
# File 'lib/logstash/environment.rb', line 148 def find_jars(pattern) require 'java' jar_files = Dir.glob(pattern) raise(LogStash::EnvironmentError, I18n.t("logstash.environment.missing-jars", :pattern => pattern)) if jar_files.empty? jar_files end |
#host_os ⇒ Object
174 175 176 |
# File 'lib/logstash/environment.rb', line 174 def host_os RbConfig::CONFIG['host_os'] end |
#linux? ⇒ Boolean
170 171 172 |
# File 'lib/logstash/environment.rb', line 170 def linux? host_os =~ LINUX_OS_RE end |
#load_jars!(pattern) ⇒ Object
143 144 145 146 |
# File 'lib/logstash/environment.rb', line 143 def load_jars!(pattern) jar_files = find_jars(pattern) require_jars! jar_files end |
#load_locale! ⇒ Object
182 183 184 185 186 187 188 |
# File 'lib/logstash/environment.rb', line 182 def load_locale! require "i18n" I18n.enforce_available_locales = true I18n.load_path << LogStash::Environment.locales_path("en.yml") I18n.reload! fail "No locale? This is a bug." if I18n.available_locales.empty? end |
#load_runtime_jars!(dir_name = "vendor", package = "jar-dependencies") ⇒ Object
135 136 137 |
# File 'lib/logstash/environment.rb', line 135 def load_runtime_jars!(dir_name="vendor", package="jar-dependencies") load_jars!(::File.join(runtime_jars_root(dir_name, package), "*.jar")) end |
#load_test_jars!(dir_name = "vendor", package = "jar-dependencies") ⇒ Object
139 140 141 |
# File 'lib/logstash/environment.rb', line 139 def load_test_jars!(dir_name="vendor", package="jar-dependencies") load_jars!(::File.join(test_jars_root(dir_name, package), "*.jar")) end |
#locales_path(path) ⇒ Object
178 179 180 |
# File 'lib/logstash/environment.rb', line 178 def locales_path(path) return ::File.join(LOGSTASH_CORE, "locales", path) end |
#production? ⇒ Boolean
115 116 117 |
# File 'lib/logstash/environment.rb', line 115 def production? env.downcase == "production" end |
#require_jars!(files) ⇒ Object
155 156 157 158 159 160 |
# File 'lib/logstash/environment.rb', line 155 def require_jars!(files) files.each do |jar_file| loaded = require jar_file puts("Loaded #{jar_file}") if $DEBUG && loaded end end |
#ruby_bin ⇒ Object
162 163 164 |
# File 'lib/logstash/environment.rb', line 162 def ruby_bin ENV["USE_RUBY"] == "1" ? "ruby" : File.join("vendor", "jruby", "bin", "jruby") end |
#runtime_jars_root(dir_name, package) ⇒ Object
127 128 129 |
# File 'lib/logstash/environment.rb', line 127 def runtime_jars_root(dir_name, package) ::File.join(dir_name, package, "runtime-jars") end |
#test? ⇒ Boolean
123 124 125 |
# File 'lib/logstash/environment.rb', line 123 def test? env.downcase == "test" end |
#test_jars_root(dir_name, package) ⇒ Object
131 132 133 |
# File 'lib/logstash/environment.rb', line 131 def test_jars_root(dir_name, package) ::File.join(dir_name, package, "test-jars") end |
#windows? ⇒ Boolean
166 167 168 |
# File 'lib/logstash/environment.rb', line 166 def windows? host_os =~ WINDOW_OS_RE end |