浏览代码

For language detection do not try to analyze big files by content (#11971) (#11975)

tags/v1.12.1
Lauris BH 3 年前
父节点
当前提交
3e8618a543
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 7 次插入3 次删除
  1. 7
    3
      modules/git/repo_language_stats.go

+ 7
- 3
modules/git/repo_language_stats.go 查看文件

@@ -17,7 +17,8 @@ import (
"github.com/go-git/go-git/v5/plumbing/object"
)

const fileSizeLimit int64 = 16 * 1024 * 1024
const fileSizeLimit int64 = 16 * 1024 // 16 KiB
const bigFileSize int64 = 1024 * 1024 // 1 MiB

// specialLanguages defines list of languages that are excluded from the calculation
// unless they are the only language present in repository. Only languages which under
@@ -62,8 +63,11 @@ func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, err
return nil
}

// If content can not be read just do detection by filename
content, _ := readFile(f, fileSizeLimit)
// If content can not be read or file is too big just do detection by filename
var content []byte
if f.Size <= bigFileSize {
content, _ = readFile(f, fileSizeLimit)
}
if enry.IsGenerated(f.Name, content) {
return nil
}

正在加载...
取消
保存