org.github.foxnic.web.system.service.impl.InvokeLogServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-system Show documentation
Show all versions of service-system Show documentation
System Service Module Of Foxnic-Web
package org.github.foxnic.web.system.service.impl;
import com.github.foxnic.api.error.ErrorDesc;
import com.github.foxnic.api.transter.Result;
import com.github.foxnic.commons.busi.id.IDGenerator;
import com.github.foxnic.commons.collection.MapUtil;
import com.github.foxnic.dao.data.PagedList;
import com.github.foxnic.dao.data.SaveMode;
import com.github.foxnic.dao.entity.ReferCause;
import com.github.foxnic.dao.entity.SuperService;
import com.github.foxnic.dao.spec.DAO;
import com.github.foxnic.sql.expr.ConditionExpr;
import com.github.foxnic.sql.meta.DBField;
import org.github.foxnic.web.domain.system.InvokeLog;
import org.github.foxnic.web.domain.system.InvokeLogVO;
import org.github.foxnic.web.framework.dao.DBConfigs;
import org.github.foxnic.web.system.service.IInvokeLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.lang.reflect.Field;
import java.util.List;
import java.util.Map;
/**
*
* 调用统计日志服务实现
*
* @author 李方捷 , [email protected]
* @since 2022-10-28 14:42:52
*/
@Service("SysInvokeLogService")
public class InvokeLogServiceImpl extends SuperService implements IInvokeLogService {
/**
* 注入DAO对象
* */
@Resource(name=DBConfigs.PRIMARY_DAO)
private DAO dao=null;
/**
* 获得 DAO 对象
* */
public DAO dao() { return dao; }
@Override
public Object generateId(Field field) {
return IDGenerator.getSnowflakeIdString();
}
/**
* 添加,根据 throwsException 参数抛出异常或返回 Result 对象
*
* @param invokeLog 数据对象
* @param throwsException 是否抛出异常,如果不抛出异常,则返回一个失败的 Result 对象
* @return 结果 , 如果失败返回 false,成功返回 true
*/
@Override
public Result insert(InvokeLog invokeLog,boolean throwsException) {
Result r=super.insert(invokeLog,throwsException);
return r;
}
/**
* 添加,如果语句错误,则抛出异常
* @param invokeLog 数据对象
* @return 插入是否成功
* */
@Override
public Result insert(InvokeLog invokeLog) {
return this.insert(invokeLog,true);
}
/**
* 批量插入实体,事务内
* @param invokeLogList 实体数据清单
* @return 插入是否成功
* */
@Override
public Result insertList(List invokeLogList) {
return super.insertList(invokeLogList);
}
/**
* 按主键删除调用统计日志
*
* @param id ID
* @return 删除是否成功
*/
public Result deleteByIdPhysical(Long id) {
InvokeLog invokeLog = new InvokeLog();
if(id==null) return ErrorDesc.failure().message("id 不允许为 null 。");
invokeLog.setId(id);
try {
boolean suc = dao.deleteEntity(invokeLog);
return suc?ErrorDesc.success():ErrorDesc.failure();
}
catch(Exception e) {
Result r= ErrorDesc.failure();
r.extra().setException(e);
return r;
}
}
/**
* 按主键删除调用统计日志
*
* @param id ID
* @return 删除是否成功
*/
public Result deleteByIdLogical(Long id) {
throw new RuntimeException("待实现,请按需实现逻辑删");
}
/**
* 更新,如果执行错误,则抛出异常
* @param invokeLog 数据对象
* @param mode 保存模式
* @return 保存是否成功
* */
@Override
public Result update(InvokeLog invokeLog , SaveMode mode) {
return this.update(invokeLog,mode,true);
}
/**
* 更新,根据 throwsException 参数抛出异常或返回 Result 对象
* @param invokeLog 数据对象
* @param mode 保存模式
* @param throwsException 是否抛出异常,如果不抛出异常,则返回一个失败的 Result 对象
* @return 保存是否成功
* */
@Override
public Result update(InvokeLog invokeLog , SaveMode mode,boolean throwsException) {
Result r=super.update(invokeLog , mode , throwsException);
return r;
}
/**
* 更新实体集,事务内
* @param invokeLogList 数据对象列表
* @param mode 保存模式
* @return 保存是否成功
* */
@Override
public Result updateList(List invokeLogList , SaveMode mode) {
return super.updateList(invokeLogList , mode);
}
/**
* 按主键更新调用统计日志
*
* @param id ID
* @return 是否更新成功
*/
public boolean update(DBField field,Object value , Long id) {
if(id==null) throw new IllegalArgumentException("id 不允许为 null ");
if(!field.table().name().equals(this.table())) throw new IllegalArgumentException("更新的数据表["+field.table().name()+"]与服务对应的数据表["+this.table()+"]不一致");
int suc=dao.update(field.table().name()).set(field.name(), value).where().and("id = ? ",id).top().execute();
return suc>0;
}
/**
* 按主键获取调用统计日志
*
* @param id ID
* @return InvokeLog 数据对象
*/
public InvokeLog getById(Long id) {
InvokeLog sample = new InvokeLog();
if(id==null) throw new IllegalArgumentException("id 不允许为 null ");
sample.setId(id);
return dao.queryEntity(sample);
}
/**
* 等价于 queryListByIds
* */
@Override
public List getByIds(List ids) {
return this.queryListByIds(ids);
}
@Override
public List queryListByIds(List ids) {
return super.queryListByUKeys("id",ids);
}
@Override
public Map queryMapByIds(List ids) {
return super.queryMapByUKeys("id",ids, InvokeLog::getId);
}
/**
* 查询实体集合,默认情况下,字符串使用模糊匹配,非字符串使用精确匹配
*
* @param sample 查询条件
* @return 查询结果
* */
@Override
public List queryList(InvokeLogVO sample) {
return super.queryList(sample);
}
/**
* 分页查询实体集,字符串使用模糊匹配,非字符串使用精确匹配
*
* @param sample 查询条件
* @param pageSize 分页条数
* @param pageIndex 页码
* @return 查询结果
* */
@Override
public PagedList queryPagedList(InvokeLogVO sample, int pageSize, int pageIndex) {
return super.queryPagedList(sample, pageSize, pageIndex);
}
/**
* 分页查询实体集,字符串使用模糊匹配,非字符串使用精确匹配
*
* @param sample 查询条件
* @param condition 其它条件
* @param pageSize 分页条数
* @param pageIndex 页码
* @return 查询结果
* */
@Override
public PagedList queryPagedList(InvokeLog sample, ConditionExpr condition, int pageSize, int pageIndex) {
return super.queryPagedList(sample, condition, pageSize, pageIndex);
}
/**
* 检查 实体 是否已经存在 , 判断 主键值不同,但指定字段的值相同的记录是否存在
*
* @param invokeLog 数据对象
* @return 判断结果
*/
public Boolean checkExists(InvokeLog invokeLog) {
//TDOD 此处添加判断段的代码
//boolean exists=super.checkExists(invokeLog, SYS_ROLE.NAME);
//return exists;
return false;
}
/**
* 批量检查引用
* @param ids 检查这些ID是否又被外部表引用
* */
@Override
public Map hasRefers(List ids) {
// 默认无业务逻辑,返回此行;有业务逻辑需要校验时,请修改并使用已注释的行代码!!!
return MapUtil.asMap(ids,new ReferCause(false));
// return super.hasRefers(FoxnicWeb.BPM_PROCESS_INSTANCE.FORM_DEFINITION_ID,ids);
}
}