com.feilong.context.AbstractDataListTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
/*
* Copyright (C) 2008 feilong
*
* 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.feilong.context;
import static com.feilong.core.Validator.isNullOrEmpty;
import static com.feilong.core.date.DateUtil.formatDurationUseBeginTimeMillis;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 数据 task.
*
*
* 先进行数据查询, 如果数据是 null 或者 empty 以 info level 日志输出;
* 如果不是 null 或者 empty ,那么进行调用 {@link #handle(List)} 执行
*
*
* @author feilong
* @param
* the generic type
* @since 2.0.0
*/
public abstract class AbstractDataListTask implements Task{
/** The Constant LOGGER. */
private static final Logger LOGGER = LoggerFactory.getLogger(AbstractDataListTask.class);
//---------------------------------------------------------------
/** 需要被处理的数据查询器. */
private DataListQuery dataListQuery;
//---------------------------------------------------------------
/*
* (non-Javadoc)
*
* @see com.feilong.context.Task#run()
*/
@Override
public Void run(){
long beginTimeMillis = System.currentTimeMillis();
String taskName = this.getClass().getName();
//---------------------------------------------------------------
//查询需要处理的数据
List dataList = dataListQuery.query();
if (isNullOrEmpty(dataList)){
//如果没有,那么就简单的日志
if (LOGGER.isInfoEnabled()){
String name = dataListQuery.getClass().getName();
LOGGER.info(
"[{}],use dataListQuery:[{}] query no data list,use time: [{}]",
taskName,
name,
formatDurationUseBeginTimeMillis(beginTimeMillis));
}
return null;
}
//---------------------------------------------------------------
handle(dataList);
//---------------------------------------------------------------
if (LOGGER.isInfoEnabled()){
LOGGER.info(
"[{}],dataList size:[{}],useTime: [{}]",
taskName,
dataList.size(),
formatDurationUseBeginTimeMillis(beginTimeMillis));
}
return null;
}
//---------------------------------------------------------------
/**
* Handle.
*
* @param dataList
* the data list
*/
protected abstract void handle(List dataList);
//---------------------------------------------------------------
/**
* 设置 需要被处理的数据查询器.
*
* @param dataListQuery
* the dataListQuery to set
*/
public void setDataListQuery(DataListQuery dataListQuery){
this.dataListQuery = dataListQuery;
}
}