All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sviolet.slate.common.x.conversion.beanutil.DefaultBeanConverter Maven / Gradle / Ivy

There is a newer version: 22.1.0
Show newest version
/*
 * Copyright (C) 2015-2018 S.Violet
 *
 * 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.
 *
 * Project GitHub: https://github.com/shepherdviolet/slate
 * Email: [email protected]
 */

package sviolet.slate.common.x.conversion.beanutil;

import com.github.shepherdviolet.glaciion.Glaciion;
import com.github.shepherdviolet.glaciion.api.annotation.PropertyInject;
import com.github.shepherdviolet.glaciion.api.interfaces.InitializableImplementation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * 

默认Bean参数类型转换器

* * @author S.Violet */ public class DefaultBeanConverter implements BeanConverter, InitializableImplementation { private static final Logger logger = LoggerFactory.getLogger(DefaultBeanConverter.class); private static final String LOG_PREFIX = "SlateBeanUtils | "; private Map, Map, PropMapper>> propMappers = new HashMap<>(); @PropertyInject(getVmOptionFirst = "slate.beanutils.log") private boolean logEnabled = true; @Override public void onServiceCreated() { init(); } private void init() { List propMapperList = Glaciion.loadMultipleService(PropMapper.class).getAll(); for (PropMapper mapper : propMapperList) { if (mapper.fromType() == null || mapper.fromType().length <= 0) { throw new RuntimeException("Invalid PropMapper " + mapper.getClass().getName() + ", fromType method return null or empty, you can ignore this plugin by Glaciion SPI"); } if (mapper.toType() == null || mapper.toType().length <= 0) { throw new RuntimeException("Invalid PropMapper " + mapper.getClass().getName() + ", toType method return null or empty, you can ignore this plugin by Glaciion SPI"); } for (Class fromType : mapper.fromType()) { for (Class toType : mapper.toType()) { initMapper(mapper, fromType, toType); } } } } private void initMapper(PropMapper mapper, Class fromType, Class toType) { Map, PropMapper> mappers = propMappers.get(fromType); if (mappers == null) { mappers = new HashMap<>(); propMappers.put(fromType, mappers); } //遇到同类型映射器时, 采用插件优先级高的 PropMapper previous = mappers.get(toType); if (previous == null) { mappers.put(toType, mapper); if (logEnabled) { logger.info(LOG_PREFIX + "PropMapper Enabled from <" + fromType.getName() + "> to <" + toType.getName() + "> mapper <" + mapper.getClass().getName() + ">"); } } else { if (logEnabled) { logger.info(LOG_PREFIX + "PropMapper Disabled from <" + fromType.getName() + "> to <" + toType.getName() + "> mapper <" + mapper.getClass().getName() + "> Overridden by a higher priority plugin " + previous.getClass().getName()); } } } @Override public Object onConvert(Cause cause, Object from, Class... toTypes) { if (from == null || toTypes == null || toTypes.length <= 0) { return null; } Class fromType = from.getClass(); //fromType match one of toTypes, if yes we will return self when convert failed boolean typeMatch = false; for (Class toType : toTypes) { if (toType.isAssignableFrom(fromType)) { typeMatch = true; break; } } //get mappers Map, PropMapper> mappers = propMappers.get(fromType); if (mappers == null) { return typeMatch ? from : null; } //convert by spin mapper (toType = fromType) if (typeMatch) { PropMapper mapper = mappers.get(fromType); if (mapper == null) { return from; } return mapper.map(from, fromType, logger, logEnabled); } //convert by cross mapper PropMapper mapper; for (Class toType : toTypes) { mapper = mappers.get(toType); if (mapper != null) { return mapper.map(from, toType, logger, logEnabled); } } return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy