blob: bd2d22aad6baf3f48606cc5e6eee4b28677ebbb9 [file] [log] [blame]
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed 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 git4idea;
import com.intellij.openapi.util.Pair;
import com.intellij.openapi.util.text.StringUtil;
import java.util.ArrayList;
import java.util.Collection;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static com.intellij.openapi.vcs.Executor.echo;
import static com.intellij.openapi.vcs.Executor.touch;
import static git4idea.GitCucumberWorld.virtualCommits;
import static git4idea.test.GitExecutor.git;
import static org.junit.Assert.assertTrue;
/**
*
* @author Kirill Likhodedov
*/
public class CommitDetails {
private String myHash;
private String myMessage;
private String myAuthor;
private Collection<Change> myChanges;
private static class Change {
public void apply() {
switch (myType) {
case MODIFIED:
echo(myFile, myContent);
break;
case ADDED:
touch(myFile, myContent);
break;
case DELETED:
throw new UnsupportedOperationException("Not implemented yet");
case MOVED:
throw new UnsupportedOperationException("Not implemented yet");
}
}
enum Type {
MODIFIED, ADDED, DELETED, MOVED
}
private final Type myType;
private final String myFile;
private final String myContent;
Change(Type type, String filename, String content) {
myType = type;
myFile = filename;
myContent = content;
}
}
private enum ParsingStage {
MESSAGE,
DATA,
CHANGES
}
private enum Data {
AUTHOR("Author") {
@Override
void apply(CommitDetails commitDetails, String value) {
commitDetails.myAuthor = value;
}
};
private final String myKey;
Data(String key) {
myKey = key;
}
abstract void apply(CommitDetails commitDetails, String value);
private String getKey() {
return myKey;
}
}
/**
* Format:
* <pre>
commit subject
and optional description
-----
Author: John Bro
Changes:
M file.txt "feature changes"
* </pre>
*/
public static CommitDetails parse(String hash, String details) {
CommitDetails commit = new CommitDetails();
commit.myHash = hash;
StringBuilder message = new StringBuilder();
Collection<Change> changes = new ArrayList<Change>();
ParsingStage stage = ParsingStage.MESSAGE;
for (String line : StringUtil.splitByLines(details)) {
Pair<Data, String> data = checkDataLine(line);
if (data != null) {
stage = ParsingStage.DATA;
}
else if (line.matches("[MADR]\\d* [^ ]+ .+")) {
stage = ParsingStage.CHANGES;
}
if (stage == ParsingStage.MESSAGE) {
message.append(line);
}
else if (stage == ParsingStage.CHANGES) {
changes.add(parseChange(line));
}
else if (data != null) {
data.getFirst().apply(commit, data.getSecond());
}
}
commit.myMessage = message.toString();
commit.myChanges = changes;
return commit;
}
private static Pair<Data, String> checkDataLine(String line) {
for (Data data : Data.values()) {
String dataPrefix = data.getKey().toLowerCase() + ": ";
if (line.toLowerCase().startsWith(dataPrefix) && line.trim().length() != dataPrefix.length()) {
return Pair.create(data, line.substring(dataPrefix.length()).trim());
}
}
return null;
}
private static Change parseChange(String change) {
int firstSpace = change.indexOf(' ');
int secondSpace = change.indexOf(' ', firstSpace + 1);
return new Change(parseType(change.substring(0, firstSpace)),
change.substring(firstSpace + 1, secondSpace),
change.substring(secondSpace + 1));
}
private static Change.Type parseType(String type) {
if (type.equals("M")) {
return Change.Type.MODIFIED;
}
else if (type.equals("A")) {
return Change.Type.ADDED;
}
else if (type.equals("D")) {
return Change.Type.DELETED;
}
else if (type.equals("R")) {
return Change.Type.MOVED;
}
return null;
}
/**
* @return real commit details.
*/
public CommitDetails apply() {
for (Change change : myChanges) {
change.apply();
}
for (Change change : myChanges) {
if (change.myType == Change.Type.ADDED) {
git("add %s", change.myFile);
}
}
String authorString = myAuthor == null ? "" : String.format(" --author '%1$s <%1$s@example.com>'", myAuthor);
String commitOutput = git(String.format("commit -am '%s' %s", myMessage, authorString));
CommitDetails realCommit = parseHashFromCommitOutput(commitOutput);
virtualCommits.register(myHash, realCommit);
return realCommit;
}
CommitDetails parseHashFromCommitOutput(String commitOutput) {
String line = commitOutput.split("\n")[0];
Pattern reg = Pattern.compile("^\\s*\\[.+ ([a-fA-F0-9]+)\\] (.+)$");
Matcher matcher = reg.matcher(line);
boolean matches = matcher.matches();
assertTrue(String.format("The output of the commit command doesn't match the expected pattern: %nLine: [%s]%nWhole output: [%s]",
StringUtil.escapeLineBreak(line), StringUtil.escapeLineBreak(commitOutput)), matches);
return new CommitDetails().hash(matcher.group(1)).message(matcher.group(2));
}
private CommitDetails hash(String hash) {
myHash = hash;
return this;
}
private CommitDetails message(String message) {
myMessage = message;
return this;
}
public String getHash() {
return myHash;
}
public String getMessage() {
return myMessage;
}
}