You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.6 KiB
146 lines
4.6 KiB
import java.io.File;
|
|
import java.io.FileWriter;
|
|
import java.io.IOException;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.List;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
|
|
import org.apache.tools.ant.BuildException;
|
|
import org.apache.tools.ant.Project;
|
|
|
|
import org.eclipse.jgit.api.Git;
|
|
import org.eclipse.jgit.lib.ObjectId;
|
|
import org.eclipse.jgit.lib.Repository;
|
|
import org.eclipse.jgit.revwalk.RevCommit;
|
|
import org.eclipse.jgit.revwalk.RevTag;
|
|
import org.eclipse.jgit.revwalk.RevWalk;
|
|
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
|
|
|
|
|
|
public class GitRevTask extends org.apache.tools.ant.Task {
|
|
|
|
private String repoPath;
|
|
private String branchprop;
|
|
private String revprop;
|
|
private String dateprop;
|
|
|
|
public void setRepoPath(final String repoPath) {
|
|
this.repoPath = repoPath;
|
|
}
|
|
|
|
public void setBranchprop(final String branchprop) {
|
|
this.branchprop = branchprop;
|
|
}
|
|
|
|
public void setRevprop(final String revprop) {
|
|
this.revprop = revprop;
|
|
}
|
|
|
|
public void setDateprop(final String dateprop) {
|
|
this.dateprop = dateprop;
|
|
}
|
|
|
|
public void execute() {
|
|
if (this.revprop==null || this.revprop.isEmpty()) {
|
|
log("git entries file name revprop was not set properly",Project.MSG_ERR);
|
|
return;
|
|
}
|
|
if (this.dateprop==null || this.dateprop.isEmpty()) {
|
|
log("git entries file name dateprop was not set properly",Project.MSG_ERR);
|
|
return;
|
|
}
|
|
|
|
String branch = null;
|
|
String revision = null;
|
|
String lastTag = null;
|
|
String commitDate = null;
|
|
try {
|
|
final File src = new File(repoPath);
|
|
final Repository repo = new FileRepositoryBuilder().readEnvironment()
|
|
.findGitDir(src).build();
|
|
branch = repo.getBranch();
|
|
branch = "master".equals(branch)? "" : "_" + branch;
|
|
final ObjectId head = repo.resolve("HEAD");
|
|
|
|
final Git git = new Git(repo);
|
|
final List<RevTag> tags = git.tagList().call();
|
|
|
|
final RevWalk walk = new RevWalk(repo);
|
|
final RevCommit headCommit = walk.parseCommit(head);
|
|
final SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
|
|
commitDate = df.format(headCommit.getAuthorIdent().getWhen());
|
|
walk.markStart(headCommit);
|
|
int distance = 0;
|
|
for (final RevCommit commit : walk) {
|
|
for (final RevTag tag : tags) {
|
|
if (commit.equals(tag.getObject())) {
|
|
lastTag = tag.getShortMessage();
|
|
break;
|
|
}
|
|
}
|
|
if (lastTag != null || distance++ > 999) break;
|
|
}
|
|
walk.dispose();
|
|
if (lastTag == null) {
|
|
revision = "0000";
|
|
} else {
|
|
revision = Integer.toString(distance + 9000);
|
|
}
|
|
} catch (final IOException e) {
|
|
// TODO Auto-generated catch block
|
|
e.printStackTrace();
|
|
}
|
|
|
|
Project theProject = getProject();
|
|
if (theProject != null) {
|
|
theProject.setProperty(this.branchprop, branch);
|
|
log("Property '" + this.branchprop + "' set to '" + branch + "'", Project.MSG_VERBOSE);
|
|
theProject.setProperty(this.revprop, revision);
|
|
log("Property '" + this.revprop + "' set to '" + revision + "'", Project.MSG_VERBOSE);
|
|
theProject.setProperty(this.dateprop, commitDate);
|
|
log("Property '" + this.dateprop + "' set to '" + commitDate + "'", Project.MSG_VERBOSE);
|
|
}
|
|
}
|
|
|
|
/** use: GitRevTask.jar pathtoGitRepro outputfile
|
|
* optional parameter
|
|
* 1st parameter = path to Git repository (default ..)
|
|
* 2nd parameter = ouputfile (default gitbuild.properties)
|
|
* */
|
|
public static void main(String[] args) {
|
|
GitRevTask gitRevTask = new GitRevTask();
|
|
if (args.length == 0) {
|
|
gitRevTask.setRepoPath(".."); // path to root of git repository
|
|
} else {
|
|
gitRevTask.setRepoPath(args[0]);
|
|
}
|
|
gitRevTask.setBranchprop("brnach");
|
|
gitRevTask.setRevprop("baseRevisionNr");
|
|
gitRevTask.setDateprop("DSTAMP");
|
|
|
|
Project p = new Project();
|
|
gitRevTask.setProject(p);
|
|
gitRevTask.execute();
|
|
String branch = gitRevTask.getProject().getProperty("branch");
|
|
String version = gitRevTask.getProject().getProperty("baseRevisionNr");
|
|
String commitDate = gitRevTask.getProject().getProperty("DSTAMP");
|
|
|
|
File f;
|
|
if (args.length > 1) {
|
|
f = new File (args[1]);
|
|
} else {
|
|
f = new File("gitbuildnumber.properties");
|
|
}
|
|
try {
|
|
f.createNewFile();
|
|
FileWriter w = new FileWriter(f);
|
|
w.append("branch=" + branch + "\n");
|
|
w.append("releaseNr=" + version + "\n");
|
|
w.append("DSTAMP=" + commitDate + "\n");
|
|
w.close();
|
|
|
|
} catch (final IOException ex) {}
|
|
}
|
|
}
|