2014-04-13 07:05:36 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
2014-12-09 12:48:25 +05:30
|
|
|
"bytes"
|
2014-06-19 10:38:03 +05:30
|
|
|
"fmt"
|
2016-01-09 12:21:17 +05:30
|
|
|
"html"
|
|
|
|
"html/template"
|
2014-04-13 07:05:36 +05:30
|
|
|
"io"
|
2015-12-14 20:08:21 +05:30
|
|
|
"io/ioutil"
|
2014-04-13 07:05:36 +05:30
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
|
2016-11-11 17:41:45 +05:30
|
|
|
"code.gitea.io/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
2016-12-06 23:28:31 +05:30
|
|
|
"code.gitea.io/gitea/modules/highlight"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/process"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-11-11 17:41:45 +05:30
|
|
|
"github.com/Unknwon/com"
|
2016-11-05 22:26:35 +05:30
|
|
|
"github.com/sergi/go-diff/diffmatchpatch"
|
|
|
|
"golang.org/x/net/html/charset"
|
|
|
|
"golang.org/x/text/transform"
|
2014-04-13 07:05:36 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// DiffLineType represents the type of a DiffLine.
|
2016-01-07 01:30:40 +05:30
|
|
|
type DiffLineType uint8
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
// DiffLineType possible values.
|
2014-04-13 07:05:36 +05:30
|
|
|
const (
|
2016-11-07 21:54:59 +05:30
|
|
|
DiffLinePlain DiffLineType = iota + 1
|
|
|
|
DiffLineAdd
|
|
|
|
DiffLineDel
|
2016-11-07 22:03:03 +05:30
|
|
|
DiffLineSection
|
2014-04-13 07:05:36 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// DiffFileType represents the type of a DiffFile.
|
2016-01-07 01:30:40 +05:30
|
|
|
type DiffFileType uint8
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
// DiffFileType possible values.
|
2014-04-13 07:05:36 +05:30
|
|
|
const (
|
2016-11-07 21:54:59 +05:30
|
|
|
DiffFileAdd DiffFileType = iota + 1
|
|
|
|
DiffFileChange
|
|
|
|
DiffFileDel
|
2016-11-07 22:03:03 +05:30
|
|
|
DiffFileRename
|
2014-04-13 07:05:36 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// DiffLine represents a line difference in a DiffSection.
|
2014-04-13 07:05:36 +05:30
|
|
|
type DiffLine struct {
|
2016-06-29 20:41:00 +05:30
|
|
|
LeftIdx int
|
|
|
|
RightIdx int
|
|
|
|
Type DiffLineType
|
|
|
|
Content string
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// GetType returns the type of a DiffLine.
|
2016-01-07 01:30:40 +05:30
|
|
|
func (d *DiffLine) GetType() int {
|
|
|
|
return int(d.Type)
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// DiffSection represents a section of a DiffFile.
|
2014-04-13 07:05:36 +05:30
|
|
|
type DiffSection struct {
|
|
|
|
Name string
|
|
|
|
Lines []*DiffLine
|
|
|
|
}
|
|
|
|
|
2016-01-09 12:21:17 +05:30
|
|
|
var (
|
|
|
|
addedCodePrefix = []byte("<span class=\"added-code\">")
|
|
|
|
removedCodePrefix = []byte("<span class=\"removed-code\">")
|
|
|
|
codeTagSuffix = []byte("</span>")
|
|
|
|
)
|
|
|
|
|
|
|
|
func diffToHTML(diffs []diffmatchpatch.Diff, lineType DiffLineType) template.HTML {
|
2016-08-07 22:19:47 +05:30
|
|
|
buf := bytes.NewBuffer(nil)
|
2016-08-16 20:03:53 +05:30
|
|
|
|
2017-01-05 06:20:34 +05:30
|
|
|
// Reproduce signs which are cut for inline diff before.
|
2016-08-16 20:03:53 +05:30
|
|
|
switch lineType {
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineAdd:
|
2016-08-16 20:03:53 +05:30
|
|
|
buf.WriteByte('+')
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineDel:
|
2016-08-16 20:03:53 +05:30
|
|
|
buf.WriteByte('-')
|
|
|
|
}
|
|
|
|
|
2016-01-09 12:21:17 +05:30
|
|
|
for i := range diffs {
|
2016-08-07 22:19:47 +05:30
|
|
|
switch {
|
2016-11-07 21:54:59 +05:30
|
|
|
case diffs[i].Type == diffmatchpatch.DiffInsert && lineType == DiffLineAdd:
|
2016-01-09 12:21:17 +05:30
|
|
|
buf.Write(addedCodePrefix)
|
|
|
|
buf.WriteString(html.EscapeString(diffs[i].Text))
|
|
|
|
buf.Write(codeTagSuffix)
|
2016-11-07 21:54:59 +05:30
|
|
|
case diffs[i].Type == diffmatchpatch.DiffDelete && lineType == DiffLineDel:
|
2016-01-09 12:21:17 +05:30
|
|
|
buf.Write(removedCodePrefix)
|
|
|
|
buf.WriteString(html.EscapeString(diffs[i].Text))
|
|
|
|
buf.Write(codeTagSuffix)
|
2016-08-07 22:19:47 +05:30
|
|
|
case diffs[i].Type == diffmatchpatch.DiffEqual:
|
2016-01-09 12:21:17 +05:30
|
|
|
buf.WriteString(html.EscapeString(diffs[i].Text))
|
2016-01-04 02:56:46 +05:30
|
|
|
}
|
|
|
|
}
|
2016-01-09 12:21:17 +05:30
|
|
|
|
|
|
|
return template.HTML(buf.Bytes())
|
2016-01-04 02:56:46 +05:30
|
|
|
}
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
// GetLine gets a specific line by type (add or del) and file line number
|
2016-01-08 18:20:25 +05:30
|
|
|
func (diffSection *DiffSection) GetLine(lineType DiffLineType, idx int) *DiffLine {
|
2016-08-07 22:19:47 +05:30
|
|
|
var (
|
|
|
|
difference = 0
|
|
|
|
addCount = 0
|
|
|
|
delCount = 0
|
|
|
|
matchDiffLine *DiffLine
|
|
|
|
)
|
|
|
|
|
|
|
|
LOOP:
|
2016-01-08 18:20:25 +05:30
|
|
|
for _, diffLine := range diffSection.Lines {
|
2016-08-07 22:19:47 +05:30
|
|
|
switch diffLine.Type {
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineAdd:
|
2016-08-07 22:19:47 +05:30
|
|
|
addCount++
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineDel:
|
2016-08-07 22:19:47 +05:30
|
|
|
delCount++
|
|
|
|
default:
|
|
|
|
if matchDiffLine != nil {
|
|
|
|
break LOOP
|
|
|
|
}
|
2016-01-08 18:20:25 +05:30
|
|
|
difference = diffLine.RightIdx - diffLine.LeftIdx
|
2016-08-07 22:19:47 +05:30
|
|
|
addCount = 0
|
|
|
|
delCount = 0
|
2016-01-04 02:56:46 +05:30
|
|
|
}
|
|
|
|
|
2016-08-07 22:19:47 +05:30
|
|
|
switch lineType {
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineDel:
|
2016-01-09 12:21:17 +05:30
|
|
|
if diffLine.RightIdx == 0 && diffLine.LeftIdx == idx-difference {
|
2016-08-07 22:19:47 +05:30
|
|
|
matchDiffLine = diffLine
|
2016-01-08 18:20:25 +05:30
|
|
|
}
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineAdd:
|
2016-01-09 12:21:17 +05:30
|
|
|
if diffLine.LeftIdx == 0 && diffLine.RightIdx == idx+difference {
|
2016-08-07 22:19:47 +05:30
|
|
|
matchDiffLine = diffLine
|
2016-01-04 02:56:46 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-07 22:19:47 +05:30
|
|
|
|
|
|
|
if addCount == delCount {
|
|
|
|
return matchDiffLine
|
|
|
|
}
|
2016-01-04 02:56:46 +05:30
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-07 22:19:47 +05:30
|
|
|
var diffMatchPatch = diffmatchpatch.New()
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
diffMatchPatch.DiffEditCost = 100
|
|
|
|
}
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
// GetComputedInlineDiffFor computes inline diff for the given line.
|
2016-01-28 02:24:08 +05:30
|
|
|
func (diffSection *DiffSection) GetComputedInlineDiffFor(diffLine *DiffLine) template.HTML {
|
2016-08-07 22:19:47 +05:30
|
|
|
if setting.Git.DisableDiffHighlight {
|
2016-01-28 02:24:08 +05:30
|
|
|
return template.HTML(html.EscapeString(diffLine.Content[1:]))
|
|
|
|
}
|
2016-08-07 22:19:47 +05:30
|
|
|
var (
|
|
|
|
compareDiffLine *DiffLine
|
|
|
|
diff1 string
|
|
|
|
diff2 string
|
|
|
|
)
|
2016-01-04 02:56:46 +05:30
|
|
|
|
2016-01-28 02:24:08 +05:30
|
|
|
// try to find equivalent diff line. ignore, otherwise
|
2016-08-07 22:19:47 +05:30
|
|
|
switch diffLine.Type {
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineAdd:
|
|
|
|
compareDiffLine = diffSection.GetLine(DiffLineDel, diffLine.RightIdx)
|
2016-01-28 02:24:08 +05:30
|
|
|
if compareDiffLine == nil {
|
2016-08-16 20:07:28 +05:30
|
|
|
return template.HTML(html.EscapeString(diffLine.Content))
|
2016-01-28 02:24:08 +05:30
|
|
|
}
|
|
|
|
diff1 = compareDiffLine.Content
|
|
|
|
diff2 = diffLine.Content
|
2016-11-07 21:54:59 +05:30
|
|
|
case DiffLineDel:
|
|
|
|
compareDiffLine = diffSection.GetLine(DiffLineAdd, diffLine.LeftIdx)
|
2016-01-28 02:24:08 +05:30
|
|
|
if compareDiffLine == nil {
|
2016-08-16 20:07:28 +05:30
|
|
|
return template.HTML(html.EscapeString(diffLine.Content))
|
2016-01-04 02:56:46 +05:30
|
|
|
}
|
2016-01-28 02:24:08 +05:30
|
|
|
diff1 = diffLine.Content
|
|
|
|
diff2 = compareDiffLine.Content
|
2016-08-07 22:19:47 +05:30
|
|
|
default:
|
2016-08-16 20:03:53 +05:30
|
|
|
return template.HTML(html.EscapeString(diffLine.Content))
|
2016-01-28 02:24:08 +05:30
|
|
|
}
|
2016-01-04 02:56:46 +05:30
|
|
|
|
2016-08-07 22:19:47 +05:30
|
|
|
diffRecord := diffMatchPatch.DiffMain(diff1[1:], diff2[1:], true)
|
|
|
|
diffRecord = diffMatchPatch.DiffCleanupEfficiency(diffRecord)
|
2016-01-04 02:56:46 +05:30
|
|
|
|
2016-01-28 02:24:08 +05:30
|
|
|
return diffToHTML(diffRecord, diffLine.Type)
|
2016-01-04 02:56:46 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// DiffFile represents a file diff.
|
2014-04-13 07:05:36 +05:30
|
|
|
type DiffFile struct {
|
|
|
|
Name string
|
2015-11-03 06:25:24 +05:30
|
|
|
OldName string
|
2014-05-13 22:10:32 +05:30
|
|
|
Index int
|
2014-04-13 07:05:36 +05:30
|
|
|
Addition, Deletion int
|
2016-01-07 01:30:40 +05:30
|
|
|
Type DiffFileType
|
2015-02-06 14:32:32 +05:30
|
|
|
IsCreated bool
|
|
|
|
IsDeleted bool
|
2014-04-16 05:31:20 +05:30
|
|
|
IsBin bool
|
2016-12-26 06:46:37 +05:30
|
|
|
IsLFSFile bool
|
2015-11-03 06:25:24 +05:30
|
|
|
IsRenamed bool
|
2016-07-22 23:48:56 +05:30
|
|
|
IsSubmodule bool
|
2014-04-13 07:05:36 +05:30
|
|
|
Sections []*DiffSection
|
2016-06-29 20:41:00 +05:30
|
|
|
IsIncomplete bool
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
// GetType returns type of diff file.
|
2016-01-07 01:30:40 +05:30
|
|
|
func (diffFile *DiffFile) GetType() int {
|
|
|
|
return int(diffFile.Type)
|
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// GetHighlightClass returns highlight class for a filename.
|
2016-01-31 21:49:02 +05:30
|
|
|
func (diffFile *DiffFile) GetHighlightClass() string {
|
2016-02-22 03:15:24 +05:30
|
|
|
return highlight.FileNameToHighlightClass(diffFile.Name)
|
2016-01-31 21:49:02 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// Diff represents a difference between two git trees.
|
2014-04-13 07:05:36 +05:30
|
|
|
type Diff struct {
|
|
|
|
TotalAddition, TotalDeletion int
|
|
|
|
Files []*DiffFile
|
2016-06-29 20:41:00 +05:30
|
|
|
IsIncomplete bool
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// NumFiles returns number of files changes in a diff.
|
2014-04-13 07:05:36 +05:30
|
|
|
func (diff *Diff) NumFiles() int {
|
|
|
|
return len(diff.Files)
|
|
|
|
}
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
const cmdDiffHead = "diff --git "
|
2014-04-13 07:05:36 +05:30
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// ParsePatch builds a Diff object from a io.Reader and some
|
|
|
|
// parameters.
|
2016-07-30 21:09:58 +05:30
|
|
|
// TODO: move this function to gogits/git-module
|
2017-01-05 06:20:34 +05:30
|
|
|
func ParsePatch(maxLines, maxLineCharacters, maxFiles int, reader io.Reader) (*Diff, error) {
|
2014-04-13 07:05:36 +05:30
|
|
|
var (
|
2015-12-02 11:40:13 +05:30
|
|
|
diff = &Diff{Files: make([]*DiffFile, 0)}
|
|
|
|
|
2014-04-13 07:05:36 +05:30
|
|
|
curFile *DiffFile
|
|
|
|
curSection = &DiffSection{
|
|
|
|
Lines: make([]*DiffLine, 0, 10),
|
|
|
|
}
|
|
|
|
|
|
|
|
leftLine, rightLine int
|
2015-12-02 11:40:13 +05:30
|
|
|
lineCount int
|
2016-06-29 20:41:00 +05:30
|
|
|
curFileLinesCount int
|
2016-12-26 06:46:37 +05:30
|
|
|
curFileLFSPrefix bool
|
2014-04-13 07:05:36 +05:30
|
|
|
)
|
|
|
|
|
2015-12-02 11:40:13 +05:30
|
|
|
input := bufio.NewReader(reader)
|
|
|
|
isEOF := false
|
2016-06-29 20:41:00 +05:30
|
|
|
for !isEOF {
|
2015-12-02 11:40:13 +05:30
|
|
|
line, err := input.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
isEOF = true
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("ReadString: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(line) > 0 && line[len(line)-1] == '\n' {
|
|
|
|
// Remove line break.
|
|
|
|
line = line[:len(line)-1]
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
|
2016-06-29 20:41:00 +05:30
|
|
|
if strings.HasPrefix(line, "+++ ") || strings.HasPrefix(line, "--- ") || len(line) == 0 {
|
2014-09-17 09:33:03 +05:30
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-12-26 06:46:37 +05:30
|
|
|
trimLine := strings.Trim(line, "+- ")
|
|
|
|
|
|
|
|
if trimLine == LFSMetaFileIdentifier {
|
|
|
|
curFileLFSPrefix = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if curFileLFSPrefix && strings.HasPrefix(trimLine, LFSMetaFileOidPrefix) {
|
|
|
|
oid := strings.TrimPrefix(trimLine, LFSMetaFileOidPrefix)
|
|
|
|
|
|
|
|
if len(oid) == 64 {
|
|
|
|
m := &LFSMetaObject{Oid: oid}
|
|
|
|
count, err := x.Count(m)
|
|
|
|
|
|
|
|
if err == nil && count > 0 {
|
|
|
|
curFile.IsBin = true
|
|
|
|
curFile.IsLFSFile = true
|
|
|
|
curSection.Lines = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-29 20:41:00 +05:30
|
|
|
curFileLinesCount++
|
2015-12-02 11:40:13 +05:30
|
|
|
lineCount++
|
2014-04-13 07:05:36 +05:30
|
|
|
|
2017-01-05 06:20:34 +05:30
|
|
|
// Diff data too large, we only show the first about maxLines lines
|
|
|
|
if curFileLinesCount >= maxLines || len(line) >= maxLineCharacters {
|
2016-06-29 20:41:00 +05:30
|
|
|
curFile.IsIncomplete = true
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
2014-04-16 05:31:20 +05:30
|
|
|
|
|
|
|
switch {
|
|
|
|
case line[0] == ' ':
|
2016-11-07 21:54:59 +05:30
|
|
|
diffLine := &DiffLine{Type: DiffLinePlain, Content: line, LeftIdx: leftLine, RightIdx: rightLine}
|
2014-04-13 07:05:36 +05:30
|
|
|
leftLine++
|
|
|
|
rightLine++
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
continue
|
2014-04-16 05:31:20 +05:30
|
|
|
case line[0] == '@':
|
2014-04-13 07:05:36 +05:30
|
|
|
curSection = &DiffSection{}
|
|
|
|
curFile.Sections = append(curFile.Sections, curSection)
|
|
|
|
ss := strings.Split(line, "@@")
|
2016-11-07 22:03:03 +05:30
|
|
|
diffLine := &DiffLine{Type: DiffLineSection, Content: line}
|
2014-04-13 07:05:36 +05:30
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
|
|
|
|
// Parse line number.
|
2015-07-29 20:25:01 +05:30
|
|
|
ranges := strings.Split(ss[1][1:], " ")
|
2014-07-26 09:54:27 +05:30
|
|
|
leftLine, _ = com.StrTo(strings.Split(ranges[0], ",")[0][1:]).Int()
|
2015-07-29 20:25:01 +05:30
|
|
|
if len(ranges) > 1 {
|
|
|
|
rightLine, _ = com.StrTo(strings.Split(ranges[1], ",")[0]).Int()
|
|
|
|
} else {
|
|
|
|
log.Warn("Parse line number failed: %v", line)
|
|
|
|
rightLine = leftLine
|
|
|
|
}
|
2014-04-13 07:05:36 +05:30
|
|
|
continue
|
2014-04-16 05:31:20 +05:30
|
|
|
case line[0] == '+':
|
2014-04-13 07:05:36 +05:30
|
|
|
curFile.Addition++
|
|
|
|
diff.TotalAddition++
|
2016-11-07 21:54:59 +05:30
|
|
|
diffLine := &DiffLine{Type: DiffLineAdd, Content: line, RightIdx: rightLine}
|
2014-04-13 07:05:36 +05:30
|
|
|
rightLine++
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
|
|
|
continue
|
2014-04-16 05:31:20 +05:30
|
|
|
case line[0] == '-':
|
2014-04-13 07:05:36 +05:30
|
|
|
curFile.Deletion++
|
|
|
|
diff.TotalDeletion++
|
2016-11-07 21:54:59 +05:30
|
|
|
diffLine := &DiffLine{Type: DiffLineDel, Content: line, LeftIdx: leftLine}
|
2014-04-13 07:05:36 +05:30
|
|
|
if leftLine > 0 {
|
|
|
|
leftLine++
|
|
|
|
}
|
|
|
|
curSection.Lines = append(curSection.Lines, diffLine)
|
2014-04-16 05:31:20 +05:30
|
|
|
case strings.HasPrefix(line, "Binary"):
|
|
|
|
curFile.IsBin = true
|
2014-04-13 07:05:36 +05:30
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get new file.
|
2016-11-22 16:38:23 +05:30
|
|
|
if strings.HasPrefix(line, cmdDiffHead) {
|
2015-11-03 06:25:24 +05:30
|
|
|
middle := -1
|
|
|
|
|
2015-11-20 11:48:50 +05:30
|
|
|
// Note: In case file name is surrounded by double quotes (it happens only in git-shell).
|
|
|
|
// e.g. diff --git "a/xxx" "b/xxx"
|
2016-11-22 16:38:23 +05:30
|
|
|
hasQuote := line[len(cmdDiffHead)] == '"'
|
2015-11-03 06:25:24 +05:30
|
|
|
if hasQuote {
|
|
|
|
middle = strings.Index(line, ` "b/`)
|
|
|
|
} else {
|
|
|
|
middle = strings.Index(line, " b/")
|
|
|
|
}
|
2014-04-13 07:05:36 +05:30
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
beg := len(cmdDiffHead)
|
2015-11-03 06:25:24 +05:30
|
|
|
a := line[beg+2 : middle]
|
|
|
|
b := line[middle+3:]
|
|
|
|
if hasQuote {
|
2015-11-20 11:48:50 +05:30
|
|
|
a = string(git.UnescapeChars([]byte(a[1 : len(a)-1])))
|
|
|
|
b = string(git.UnescapeChars([]byte(b[1 : len(b)-1])))
|
2015-08-20 13:38:26 +05:30
|
|
|
}
|
|
|
|
|
2014-04-13 07:05:36 +05:30
|
|
|
curFile = &DiffFile{
|
2017-06-14 14:37:09 +05:30
|
|
|
Name: b,
|
|
|
|
OldName: a,
|
|
|
|
Index: len(diff.Files) + 1,
|
|
|
|
Type: DiffFileChange,
|
|
|
|
Sections: make([]*DiffSection, 0, 10),
|
|
|
|
IsRenamed: a != b,
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
diff.Files = append(diff.Files, curFile)
|
2016-06-29 20:41:00 +05:30
|
|
|
if len(diff.Files) >= maxFiles {
|
|
|
|
diff.IsIncomplete = true
|
|
|
|
io.Copy(ioutil.Discard, reader)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
curFileLinesCount = 0
|
2016-12-26 06:46:37 +05:30
|
|
|
curFileLFSPrefix = false
|
2014-04-13 07:05:36 +05:30
|
|
|
|
2016-07-22 23:48:56 +05:30
|
|
|
// Check file diff type and is submodule.
|
2015-12-02 11:40:13 +05:30
|
|
|
for {
|
|
|
|
line, err := input.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
isEOF = true
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("ReadString: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-13 07:05:36 +05:30
|
|
|
switch {
|
2015-12-02 11:40:13 +05:30
|
|
|
case strings.HasPrefix(line, "new file"):
|
2016-11-07 21:54:59 +05:30
|
|
|
curFile.Type = DiffFileAdd
|
2015-02-06 14:32:32 +05:30
|
|
|
curFile.IsCreated = true
|
2015-12-02 11:40:13 +05:30
|
|
|
case strings.HasPrefix(line, "deleted"):
|
2016-11-07 21:54:59 +05:30
|
|
|
curFile.Type = DiffFileDel
|
2015-02-06 14:32:32 +05:30
|
|
|
curFile.IsDeleted = true
|
2015-12-02 11:40:13 +05:30
|
|
|
case strings.HasPrefix(line, "index"):
|
2016-11-07 21:54:59 +05:30
|
|
|
curFile.Type = DiffFileChange
|
2015-12-02 11:40:13 +05:30
|
|
|
case strings.HasPrefix(line, "similarity index 100%"):
|
2016-11-07 22:03:03 +05:30
|
|
|
curFile.Type = DiffFileRename
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
|
|
|
if curFile.Type > 0 {
|
2016-07-22 23:48:56 +05:30
|
|
|
if strings.HasSuffix(line, " 160000\n") {
|
|
|
|
curFile.IsSubmodule = true
|
|
|
|
}
|
2014-04-13 07:05:36 +05:30
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 11:40:13 +05:30
|
|
|
// FIXME: detect encoding while parsing.
|
|
|
|
var buf bytes.Buffer
|
2015-07-29 20:25:01 +05:30
|
|
|
for _, f := range diff.Files {
|
|
|
|
buf.Reset()
|
|
|
|
for _, sec := range f.Sections {
|
|
|
|
for _, l := range sec.Lines {
|
|
|
|
buf.WriteString(l.Content)
|
|
|
|
buf.WriteString("\n")
|
|
|
|
}
|
|
|
|
}
|
2016-01-01 08:43:47 +05:30
|
|
|
charsetLabel, err := base.DetectEncoding(buf.Bytes())
|
|
|
|
if charsetLabel != "UTF-8" && err == nil {
|
2015-07-29 20:25:01 +05:30
|
|
|
encoding, _ := charset.Lookup(charsetLabel)
|
|
|
|
if encoding != nil {
|
|
|
|
d := encoding.NewDecoder()
|
2014-12-09 12:48:25 +05:30
|
|
|
for _, sec := range f.Sections {
|
|
|
|
for _, l := range sec.Lines {
|
2014-12-22 14:31:52 +05:30
|
|
|
if c, _, err := transform.String(d, l.Content); err == nil {
|
|
|
|
l.Content = c
|
|
|
|
}
|
2014-12-09 12:48:25 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-13 07:05:36 +05:30
|
|
|
return diff, nil
|
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// GetDiffRange builds a Diff between two commits of a repository.
|
|
|
|
// passing the empty string as beforeCommitID returns a diff from the
|
|
|
|
// parent commit.
|
2017-01-05 06:20:34 +05:30
|
|
|
func GetDiffRange(repoPath, beforeCommitID, afterCommitID string, maxLines, maxLineCharacters, maxFiles int) (*Diff, error) {
|
2016-07-30 21:09:58 +05:30
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
2014-04-13 07:05:36 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-07-30 21:09:58 +05:30
|
|
|
commit, err := gitRepo.GetCommit(afterCommitID)
|
2014-04-13 07:05:36 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-05-29 07:45:15 +05:30
|
|
|
var cmd *exec.Cmd
|
2014-08-26 17:50:18 +05:30
|
|
|
// if "after" commit given
|
2015-12-02 11:40:13 +05:30
|
|
|
if len(beforeCommitID) == 0 {
|
2014-08-26 17:50:18 +05:30
|
|
|
// First commit of repository.
|
|
|
|
if commit.ParentCount() == 0 {
|
2015-12-02 11:40:13 +05:30
|
|
|
cmd = exec.Command("git", "show", afterCommitID)
|
2014-08-26 17:50:18 +05:30
|
|
|
} else {
|
|
|
|
c, _ := commit.Parent(0)
|
2015-12-02 11:40:13 +05:30
|
|
|
cmd = exec.Command("git", "diff", "-M", c.ID.String(), afterCommitID)
|
2014-08-26 17:50:18 +05:30
|
|
|
}
|
2014-05-29 07:45:15 +05:30
|
|
|
} else {
|
2015-12-02 11:40:13 +05:30
|
|
|
cmd = exec.Command("git", "diff", "-M", beforeCommitID, afterCommitID)
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
2014-05-29 07:45:15 +05:30
|
|
|
cmd.Dir = repoPath
|
|
|
|
cmd.Stderr = os.Stderr
|
2014-07-07 03:02:36 +05:30
|
|
|
|
2015-12-02 11:40:13 +05:30
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("StdoutPipe: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = cmd.Start(); err != nil {
|
|
|
|
return nil, fmt.Errorf("Start: %v", err)
|
|
|
|
}
|
2014-07-07 03:02:36 +05:30
|
|
|
|
2017-01-17 11:28:58 +05:30
|
|
|
pid := process.GetManager().Add(fmt.Sprintf("GetDiffRange [repo_path: %s]", repoPath), cmd)
|
|
|
|
defer process.GetManager().Remove(pid)
|
2015-12-02 11:40:13 +05:30
|
|
|
|
2017-01-05 06:20:34 +05:30
|
|
|
diff, err := ParsePatch(maxLines, maxLineCharacters, maxFiles, stdout)
|
2015-12-02 11:40:13 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("ParsePatch: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = cmd.Wait(); err != nil {
|
|
|
|
return nil, fmt.Errorf("Wait: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return diff, nil
|
2014-04-13 07:05:36 +05:30
|
|
|
}
|
2014-08-26 17:50:18 +05:30
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// RawDiffType type of a raw diff.
|
2016-07-30 21:09:58 +05:30
|
|
|
type RawDiffType string
|
|
|
|
|
2016-11-22 16:38:23 +05:30
|
|
|
// RawDiffType possible values.
|
2016-07-30 21:09:58 +05:30
|
|
|
const (
|
2016-11-07 21:54:59 +05:30
|
|
|
RawDiffNormal RawDiffType = "diff"
|
|
|
|
RawDiffPatch RawDiffType = "patch"
|
2016-07-30 21:09:58 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// GetRawDiff dumps diff results of repository in given commit ID to io.Writer.
|
|
|
|
// TODO: move this function to gogits/git-module
|
|
|
|
func GetRawDiff(repoPath, commitID string, diffType RawDiffType, writer io.Writer) error {
|
2016-07-30 20:32:22 +05:30
|
|
|
repo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
2016-07-30 21:09:58 +05:30
|
|
|
return fmt.Errorf("OpenRepository: %v", err)
|
2016-07-30 20:32:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
commit, err := repo.GetCommit(commitID)
|
|
|
|
if err != nil {
|
2016-07-30 21:09:58 +05:30
|
|
|
return fmt.Errorf("GetCommit: %v", err)
|
2016-07-30 20:32:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var cmd *exec.Cmd
|
|
|
|
switch diffType {
|
2016-11-07 21:54:59 +05:30
|
|
|
case RawDiffNormal:
|
2016-07-30 20:32:22 +05:30
|
|
|
if commit.ParentCount() == 0 {
|
|
|
|
cmd = exec.Command("git", "show", commitID)
|
|
|
|
} else {
|
|
|
|
c, _ := commit.Parent(0)
|
|
|
|
cmd = exec.Command("git", "diff", "-M", c.ID.String(), commitID)
|
|
|
|
}
|
2016-11-07 21:54:59 +05:30
|
|
|
case RawDiffPatch:
|
2016-07-30 20:32:22 +05:30
|
|
|
if commit.ParentCount() == 0 {
|
|
|
|
cmd = exec.Command("git", "format-patch", "--no-signature", "--stdout", "--root", commitID)
|
|
|
|
} else {
|
|
|
|
c, _ := commit.Parent(0)
|
|
|
|
query := fmt.Sprintf("%s...%s", commitID, c.ID.String())
|
|
|
|
cmd = exec.Command("git", "format-patch", "--no-signature", "--stdout", query)
|
|
|
|
}
|
|
|
|
default:
|
2016-07-30 21:09:58 +05:30
|
|
|
return fmt.Errorf("invalid diffType: %s", diffType)
|
2016-07-30 20:32:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
stderr := new(bytes.Buffer)
|
|
|
|
|
|
|
|
cmd.Dir = repoPath
|
2016-07-30 21:09:58 +05:30
|
|
|
cmd.Stdout = writer
|
2016-07-30 20:32:22 +05:30
|
|
|
cmd.Stderr = stderr
|
|
|
|
|
2016-07-30 21:09:58 +05:30
|
|
|
if err = cmd.Run(); err != nil {
|
|
|
|
return fmt.Errorf("Run: %v - %s", err, stderr)
|
2016-07-30 20:32:22 +05:30
|
|
|
}
|
2016-07-30 21:09:58 +05:30
|
|
|
return nil
|
2016-07-30 20:32:22 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 14:00:08 +05:30
|
|
|
// GetDiffCommit builds a Diff representing the given commitID.
|
2017-01-05 06:20:34 +05:30
|
|
|
func GetDiffCommit(repoPath, commitID string, maxLines, maxLineCharacters, maxFiles int) (*Diff, error) {
|
|
|
|
return GetDiffRange(repoPath, "", commitID, maxLines, maxLineCharacters, maxFiles)
|
2014-08-26 17:50:18 +05:30
|
|
|
}
|