-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #37: inject, invoke maven command, read file and clean up
- Loading branch information
Showing
2 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
74 changes: 74 additions & 0 deletions
74
src/main/java/com/github/checkstyle/regression/extract/CheckstyleInjector.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,74 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// checkstyle: Checks Java source code for adherence to a set of rules. | ||
// Copyright (C) 2001-2017 the original author or authors. | ||
// | ||
// This library is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU Lesser General Public | ||
// License as published by the Free Software Foundation; either | ||
// version 2.1 of the License, or (at your option) any later version. | ||
// | ||
// This library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
// Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public | ||
// License along with this library; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
package com.github.checkstyle.regression.extract; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
|
||
import org.eclipse.jgit.api.Git; | ||
import org.eclipse.jgit.api.errors.GitAPIException; | ||
import org.eclipse.jgit.lib.Repository; | ||
import org.eclipse.jgit.storage.file.FileRepositoryBuilder; | ||
|
||
/** | ||
* @author LuoLiangchen | ||
*/ | ||
final class CheckstyleInjector { | ||
static File generateExtractInfoFile(String repoPath, String branch) | ||
throws IOException, GitAPIException { | ||
checkoutToPrBranch(repoPath, branch); | ||
moveInjectFilesToCheckstyleRepo(repoPath); | ||
invokeMavenCommand(repoPath); | ||
return null; | ||
} | ||
|
||
static void clearInjections() { | ||
// clear the injected files and the generated info file | ||
} | ||
|
||
private static void invokeMavenCommand(String repoPath) { | ||
// invoke maven command to generate the extract info file | ||
} | ||
|
||
private static void moveInjectFilesToCheckstyleRepo(String repoPath) { | ||
// move the injected files to checkstyle repo ... | ||
} | ||
|
||
private static void checkoutToPrBranch(String repoPath, String branch) | ||
throws IOException, GitAPIException { | ||
final File gitDir = new File(repoPath, ".git"); | ||
final Repository repository = new FileRepositoryBuilder().setGitDir(gitDir) | ||
.readEnvironment().findGitDir().build(); | ||
|
||
try { | ||
final Git git = new Git(repository); | ||
|
||
try { | ||
git.checkout().setName(branch).call(); | ||
} | ||
finally { | ||
git.close(); | ||
} | ||
} | ||
finally { | ||
repository.close(); | ||
} | ||
} | ||
} |
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