2020-12-17 14:00:47 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2024-01-10 23:20:32 +00:00
|
|
|
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-12-17 14:00:47 +00:00
|
|
|
|
2021-08-24 16:47:09 +00:00
|
|
|
//go:build gogit
|
2020-12-17 14:00:47 +00:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io"
|
2021-11-17 20:37:00 +00:00
|
|
|
"strings"
|
2020-12-17 14:00:47 +00:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/analyze"
|
2024-02-26 11:52:59 +00:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2020-12-17 14:00:47 +00:00
|
|
|
|
|
|
|
"github.com/go-enry/go-enry/v2"
|
|
|
|
"github.com/go-git/go-git/v5"
|
|
|
|
"github.com/go-git/go-git/v5/plumbing"
|
|
|
|
"github.com/go-git/go-git/v5/plumbing/object"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetLanguageStats calculates language stats for git repository at specified commit
|
|
|
|
func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, error) {
|
|
|
|
r, err := git.PlainOpen(repo.Path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rev, err := r.ResolveRevision(plumbing.Revision(commitID))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
commit, err := r.CommitObject(*rev)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
tree, err := commit.Tree()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-06-16 15:47:44 +00:00
|
|
|
checker, deferable := repo.CheckAttributeReader(commitID)
|
|
|
|
defer deferable()
|
2021-09-09 20:13:36 +00:00
|
|
|
|
2022-10-29 07:04:21 +00:00
|
|
|
// sizes contains the current calculated size of all files by language
|
2020-12-17 14:00:47 +00:00
|
|
|
sizes := make(map[string]int64)
|
2022-10-29 07:04:21 +00:00
|
|
|
// by default we will only count the sizes of programming languages or markup languages
|
|
|
|
// unless they are explicitly set using linguist-language
|
|
|
|
includedLanguage := map[string]bool{}
|
|
|
|
// or if there's only one language in the repository
|
|
|
|
firstExcludedLanguage := ""
|
|
|
|
firstExcludedLanguageSize := int64(0)
|
|
|
|
|
2024-02-26 11:52:59 +00:00
|
|
|
isTrue := func(v optional.Option[bool]) bool {
|
|
|
|
return v.ValueOrDefault(false)
|
|
|
|
}
|
|
|
|
isFalse := func(v optional.Option[bool]) bool {
|
|
|
|
return !v.ValueOrDefault(true)
|
|
|
|
}
|
|
|
|
|
2020-12-17 14:00:47 +00:00
|
|
|
err = tree.Files().ForEach(func(f *object.File) error {
|
2021-09-09 20:13:36 +00:00
|
|
|
if f.Size == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-02-26 11:52:59 +00:00
|
|
|
isVendored := optional.None[bool]()
|
|
|
|
isGenerated := optional.None[bool]()
|
|
|
|
isDocumentation := optional.None[bool]()
|
|
|
|
isDetectable := optional.None[bool]()
|
2021-09-09 20:13:36 +00:00
|
|
|
|
|
|
|
if checker != nil {
|
|
|
|
attrs, err := checker.CheckPath(f.Name)
|
|
|
|
if err == nil {
|
2024-02-26 11:52:59 +00:00
|
|
|
isVendored = attributeToBool(attrs, "linguist-vendored")
|
|
|
|
isGenerated = attributeToBool(attrs, "linguist-generated")
|
|
|
|
isDocumentation = attributeToBool(attrs, "linguist-documentation")
|
|
|
|
isDetectable = attributeToBool(attrs, "linguist-detectable")
|
2021-09-09 20:13:36 +00:00
|
|
|
if language, has := attrs["linguist-language"]; has && language != "unspecified" && language != "" {
|
|
|
|
// group languages, such as Pug -> HTML; SCSS -> CSS
|
|
|
|
group := enry.GetLanguageGroup(language)
|
2021-09-20 19:46:51 +00:00
|
|
|
if len(group) != 0 {
|
2021-09-09 20:13:36 +00:00
|
|
|
language = group
|
|
|
|
}
|
|
|
|
|
2022-10-29 07:04:21 +00:00
|
|
|
// this language will always be added to the size
|
2021-09-09 20:13:36 +00:00
|
|
|
sizes[language] += f.Size
|
|
|
|
return nil
|
2021-11-17 20:37:00 +00:00
|
|
|
} else if language, has := attrs["gitlab-language"]; has && language != "unspecified" && language != "" {
|
|
|
|
// strip off a ? if present
|
|
|
|
if idx := strings.IndexByte(language, '?'); idx >= 0 {
|
|
|
|
language = language[:idx]
|
|
|
|
}
|
|
|
|
if len(language) != 0 {
|
|
|
|
// group languages, such as Pug -> HTML; SCSS -> CSS
|
|
|
|
group := enry.GetLanguageGroup(language)
|
|
|
|
if len(group) != 0 {
|
|
|
|
language = group
|
|
|
|
}
|
|
|
|
|
2022-10-29 07:04:21 +00:00
|
|
|
// this language will always be added to the size
|
2021-11-17 20:37:00 +00:00
|
|
|
sizes[language] += f.Size
|
|
|
|
return nil
|
|
|
|
}
|
2021-09-09 20:13:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-26 11:52:59 +00:00
|
|
|
if isFalse(isDetectable) || isTrue(isVendored) || isTrue(isDocumentation) ||
|
|
|
|
(!isFalse(isVendored) && analyze.IsVendor(f.Name)) ||
|
2024-01-10 23:20:32 +00:00
|
|
|
enry.IsDotFile(f.Name) ||
|
|
|
|
enry.IsConfiguration(f.Name) ||
|
2024-02-26 11:52:59 +00:00
|
|
|
(!isFalse(isDocumentation) && enry.IsDocumentation(f.Name)) {
|
2020-12-17 14:00:47 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|
2024-02-26 11:52:59 +00:00
|
|
|
if !isTrue(isGenerated) && enry.IsGenerated(f.Name, content) {
|
2020-12-17 14:00:47 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Use .gitattributes file for linguist overrides
|
|
|
|
language := analyze.GetCodeLanguage(f.Name, content)
|
|
|
|
if language == enry.OtherLanguage || language == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// group languages, such as Pug -> HTML; SCSS -> CSS
|
|
|
|
group := enry.GetLanguageGroup(language)
|
|
|
|
if group != "" {
|
|
|
|
language = group
|
|
|
|
}
|
|
|
|
|
2022-10-29 07:04:21 +00:00
|
|
|
included, checked := includedLanguage[language]
|
2024-02-26 13:04:09 +00:00
|
|
|
langType := enry.GetLanguageType(language)
|
2022-10-29 07:04:21 +00:00
|
|
|
if !checked {
|
2024-02-26 13:04:09 +00:00
|
|
|
included = langType == enry.Programming || langType == enry.Markup
|
|
|
|
if !included && (isTrue(isDetectable) || (langType == enry.Prose && isFalse(isDocumentation))) {
|
|
|
|
included = true
|
2024-01-10 23:20:32 +00:00
|
|
|
}
|
2022-10-29 07:04:21 +00:00
|
|
|
includedLanguage[language] = included
|
|
|
|
}
|
|
|
|
if included {
|
|
|
|
sizes[language] += f.Size
|
|
|
|
} else if len(sizes) == 0 && (firstExcludedLanguage == "" || firstExcludedLanguage == language) {
|
2024-02-26 13:04:09 +00:00
|
|
|
// Only consider Programming or Markup languages as fallback
|
|
|
|
if !(langType == enry.Programming || langType == enry.Markup) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-10-29 07:04:21 +00:00
|
|
|
firstExcludedLanguage = language
|
|
|
|
firstExcludedLanguageSize += f.Size
|
|
|
|
}
|
2020-12-17 14:00:47 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-10-29 07:04:21 +00:00
|
|
|
// If there are no included languages add the first excluded language
|
|
|
|
if len(sizes) == 0 && firstExcludedLanguage != "" {
|
|
|
|
sizes[firstExcludedLanguage] = firstExcludedLanguageSize
|
2020-12-17 14:00:47 +00:00
|
|
|
}
|
|
|
|
|
2023-05-24 19:37:36 +00:00
|
|
|
return mergeLanguageStats(sizes), nil
|
2020-12-17 14:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func readFile(f *object.File, limit int64) ([]byte, error) {
|
|
|
|
r, err := f.Reader()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer r.Close()
|
|
|
|
|
|
|
|
if limit <= 0 {
|
2021-09-22 05:38:34 +00:00
|
|
|
return io.ReadAll(r)
|
2020-12-17 14:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
size := f.Size
|
|
|
|
if limit > 0 && size > limit {
|
|
|
|
size = limit
|
|
|
|
}
|
|
|
|
buf := bytes.NewBuffer(nil)
|
|
|
|
buf.Grow(int(size))
|
|
|
|
_, err = io.Copy(buf, io.LimitReader(r, limit))
|
|
|
|
return buf.Bytes(), err
|
|
|
|
}
|