Class Utils
- java.lang.Object
-
- io.fabric8.kubernetes.client.utils.Utils
-
public class Utils extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> TcheckNotNull(T ref, String message)static voidcloseQuietly(Closeable... closeables)Closes and flushes the specifiedCloseableitems.static voidcloseQuietly(Iterable<Closeable> closeables)Closes and flushes the specifiedCloseableitems.static Stringcoalesce(String... items)static StringconvertSystemPropertyNameToEnvVar(String systemPropertyName)static StringfilePath(URL path)static StringgetAnnotationValue(Class kubernetesResourceType, Class annotationClass)static List<String>getCommandPlatformPrefix()Returns prefixes needed to invoke specified command in a subprocess.static StringgetEnvVar(String envVarName, String defaultValue)static <T> TgetNonNullOrElse(T obj, T defaultObj)static StringgetPluralFromKind(String kind)todo: we should unify this withPluralizestatic StringgetProperty(Map<String,Object> properties, String propertyName)static StringgetProperty(Map<String,Object> properties, String propertyName, String defaultValue)static StringgetSystemPathVariable()Get system PATH variablestatic StringgetSystemPropertyOrEnvVar(String systemPropertyName)static intgetSystemPropertyOrEnvVar(String systemPropertyName, int defaultValue)static booleangetSystemPropertyOrEnvVar(String systemPropertyName, Boolean defaultValue)static StringgetSystemPropertyOrEnvVar(String systemPropertyName, String defaultValue)static StringgetSystemPropertyOrEnvVar(String systemPropertyName, String envVarName, String defaultValue)static StringinterpolateString(String templateInput, Map<String,String> valuesMap)Interpolates a String containing variable placeholders with the values provided in the valuesMap.static <T> booleanisNotNull(T... refList)static booleanisNotNullOrEmpty(String str)static booleanisNotNullOrEmpty(String[] array)static booleanisNotNullOrEmpty(Map map)static booleanisNullOrEmpty(String str)static booleanisResourceNamespaced(Class kubernetesResourceType)Reads @Namespaced annotation in resource class to check whether resource is namespaced or notstatic booleanisWindowsOperatingSystem()Check whether platform is windows or notstatic Stringjoin(Object[] array)static Stringjoin(Object[] array, char separator)static StringrandomString(int length)static StringrandomString(String prefix, int length)static StringreplaceAllWithoutRegex(String text, String from, String to)Replaces all occurrences of the from text with to text without any regular expressionsstatic booleanshutdownExecutorService(ExecutorService executorService)Closes the specifiedExecutorService.static StringtoUrlEncoded(String str)Converts string to URL encoded string.static booleanwaitUntilReady(BlockingQueue<Object> queue, long amount, TimeUnit timeUnit)Wait until an other thread signals the completion of a task.
-
-
-
Field Detail
-
WINDOWS
public static final String WINDOWS
- See Also:
- Constant Field Values
-
OS_NAME
public static final String OS_NAME
- See Also:
- Constant Field Values
-
PATH_WINDOWS
public static final String PATH_WINDOWS
- See Also:
- Constant Field Values
-
PATH_UNIX
public static final String PATH_UNIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
checkNotNull
public static <T> T checkNotNull(T ref, String message)
-
getSystemPropertyOrEnvVar
public static String getSystemPropertyOrEnvVar(String systemPropertyName, String envVarName, String defaultValue)
-
convertSystemPropertyNameToEnvVar
public static String convertSystemPropertyNameToEnvVar(String systemPropertyName)
-
getSystemPropertyOrEnvVar
public static String getSystemPropertyOrEnvVar(String systemPropertyName, String defaultValue)
-
getSystemPropertyOrEnvVar
public static String getSystemPropertyOrEnvVar(String systemPropertyName)
-
getSystemPropertyOrEnvVar
public static boolean getSystemPropertyOrEnvVar(String systemPropertyName, Boolean defaultValue)
-
getSystemPropertyOrEnvVar
public static int getSystemPropertyOrEnvVar(String systemPropertyName, int defaultValue)
-
waitUntilReady
public static boolean waitUntilReady(BlockingQueue<Object> queue, long amount, TimeUnit timeUnit)
Wait until an other thread signals the completion of a task. If an exception is passed, it will be propagated to the caller.- Parameters:
queue- The communication channel.amount- The amount of time to wait.timeUnit- The time unit.- Returns:
- a boolean value indicating resource is ready or not.
-
shutdownExecutorService
public static boolean shutdownExecutorService(ExecutorService executorService)
Closes the specifiedExecutorService.- Parameters:
executorService- The executorService.- Returns:
- True if shutdown is complete.
-
closeQuietly
public static void closeQuietly(Iterable<Closeable> closeables)
Closes and flushes the specifiedCloseableitems.
-
closeQuietly
public static void closeQuietly(Closeable... closeables)
Closes and flushes the specifiedCloseableitems.- Parameters:
closeables- An array ofCloseableitems.
-
randomString
public static String randomString(int length)
-
replaceAllWithoutRegex
public static String replaceAllWithoutRegex(String text, String from, String to)
Replaces all occurrences of the from text with to text without any regular expressions- Parameters:
text- text stringfrom- from stringto- to string- Returns:
- returns processed string
-
isNullOrEmpty
public static boolean isNullOrEmpty(String str)
-
isNotNullOrEmpty
public static boolean isNotNullOrEmpty(Map map)
-
isNotNullOrEmpty
public static boolean isNotNullOrEmpty(String str)
-
isNotNullOrEmpty
public static boolean isNotNullOrEmpty(String[] array)
-
isNotNull
public static <T> boolean isNotNull(T... refList)
-
getNonNullOrElse
public static <T> T getNonNullOrElse(T obj, T defaultObj)
-
getProperty
public static String getProperty(Map<String,Object> properties, String propertyName, String defaultValue)
-
toUrlEncoded
public static String toUrlEncoded(String str)
Converts string to URL encoded string.- Parameters:
str- Url as string- Returns:
- returns encoded string
-
getPluralFromKind
public static String getPluralFromKind(String kind)
todo: we should unify this withPluralize
-
isResourceNamespaced
public static boolean isResourceNamespaced(Class kubernetesResourceType)
Reads @Namespaced annotation in resource class to check whether resource is namespaced or not- Parameters:
kubernetesResourceType- class for resource- Returns:
- boolean value indicating it's namespaced or not
-
getAnnotationValue
public static String getAnnotationValue(Class kubernetesResourceType, Class annotationClass)
-
interpolateString
public static String interpolateString(String templateInput, Map<String,String> valuesMap)
Interpolates a String containing variable placeholders with the values provided in the valuesMap.This method is intended to interpolate templates loaded from YAML and JSON files.
Placeholders are indicated by the dollar sign and curly braces (
${VARIABLE_KEY}).Placeholders can also be indicated by the dollar sign and double curly braces (
${{VARIABLE_KEY}}), when this notation is used, the resulting value will be unquoted (if applicable), expected values should be JSON compatible.- Parameters:
valuesMap- to interpolate in the StringtemplateInput- raw input containing a String with placeholders ready to be interpolated- Returns:
- the interpolated String
- See Also:
- OpenShift Templates
-
isWindowsOperatingSystem
public static boolean isWindowsOperatingSystem()
Check whether platform is windows or not- Returns:
- boolean value indicating whether OS is Windows or not.
-
getSystemPathVariable
public static String getSystemPathVariable()
Get system PATH variable- Returns:
- a string containing value of PATH
-
-