RuntimeEnvironment.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.lang3;

  18. import java.io.IOException;
  19. import java.nio.file.Files;
  20. import java.nio.file.Paths;
  21. import java.util.stream.Stream;

  22. /**
  23.  * Helps query the runtime environment.
  24.  *
  25.  * @since 3.15.0
  26.  */
  27. public class RuntimeEnvironment {

  28.     /**
  29.      * Tests whether the file at the given path string contains a specific line.
  30.      *
  31.      * @param path The path to a file.
  32.      * @param line The line to find.
  33.      * @return whether the file at the given path string contains a specific line.
  34.      */
  35.     private static Boolean containsLine(final String path, final String line) {
  36.         try (Stream<String> stream = Files.lines(Paths.get(path))) {
  37.             return stream.anyMatch(test -> test.contains(line));
  38.         } catch (final IOException e) {
  39.             return false;
  40.         }
  41.     }

  42.     /**
  43.      * Tests whether we are running in a container like Docker or Podman.
  44.      *
  45.      * @return whether we are running in a container like Docker or Podman.
  46.      */
  47.     public static Boolean inContainer() {
  48.         return inDocker() || inPodman();
  49.     }

  50.     /**
  51.      * Tests whether we are running in a Docker container.
  52.      * <p>
  53.      * Package-private for testing.
  54.      * </p>
  55.      *
  56.      * @return whether we are running in a Docker container.
  57.      */
  58.     // Could be public at a later time.
  59.     static Boolean inDocker() {
  60.         return containsLine("/proc/1/cgroup", "/docker");
  61.     }

  62.     /**
  63.      * Tests whether we are running in a Podman container.
  64.      * <p>
  65.      * Package-private for testing.
  66.      * </p>
  67.      *
  68.      * @return whether we are running in a Podman container.
  69.      */
  70.     // Could be public at a later time.
  71.     static Boolean inPodman() {
  72.         return containsLine("/proc/1/environ", "container=podman");
  73.     }

  74.     /**
  75.      * Tests whether we are running in a Windows Subsystem for Linux (WSL).
  76.      * <p>
  77.      * Package-private for testing.
  78.      * </p>
  79.      *
  80.      * @return whether we are running in a Windows Subsystem for Linux (WSL).
  81.      */
  82.     // Could be public at a later time.
  83.     static Boolean inWsl() {
  84.         return containsLine("/proc/1/environ", "container=wslcontainer_host_id");
  85.     }

  86.     /**
  87.      * Constructs a new instance.
  88.      *
  89.      * @deprecated Will be removed in 4.0.0.
  90.      */
  91.     @Deprecated
  92.     public RuntimeEnvironment() {
  93.         // empty
  94.     }
  95. }