@ -86,6 +86,7 @@ public class IdcServiceImpl implements IdcService {
private ScheduledDao scheduledDao ;
private String imagePath = "register/file/image2/" ;
/*获取拉取任务列表*/
@Override
public BaseResponse taskList ( HttpServletRequest request , Map < String , Object > params ) {
@ -205,11 +206,11 @@ public class IdcServiceImpl implements IdcService {
private void fetchFailFile ( String host ) {
Map < String , Object > map = new HashMap < String , Object > ( ) ;
Map < String , Object > map = new HashMap < String , Object > ( ) ;
map . put ( "sql" , "select * from idc_file where createTime<date_sub(now(),interval 30 minute) order by createTime" ) ;
List < Map < String , Object > > list = dbDao . list ( map ) ;
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
signleDownloadFile ( host , list . get ( i ) . get ( "filePath" ) . toString ( ) ) ;
List < Map < String , Object > > list = dbDao . list ( map ) ;
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
signleDownloadFile ( host , list . get ( i ) . get ( "filePath" ) . toString ( ) ) ;
}
}
@ -408,7 +409,7 @@ public class IdcServiceImpl implements IdcService {
try {
String [ ] tnames = t . split ( "/" ) ;
String lastUpdateTime = getUpdateTime ( tnames [ 2 ] + "." + tnames [ 0 ] + "." + tnames [ 1 ] ) ;
String lastUpdateTime = getUpdateTime ( tnames [ 2 ] + "." + tnames [ 0 ] + "." + tnames [ 1 ] ) ;
Date nowUpdateTime = new Date ( ) ;
// if (!StringUtils.isEmpty(tnames[0])) {
@ -424,7 +425,7 @@ public class IdcServiceImpl implements IdcService {
if ( ! StringUtils . isEmpty ( updateTimeColumn ) ) {
sqlWhere + = " " + updateTimeColumn + " between cast('" + lastUpdateTime + "' as datetime) and cast('" + DateUtil . formatDate ( nowUpdateTime , "yyyy-MM-dd HH:mm:ss" ) + "' as datetime)" ;
sqlWhere + = " " + updateTimeColumn + " between cast('" + lastUpdateTime + "' as datetime) and cast('" + DateUtil . formatDate ( nowUpdateTime , "yyyy-MM-dd HH:mm:ss" ) + "' as datetime)" ;
//sqlWhere += " and not exists (select fkId from idc_record where type='" + tnames[2] + "' and fkId=" + tnames[2] + "." + keyColumn + " and createTime>date_sub(now(),interval 15 MINUTE))";
} else {
sqlWhere = "not exists (select fkId from idc_record where type='" + tnames [ 2 ] + "' and fkId=" + tnames [ 2 ] + "." + keyColumn + ")" ;
@ -454,7 +455,7 @@ public class IdcServiceImpl implements IdcService {
if ( sync ) {
result = syncMasterData ( map , isUpload , syncIp ) ;
if ( result ) {
setUpdateTime ( tnames [ 2 ] + "." + tnames [ 0 ] + "." + tnames [ 1 ] , DateUtil . formatDate ( nowUpdateTime , "yyyy-MM-dd HH:mm:ss" ) ) ;
setUpdateTime ( tnames [ 2 ] + "." + tnames [ 0 ] + "." + tnames [ 1 ] , DateUtil . formatDate ( nowUpdateTime , "yyyy-MM-dd HH:mm:ss" ) ) ;
}
}
//}
@ -552,7 +553,7 @@ public class IdcServiceImpl implements IdcService {
IDCUtils . createDirectory ( filePath + filePathSlash + datePath + "/" ) ;
if ( ! FileUtils . makeDirectory ( backFilePath + backFileSlash + datePath ) )
IDCUtils . createDirectory ( filePath + backFileSlash + datePath + "/" ) ;
if ( ! FileUtils . makeDirectory ( filePath + filePathSlash + imagePath ) )
if ( ! FileUtils . makeDirectory ( filePath + filePathSlash + imagePath ) )
IDCUtils . createDirectory ( filePath + filePathSlash + imagePath ) ;
FileUtils . SaveFileAs ( content , fileName ) ;
FileUtils . SaveFileAs ( content , backFileName ) ;
@ -629,7 +630,7 @@ public class IdcServiceImpl implements IdcService {
public void downloadFile ( String fileName , HttpServletResponse response ) {
OutputStream os ;
String filePathSlash = filePath . substring ( filePath . length ( ) - 1 ) . equals ( "/" ) ? "" : fileName . substring ( 0 , 1 ) . equals ( "/" ) ? "" : "/" ;
String sourceFileName = filePath + filePathSlash + imagePath + fileName ;
String sourceFileName = filePath + filePathSlash + imagePath + fileName ;
try {
if ( FileUtils . isFileExist ( sourceFileName ) ) {
byte [ ] bytes = FileUtils . readFileByBytes ( sourceFileName ) ;
@ -638,7 +639,7 @@ public class IdcServiceImpl implements IdcService {
os . flush ( ) ;
os . close ( ) ;
} else {
logger . error ( "file not exists:" + sourceFileName ) ;
logger . error ( "file not exists:" + sourceFileName ) ;
}
} catch ( IOException e ) {
// TODO Auto-generated catch block
@ -717,7 +718,7 @@ public class IdcServiceImpl implements IdcService {
Map < String , Object > whereParams = new HashMap < String , Object > ( ) ;
whereParams . put ( "sqlWhere" , params . get ( "sqlWhere" ) ) ;
String dataWhere = params . get ( "dataWhere" ) ! = null ? params . get ( "dataWhere" ) . toString ( ) : "" ;
String dataWhere = params . get ( "dataWhere" ) ! = null ? params . get ( "dataWhere" ) . toString ( ) : "" ;
Map < String , Object > map = new HashMap < String , Object > ( ) ;
String where = DBAUtils . convertWhere ( column , whereParams , dataWhere ) ;
sql + = ! StringUtils . isEmpty ( where ) ? " where " + where : "" ;
@ -927,7 +928,7 @@ public class IdcServiceImpl implements IdcService {
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
if ( ! StringUtils . isEmpty ( filePathColumn ) ) {
files [ i ] = list . get ( i ) . get ( filePathColumn ) ! = null ? list . get ( i ) . get ( filePathColumn ) . toString ( ) : "" ;
logger . info ( "file-->" + files [ i ] ) ;
logger . info ( "file-->" + files [ i ] ) ;
}
for ( int z = 0 ; z < 30 ; z + + ) {
if ( list . get ( i ) . get ( "data" + z ) ! = null ) {
@ -967,7 +968,7 @@ public class IdcServiceImpl implements IdcService {
if ( col > 0 )
sql + = "," ;
columnList . get ( i ) . put ( "attrName" , columnList . get ( i ) . get ( "columnName" ) ) ;
sql + = "`" + columnList . get ( i ) . get ( "columnName" ) . toString ( ) + "`" ;
sql + = "`" + columnList . get ( i ) . get ( "columnName" ) . toString ( ) + "`" ;
col + + ;
if ( uniqueColumn ! = null & & columnList . get ( i ) . get ( "columnKey" ) ! = null & & ( "," + uniqueColumn + "," ) . contains ( "," + columnList . get ( i ) . get ( "columnName" ) + "," ) ) {
keyColumn [ key ] = columnList . get ( i ) . get ( "columnName" ) . toString ( ) ;
@ -1145,7 +1146,7 @@ public class IdcServiceImpl implements IdcService {
}
/*下载文件*/
p rivate boolean batchDownloadFile ( String syncIp , String [ ] files ) {
p ublic boolean batchDownloadFile ( String syncIp , String [ ] files ) {
boolean success = true ;
for ( String fileName : files ) {
if ( ! StringUtils . isEmpty ( fileName ) ) {
@ -1165,7 +1166,7 @@ public class IdcServiceImpl implements IdcService {
@Override
public boolean signleDownloadFile ( String syncIp , String fileName ) {
String filePathSlash = filePath . substring ( filePath . length ( ) - 1 ) . equals ( "/" ) ? "" : "/" ;
if ( ! FileUtils . makeDirectory ( filePath + filePathSlash + imagePath ) )
if ( ! FileUtils . makeDirectory ( filePath + filePathSlash + imagePath ) )
IDCUtils . createDirectory ( filePath + filePathSlash + imagePath ) ;
OkHttpClient client = new OkHttpClient ( ) . newBuilder ( )
. build ( ) ;
@ -1182,14 +1183,13 @@ public class IdcServiceImpl implements IdcService {
int total = 0 ;
try {
Response result = client . newCall ( request ) . execute ( ) ;
String msg = result ! = null ? result . message ( ) . length ( ) > 200 ? result . message ( ) . substring ( 0 , 200 ) : result . message ( ) : "" ;
String msg = result ! = null ? result . message ( ) . length ( ) > 200 ? result . message ( ) . substring ( 0 , 200 ) : result . message ( ) : "" ;
if ( result ! = null & & result . isSuccessful ( ) & & MediaType . parse ( "application/force-download" ) . equals ( result . body ( ) . contentType ( ) ) ) {
if ( result ! = null & & result . isSuccessful ( ) & & MediaType . parse ( "application/force-download" ) . equals ( result . body ( ) . contentType ( ) ) ) {
try ( InputStream inputStream = result . body ( ) . byteStream ( ) ) {
FileOutputStream outputStream = new FileOutputStream ( filePath + filePathSlash + imagePath + fileName ) ;
FileOutputStream outputStream = new FileOutputStream ( filePath + filePathSlash + imagePath + fileName ) ;
byte b [ ] = new byte [ 1024 ] ;
@ -1202,9 +1202,9 @@ public class IdcServiceImpl implements IdcService {
outputStream . flush ( ) ;
outputStream . close ( ) ;
if ( ! ( total > 0 ) ) {
new File ( filePath + filePathSlash + imagePath + fileName ) . delete ( ) ;
executeSql ( "delete from idc_file where filePath='" + fileName + "'" ) ;
if ( ! ( total > 0 ) ) {
new File ( filePath + filePathSlash + imagePath + fileName ) . delete ( ) ;
executeSql ( "delete from idc_file where filePath='" + fileName + "'" ) ;
}
} catch ( Exception e ) {
@ -1212,8 +1212,8 @@ public class IdcServiceImpl implements IdcService {
}
}
if ( ! ( total > 0 ) ) {
String sql = "replace idc_file (filePath,createTime,msg) values ('" + fileName + "',now(),'" + msg + "')" ;
if ( ! ( total > 0 ) ) {
String sql = "replace idc_file (filePath,createTime,msg) values ('" + fileName + "',now(),'" + msg + "')" ;
executeSql ( sql ) ;
}