-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigurationFile.java
91 lines (75 loc) · 2.98 KB
/
ConfigurationFile.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.tooling.config;
import static java.util.Collections.emptyMap;
import static java.util.logging.Level.SEVERE;
import io.opentelemetry.instrumentation.api.internal.ConfigPropertiesUtil;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.util.Map;
import java.util.Properties;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
final class ConfigurationFile {
static final String CONFIGURATION_FILE_PROPERTY = "otel.javaagent.configuration-file";
private static Map<String, String> configFileContents;
// this class is used early, and must not use logging in most of its methods
// in case any file loading/parsing error occurs, we save the error message and log it later, when
// the logging subsystem is initialized
@Nullable private static String fileLoadErrorMessage;
static Map<String, String> getProperties() {
if (configFileContents == null) {
configFileContents = loadConfigFile();
}
return configFileContents;
}
// visible for tests
static void resetForTest() {
configFileContents = null;
}
// visible for tests
static Map<String, String> loadConfigFile() {
// Reading from system property first and from env after
String configurationFilePath = ConfigPropertiesUtil.getString(CONFIGURATION_FILE_PROPERTY);
if (configurationFilePath == null) {
return emptyMap();
}
// Normalizing tilde (~) paths for unix systems
configurationFilePath =
configurationFilePath.replaceFirst("^~", System.getProperty("user.home"));
// Configuration properties file is optional
File configurationFile = new File(configurationFilePath);
if (!configurationFile.exists()) {
fileLoadErrorMessage = "Configuration file \"" + configurationFilePath + "\" not found.";
return emptyMap();
}
Properties properties = new Properties();
try (InputStreamReader reader =
new InputStreamReader(new FileInputStream(configurationFile), StandardCharsets.UTF_8)) {
properties.load(reader);
} catch (FileNotFoundException fnf) {
fileLoadErrorMessage = "Configuration file \"" + configurationFilePath + "\" not found.";
} catch (IOException ioe) {
fileLoadErrorMessage =
"Configuration file \""
+ configurationFilePath
+ "\" cannot be accessed or correctly parsed.";
}
return properties.entrySet().stream()
.collect(Collectors.toMap(e -> e.getKey().toString(), e -> e.getValue().toString()));
}
static void logErrorIfAny() {
if (fileLoadErrorMessage != null) {
Logger.getLogger(ConfigurationPropertiesSupplier.class.getName())
.log(SEVERE, fileLoadErrorMessage);
}
}
private ConfigurationFile() {}
}