|
|
@ -274,7 +274,6 @@ const DIFF_HEAD = "diff --git "
|
|
|
|
|
|
|
|
|
|
|
|
func ParsePatch(reader io.Reader) (*Diff, error) {
|
|
|
|
func ParsePatch(reader io.Reader) (*Diff, error) {
|
|
|
|
scanner := bufio.NewScanner(reader)
|
|
|
|
scanner := bufio.NewScanner(reader)
|
|
|
|
var totalAdd, totalDel int
|
|
|
|
|
|
|
|
var curFile *DiffFile
|
|
|
|
var curFile *DiffFile
|
|
|
|
curSection := &DiffSection{
|
|
|
|
curSection := &DiffSection{
|
|
|
|
Lines: make([]*DiffLine, 0, 10),
|
|
|
|
Lines: make([]*DiffLine, 0, 10),
|
|
|
@ -285,6 +284,10 @@ func ParsePatch(reader io.Reader) (*Diff, error) {
|
|
|
|
for scanner.Scan() {
|
|
|
|
for scanner.Scan() {
|
|
|
|
line := scanner.Text()
|
|
|
|
line := scanner.Text()
|
|
|
|
fmt.Println(i, line)
|
|
|
|
fmt.Println(i, line)
|
|
|
|
|
|
|
|
if strings.HasPrefix(line, "+++ ") || strings.HasPrefix(line, "--- ") {
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
i = i + 1
|
|
|
|
i = i + 1
|
|
|
|
if line == "" {
|
|
|
|
if line == "" {
|
|
|
|
continue
|
|
|
|
continue
|
|
|
@ -300,40 +303,51 @@ func ParsePatch(reader io.Reader) (*Diff, error) {
|
|
|
|
diffLine := &DiffLine{Type: DIFF_LINE_SECTION, Content: "@@" + ss[len(ss)-2] + "@@"}
|
|
|
|
diffLine := &DiffLine{Type: DIFF_LINE_SECTION, Content: "@@" + ss[len(ss)-2] + "@@"}
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
|
|
|
|
|
|
|
|
diffLine = &DiffLine{Type: DIFF_LINE_PLAIN, Content: ss[len(ss)-1]}
|
|
|
|
if len(ss[len(ss)-1]) > 0 {
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
diffLine = &DiffLine{Type: DIFF_LINE_PLAIN, Content: ss[len(ss)-1]}
|
|
|
|
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
} else if line[0] == '+' {
|
|
|
|
} else if line[0] == '+' {
|
|
|
|
|
|
|
|
curFile.Addition++
|
|
|
|
|
|
|
|
diff.TotalAddition++
|
|
|
|
diffLine := &DiffLine{Type: DIFF_LINE_ADD, Content: line}
|
|
|
|
diffLine := &DiffLine{Type: DIFF_LINE_ADD, Content: line}
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
} else if line[0] == '-' {
|
|
|
|
} else if line[0] == '-' {
|
|
|
|
|
|
|
|
curFile.Deletion++
|
|
|
|
|
|
|
|
diff.TotalDeletion++
|
|
|
|
diffLine := &DiffLine{Type: DIFF_LINE_DEL, Content: line}
|
|
|
|
diffLine := &DiffLine{Type: DIFF_LINE_DEL, Content: line}
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Get new file.
|
|
|
|
if strings.HasPrefix(line, DIFF_HEAD) {
|
|
|
|
if strings.HasPrefix(line, DIFF_HEAD) {
|
|
|
|
if curFile != nil {
|
|
|
|
|
|
|
|
curFile.Addition, totalAdd = totalAdd, 0
|
|
|
|
|
|
|
|
curFile.Deletion, totalDel = totalDel, 0
|
|
|
|
|
|
|
|
curFile = nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fs := strings.Split(line[len(DIFF_HEAD):], " ")
|
|
|
|
fs := strings.Split(line[len(DIFF_HEAD):], " ")
|
|
|
|
a := fs[0]
|
|
|
|
a := fs[0]
|
|
|
|
|
|
|
|
|
|
|
|
curFile = &DiffFile{
|
|
|
|
curFile = &DiffFile{
|
|
|
|
Name: a[strings.Index(a, "/")+1:],
|
|
|
|
Name: a[strings.Index(a, "/")+1:],
|
|
|
|
Type: DIFF_FILE_CHANGE,
|
|
|
|
Type: DIFF_FILE_CHANGE,
|
|
|
|
Sections: make([]*DiffSection, 0),
|
|
|
|
Sections: make([]*DiffSection, 0, 10),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diff.Files = append(diff.Files, curFile)
|
|
|
|
diff.Files = append(diff.Files, curFile)
|
|
|
|
scanner.Scan()
|
|
|
|
|
|
|
|
scanner.Scan()
|
|
|
|
// Check file diff type.
|
|
|
|
if scanner.Text() == "--- /dev/null" {
|
|
|
|
for scanner.Scan() {
|
|
|
|
curFile.Type = DIFF_FILE_ADD
|
|
|
|
switch {
|
|
|
|
|
|
|
|
case strings.HasPrefix(scanner.Text(), "new file"):
|
|
|
|
|
|
|
|
curFile.Type = DIFF_FILE_ADD
|
|
|
|
|
|
|
|
case strings.HasPrefix(scanner.Text(), "deleted"):
|
|
|
|
|
|
|
|
curFile.Type = DIFF_FILE_DEL
|
|
|
|
|
|
|
|
case strings.HasPrefix(scanner.Text(), "index"):
|
|
|
|
|
|
|
|
curFile.Type = DIFF_FILE_CHANGE
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if curFile.Type > 0 {
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scanner.Scan()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -351,14 +365,13 @@ func GetDiff(repoPath, commitid string) (*Diff, error) {
|
|
|
|
return nil, err
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ????
|
|
|
|
|
|
|
|
if commit.ParentCount() == 0 {
|
|
|
|
if commit.ParentCount() == 0 {
|
|
|
|
return &Diff{}, err
|
|
|
|
return &Diff{}, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rd, wr := io.Pipe()
|
|
|
|
rd, wr := io.Pipe()
|
|
|
|
go func() {
|
|
|
|
go func() {
|
|
|
|
cmd := exec.Command("git", "diff", commitid, commit.Parent(0).Oid.String())
|
|
|
|
cmd := exec.Command("git", "diff", commit.Parent(0).Oid.String(), commitid)
|
|
|
|
cmd.Dir = repoPath
|
|
|
|
cmd.Dir = repoPath
|
|
|
|
cmd.Stdout = wr
|
|
|
|
cmd.Stdout = wr
|
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|