blob: 838e7646a3101d59a4c9801a43c343a912b1b945 [file] [log] [blame]
package org.jetbrains.idea.svn.checkin;
import com.intellij.openapi.vcs.VcsException;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.idea.svn.api.BaseSvnClient;
import org.jetbrains.idea.svn.commandLine.CommitEventHandler;
import org.jetbrains.idea.svn.commandLine.SvnBindException;
import org.tmatesoft.svn.core.SVNCommitInfo;
import org.tmatesoft.svn.core.SVNDepth;
import org.tmatesoft.svn.core.SVNException;
import org.tmatesoft.svn.core.SVNURL;
import org.tmatesoft.svn.core.wc.ISVNCommitHandler;
import org.tmatesoft.svn.core.wc.SVNCommitClient;
import java.io.File;
/**
* @author Konstantin Kolosovsky.
*/
public class SvnKitImportClient extends BaseSvnClient implements ImportClient {
@Override
public long doImport(@NotNull File path,
@NotNull SVNURL url,
@Nullable SVNDepth depth,
@NotNull String message,
boolean noIgnore,
@Nullable CommitEventHandler handler,
@Nullable ISVNCommitHandler commitHandler) throws VcsException {
SVNCommitClient client = myVcs.createCommitClient();
client.setEventHandler(handler);
client.setCommitHandler(commitHandler);
try {
SVNCommitInfo info = client.doImport(path, url, message, null, !noIgnore, false, depth);
return info.getNewRevision();
}
catch (SVNException e) {
throw new SvnBindException(e);
}
}
}