-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: supported ftp source reader and target (#915)
- suppoorted ftp source reader and target ### Related PRs Please make sure acesss this PR with #911
- Loading branch information
Showing
31 changed files
with
1,648 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
75 changes: 75 additions & 0 deletions
75
taier-common/src/main/java/com/dtstack/taier/common/enums/EFTPTaskFileType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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.dtstack.taier.common.enums; | ||
|
||
import com.dtstack.taier.common.exception.TaierDefineException; | ||
|
||
import java.util.List; | ||
import java.util.Locale; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.Stream; | ||
|
||
/** | ||
* | ||
* @since 1.3.1 | ||
*/ | ||
public enum EFTPTaskFileType { | ||
EXCEL(Stream.of( | ||
".xls", | ||
".xlsx" | ||
).collect(Collectors.toList()), "EXCEL"), | ||
|
||
CSV(Stream.of( | ||
".csv" | ||
).collect(Collectors.toList()), "CSV"), | ||
|
||
TXT(Stream.of( | ||
".txt" | ||
).collect(Collectors.toList()), "TXT"), | ||
; | ||
|
||
private final List<String> filetypes; | ||
|
||
private final String taskFiletype; | ||
|
||
EFTPTaskFileType(List<String> filetypes, String taskFiletype) { | ||
this.filetypes = filetypes; | ||
this.taskFiletype = taskFiletype; | ||
} | ||
|
||
public List<String> getFiletypes() { | ||
return filetypes; | ||
} | ||
|
||
public String getTaskFiletype() { | ||
return taskFiletype; | ||
} | ||
|
||
public static EFTPTaskFileType filetype(String filetype) { | ||
filetype = filetype.toLowerCase(Locale.ROOT); | ||
EFTPTaskFileType[] values = values(); | ||
for (EFTPTaskFileType value : values) { | ||
if (value.filetypes.contains(filetype)) { | ||
return value; | ||
} | ||
} | ||
throw new TaierDefineException("unsupported ftp task file format"); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
taier-data-develop/src/main/java/com/dtstack/taier/develop/enums/develop/EWriterMode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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.dtstack.taier.develop.enums.develop; | ||
|
||
import com.dtstack.taier.common.enums.DataSourceTypeEnum; | ||
import com.dtstack.taier.common.exception.TaierDefineException; | ||
|
||
/** | ||
* | ||
* @since 1.0.0 | ||
*/ | ||
public enum EWriterMode { | ||
|
||
FTP(DataSourceTypeEnum.FTP.getVal()) { | ||
@Override | ||
public String rewriterWriterMode(String frontendParam) { | ||
if ("replace".equals(frontendParam)) { | ||
return "overwrite"; | ||
} else if ("insert".equals(frontendParam)){ | ||
return "append"; | ||
} | ||
throw new TaierDefineException("writer mode not found on the " + frontendParam + ", maybe you can try replace or insert"); | ||
} | ||
}, | ||
; | ||
|
||
public abstract String rewriterWriterMode(String frontendParam); | ||
|
||
public static EWriterMode sourceType(Integer typeCode) { | ||
for (EWriterMode value : values()) { | ||
if (value.sourceType.equals(typeCode)) { | ||
return value; | ||
} | ||
} | ||
throw new TaierDefineException("unsupported data source type"); | ||
} | ||
|
||
/** | ||
* data source type var | ||
* @see DataSourceTypeEnum | ||
*/ | ||
private final Integer sourceType; | ||
|
||
EWriterMode(Integer sourceType) { | ||
this.sourceType = sourceType; | ||
} | ||
|
||
public Integer getSourceType() { | ||
return sourceType; | ||
} | ||
|
||
} |
Oops, something went wrong.