Skip to content

Commit 4fd7324

Browse files
committed
Merge pull request #4 from civitaspo/test
Add Test
2 parents b52e0ee + b4785c8 commit 4fd7324

File tree

8 files changed

+472
-4
lines changed

8 files changed

+472
-4
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: java
2+
jdk:
3+
- openjdk7
4+
- oraclejdk7
5+
- oraclejdk8
6+
script:
7+
- ./gradlew test
8+
after_success:
9+
- ./gradlew jacocoTestReport coveralls

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Sftp file output plugin for Embulk
2+
[![Build Status](https://travis-ci.org/civitaspo/embulk-output-sftp.svg)](https://travis-ci.org/civitaspo/embulk-output-sftp)
3+
[![Coverage Status](https://coveralls.io/repos/civitaspo/embulk-output-sftp/badge.svg?branch=master&service=github)](https://coveralls.io/github/civitaspo/embulk-output-sftp?branch=master)
24

35
Stores files on a SFTP Server
46

build.gradle

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
plugins {
22
id "com.jfrog.bintray" version "1.1"
33
id "com.github.jruby-gradle.base" version "0.1.5"
4+
id "com.github.kt3k.coveralls" version "2.4.0"
5+
id "jacoco"
46
id "java"
57
}
68
import com.github.jrubygradle.JRubyExec
@@ -17,12 +19,22 @@ sourceCompatibility = 1.7
1719
targetCompatibility = 1.7
1820

1921
dependencies {
20-
compile "org.embulk:embulk-core:0.7.4"
21-
provided "org.embulk:embulk-core:0.7.4"
22+
compile "org.embulk:embulk-core:0.7.+"
23+
provided "org.embulk:embulk-core:0.7.+"
2224
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
2325
compile "org.apache.commons:commons-vfs2:2.+"
2426
compile "com.jcraft:jsch:0.1.53"
2527
testCompile "junit:junit:4.+"
28+
testCompile "org.embulk:embulk-core:0.7.+:tests"
29+
testCompile "org.embulk:embulk-standards:0.7.+"
30+
testCompile "org.apache.sshd:apache-sshd:1.+"
31+
}
32+
33+
jacocoTestReport {
34+
reports {
35+
xml.enabled = true // coveralls plugin depends on xml format report
36+
html.enabled = true
37+
}
2638
}
2739

2840
task classpath(type: Copy, dependsOn: ["jar"]) {

src/main/java/org/embulk/output/sftp/SftpFileOutput.java

+24-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import org.apache.commons.vfs2.FileObject;
55
import org.apache.commons.vfs2.FileSystemException;
66
import org.apache.commons.vfs2.FileSystemOptions;
7-
import org.apache.commons.vfs2.Selectors;
87
import org.apache.commons.vfs2.impl.StandardFileSystemManager;
98
import org.apache.commons.vfs2.provider.sftp.IdentityInfo;
109
import org.apache.commons.vfs2.provider.sftp.SftpFileSystemConfigBuilder;
@@ -35,6 +34,7 @@ public class SftpFileOutput
3534
private final String userInfo;
3635
private final String host;
3736
private final int port;
37+
private final int maxConnectionRetry;
3838
private final String pathPrefix;
3939
private final String sequenceFormat;
4040
private final String fileNameExtension;
@@ -82,6 +82,7 @@ private FileSystemOptions initializeFsOptions(PluginTask task)
8282
if (task.getSecretKeyFilePath().isPresent()) {
8383
IdentityInfo identityInfo = new IdentityInfo(new File((task.getSecretKeyFilePath().get())), task.getSecretKeyPassphrase().getBytes());
8484
SftpFileSystemConfigBuilder.getInstance().setIdentityInfo(fsOptions, identityInfo);
85+
logger.info("set identity: {}", task.getSecretKeyFilePath().get());
8586
}
8687
}
8788
catch (FileSystemException e) {
@@ -99,6 +100,7 @@ private FileSystemOptions initializeFsOptions(PluginTask task)
99100
this.fsOptions = initializeFsOptions(task);
100101
this.host = task.getHost();
101102
this.port = task.getPort();
103+
this.maxConnectionRetry = task.getMaxConnectionRetry();
102104
this.pathPrefix = task.getPathPrefix();
103105
this.sequenceFormat = task.getSequenceFormat();
104106
this.fileNameExtension = task.getFileNameExtension();
@@ -204,6 +206,26 @@ private String getOutputFilePath()
204206
private FileObject newSftpFile(URI sftpUri)
205207
throws FileSystemException
206208
{
207-
return manager.resolveFile(sftpUri.toString(), fsOptions);
209+
int count = 0;
210+
while (true) {
211+
try {
212+
return manager.resolveFile(sftpUri.toString(), fsOptions);
213+
}
214+
catch (FileSystemException e) {
215+
if (++count == maxConnectionRetry) {
216+
throw e;
217+
}
218+
logger.warn("failed to connect sftp server: " + e.getMessage(), e);
219+
220+
try {
221+
Thread.sleep(count * 1000); // milliseconds
222+
}
223+
catch (InterruptedException e1) {
224+
// Ignore this exception
225+
logger.warn(e.getMessage(), e);
226+
}
227+
logger.warn("retry to connect sftp server: " + count + " times");
228+
}
229+
}
208230
}
209231
}

src/main/java/org/embulk/output/sftp/SftpFileOutputPlugin.java

+4
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ public interface PluginTask
5353
@ConfigDefault("600") // 10 minutes
5454
public int getSftpConnectionTimeout();
5555

56+
@Config("max_connection_retry")
57+
@ConfigDefault("5") // 5 times retry to connect sftp server if failed.
58+
public int getMaxConnectionRetry();
59+
5660
@Config("path_prefix")
5761
public String getPathPrefix();
5862

0 commit comments

Comments
 (0)