com.qcloud.cos.utils.VersionInfoUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.utils;
import java.io.InputStream;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class VersionInfoUtils {
/** The COS SDK version info file with SDK versioning info */
static final String VERSION_INFO_FILE = "/versionInfo.properties";
/** SDK version info */
private static volatile String version;
/** SDK platform info */
private static volatile String platform;
/** User Agent info */
private static volatile String userAgent;
/** Shared logger for any issues while loading version information */
private static final Logger log = LoggerFactory.getLogger(VersionInfoUtils.class);
/**
* Returns the current version for the COS SDK in which this class is running. Version
* information is obtained from from the versionInfo.properties file which the COS Java SDK
* build process generates.
*
* @return The current version for the COS SDK, if known, otherwise returns a string indicating
* that the version information is not available.
*/
public static String getVersion() {
if (version == null) {
synchronized (VersionInfoUtils.class) {
if (version == null)
initializeVersion();
}
}
return version;
}
/**
* Returns the current platform for the COS SDK in which this class is running. Version
* information is obtained from from the versionInfo.properties file which the COS Java SDK
* build process generates.
*
* @return The current platform for the COS SDK, if known, otherwise returns a string indicating
* that the platform information is not available.
*/
public static String getPlatform() {
if (platform == null) {
synchronized (VersionInfoUtils.class) {
if (platform == null)
initializeVersion();
}
}
return platform;
}
/**
* @return Returns the User Agent string to be used when communicating with the COS services.
* The User Agent encapsulates SDK, Java, OS and region information.
*/
public static String getUserAgent() {
return "cos-java-sdk";
}
/**
* Loads the versionInfo.properties file from the COS Java SDK and stores the information so
* that the file doesn't have to be read the next time the data is needed.
*/
private static void initializeVersion() {
InputStream inputStream = VersionInfoUtils.class.getResourceAsStream(VERSION_INFO_FILE);
Properties versionInfoProperties = new Properties();
try {
if (inputStream == null)
throw new Exception(VERSION_INFO_FILE + " not found on classpath");
versionInfoProperties.load(inputStream);
version = versionInfoProperties.getProperty("version");
platform = versionInfoProperties.getProperty("platform");
} catch (Exception e) {
log.info("Unable to load version information for the running SDK: " + e.getMessage());
version = "unknown-version";
platform = "java";
} finally {
try {
inputStream.close();
} catch (Exception e) {
}
}
}
}