com.cloudcontrolled.api.client.util.PathUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cctrl-api-client Show documentation
Show all versions of cctrl-api-client Show documentation
Java cloudControl API client
The newest version!
/*
* Copyright 2012 Denis Neuling
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.cloudcontrolled.api.client.util;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import com.cloudcontrolled.api.annotation.Default;
import com.cloudcontrolled.api.annotation.Path;
import com.cloudcontrolled.api.annotation.PathVariable;
import com.cloudcontrolled.api.request.Request;
/**
*
* PathUtil class.
*
*
* @author Denis Neuling ([email protected])
*
*/
public class PathUtil {
private static final String PATTERN = "\\$\\{(.*?)*\\}(.*?)";
/**
*
* infixPotentialDefaults.
*
*
* @param request
* a {@link com.cloudcontrolled.api.request.Request} object.
* @param
* a T object.
*/
public static void infixPotentialDefaults(Request request) {
infixPotentialDefaults(request, request.getClass(), true);
}
/**
*
* infixPotentialDefaults.
*
*
* @param request
* a {@link com.cloudcontrolled.api.request.Request} object.
* @param targetClazz
* a {@link java.lang.Class} object.
* @param infixPotentialValuesOfSuperClass
* a boolean.
* @param
* a T object.
*/
public static void infixPotentialDefaults(Request request, Class> targetClazz, boolean infixPotentialValuesOfSuperClass) {
Class> superClass = targetClazz.getSuperclass();
if (infixPotentialValuesOfSuperClass && superClass != null && superClass.equals(Request.class)) {
infixPotentialDefaults(request, superClass, infixPotentialValuesOfSuperClass);
}
Field[] declaredFields = targetClazz.getDeclaredFields();
for (Field property : declaredFields) {
Default defaultValue = property.getAnnotation(Default.class);
if (null != defaultValue) {
property.setAccessible(true);
try {
Object value = property.get(request);
if (value == null || ((value instanceof String ? ((String) value).isEmpty() : false))) {
property.set(request, defaultValue.value());
}
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
}
/**
*
* resolveResourcePath.
*
*
* @param request
* a {@link com.cloudcontrolled.api.request.Request} object.
* @param
* a T object.
* @return a {@link java.lang.String} object.
*/
public static String resolveResourcePath(Request request) {
Class> clazz = request.getClass();
String unresolvedPath = ClassUtil.getClassAnnotationValue(clazz, Path.class, "value", String.class);
Map patternMap = new HashMap();
for (Field field : clazz.getDeclaredFields()) {
PathVariable part = field.getAnnotation(PathVariable.class);
if (part != null) {
try {
String pattern = part.value();
field.setAccessible(true);
String value = (String) field.get(request);
patternMap.put(pattern, value);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
Pattern pattern = Pattern.compile(PATTERN);
Matcher matcher = pattern.matcher(unresolvedPath);
LinkedHashSet placeholder = new LinkedHashSet();
while (matcher.find()) {
placeholder.add(matcher.group());
}
for (String key : placeholder) {
String found = patternMap.get(key);
if (found != null) {
unresolvedPath = unresolvedPath.replace((String) key, found);
}
}
return unresolvedPath;
}
}