summaryrefslogtreecommitdiffstats
path: root/standalone-container/src/main/scala/com/yahoo/container/standalone/Environment.scala
blob: 4764f4698f0615f185b6c63de937080bf41f8fd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.standalone

/**
 * @author tonytv
 * TODO: copied from standalone-container. Move to separate lib module instead.
 */
object Environment {
  def optionalYinstVariable(name: String) = {
    env(name.replace(".", "__")).
      orElse(systemProperty(name)) //for unit testing
  }

  def yinstVariable(name: String) = {
    optionalYinstVariable(name).
      getOrElse {
      throw new IllegalStateException("Environment variable not set: " + name)
    }
  }

  def env(name: String) = Option(System.getenv(name))
  def systemProperty(name: String) = Option(System.getProperty(name))
}