com.abubusoft.kripton.processor.sharedprefs.model.PrefsProperty Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2015, 2017 Francesco Benincasa ([email protected]).
*
* 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.abubusoft.kripton.processor.sharedprefs.model;
import java.util.List;
import javax.lang.model.element.Element;
import com.abubusoft.kripton.android.annotation.BindPreference;
import com.abubusoft.kripton.android.annotation.BindPreferenceAdapter;
import com.abubusoft.kripton.android.sharedprefs.PreferenceType;
import com.abubusoft.kripton.common.CaseFormat;
import com.abubusoft.kripton.common.Converter;
import com.abubusoft.kripton.common.StringUtils;
import com.abubusoft.kripton.processor.core.AnnotationAttributeType;
import com.abubusoft.kripton.processor.core.AssertKripton;
import com.abubusoft.kripton.processor.core.ManagedModelProperty;
import com.abubusoft.kripton.processor.core.ModelAnnotation;
import com.abubusoft.kripton.processor.core.ModelEntity;
import com.abubusoft.kripton.processor.core.TypeAdapterHelper;
import com.abubusoft.kripton.processor.core.reflect.AnnotationUtility;
import com.abubusoft.kripton.processor.core.reflect.TypeUtility;
import com.abubusoft.kripton.processor.sharedprefs.transform.PrefsTransform;
import com.abubusoft.kripton.processor.sharedprefs.transform.PrefsTransformer;
/**
* The Class PrefsProperty.
*/
public class PrefsProperty extends ManagedModelProperty {
/** The converter. */
private static Converter converter = CaseFormat.LOWER_CAMEL.converterTo(CaseFormat.LOWER_UNDERSCORE);
/**
* Instantiates a new prefs property.
*
* @param entity the entity
* @param element the element
* @param modelAnnotations the model annotations
*/
public PrefsProperty(PrefsEntity entity, Element element, List modelAnnotations) {
super(entity, element, modelAnnotations);
String name = AnnotationUtility.extractAsString(element, BindPreference.class, AnnotationAttributeType.VALUE);
if (!StringUtils.hasText(name)) {
name = converter.convert(element.getSimpleName().toString());
}
preferenceKey = name;
generateRx=entity.generateGlobalRx;
generateLiveData=entity.generateGlobalLiveData;
if (element.getAnnotation(BindPreference.class)!=null) {
generateRx = entity.generateGlobalRx && AnnotationUtility.extractAsBoolean(element, BindPreference.class, AnnotationAttributeType.GENERATE_RX);
generateLiveData = entity.generateGlobalLiveData && AnnotationUtility.extractAsBoolean(element, BindPreference.class, AnnotationAttributeType.GENERATE_LIVE_DATA);
}
// @BindPreferenceAdapter
ModelAnnotation annotationBindAdapter = this.getAnnotation(BindPreferenceAdapter.class);
if (annotationBindAdapter != null) {
typeAdapter.adapterClazz = annotationBindAdapter.getAttributeAsClassName(AnnotationAttributeType.ADAPTER);
typeAdapter.dataType = TypeAdapterHelper.detectDestinationType(entity.getElement(), typeAdapter.adapterClazz);
// check type adapter
checkTypeAdapter(entity, element.asType(), typeAdapter, annotationBindAdapter);
PrefsTransform transform = PrefsTransformer.lookup(TypeUtility.typeName(typeAdapter.dataType));
AssertKripton.assertTrueOfInvalidDefinition(transform.isTypeAdapterAware(), this, String.format("property is converted into an unsupported target type '%s' by @%s",TypeUtility.typeName(typeAdapter.dataType),BindPreferenceAdapter.class.getSimpleName()));
}
}
/** The preference key. */
protected String preferenceKey;
protected boolean generateRx;
public boolean isGenerateRx() {
return generateRx;
}
public boolean isGenerateLiveData() {
return generateLiveData;
}
protected boolean generateLiveData;
/**
* Gets the preference key.
*
* @return the preference key
*/
public String getPreferenceKey() {
return preferenceKey;
}
/** kind of preference associated. */
protected PreferenceType preferenceType;
/**
* Gets the preference type.
*
* @return the preference type
*/
public PreferenceType getPreferenceType() {
return preferenceType;
}
/**
* Sets the preference type.
*
* @param preferenceType the new preference type
*/
public void setPreferenceType(PreferenceType preferenceType) {
this.preferenceType = preferenceType;
}
}