2020-12-17 15:00:47 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2024-01-11 00:20:32 +01:00
|
|
|
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-12-17 15:00:47 +01:00
|
|
|
|
2021-08-24 18:47:09 +02:00
|
|
|
//go:build !gogit
|
2020-12-17 15:00:47 +01:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2024-03-24 12:44:30 +01:00
|
|
|
"cmp"
|
2020-12-17 15:00:47 +01:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/analyze"
|
2021-06-25 18:54:08 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-02-26 12:52:59 +01:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2020-12-17 15:00:47 +01:00
|
|
|
|
|
|
|
"github.com/go-enry/go-enry/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetLanguageStats calculates language stats for git repository at specified commit
|
|
|
|
func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, error) {
|
2021-02-17 20:32:47 +01:00
|
|
|
// We will feed the commit IDs in order into cat-file --batch, followed by blobs as necessary.
|
|
|
|
// so let's create a batch stdin and stdout
|
2021-11-30 21:06:32 +01:00
|
|
|
batchStdinWriter, batchReader, cancel := repo.CatFileBatch(repo.Ctx)
|
2021-03-04 03:57:01 +01:00
|
|
|
defer cancel()
|
2021-02-17 20:32:47 +01:00
|
|
|
|
|
|
|
writeID := func(id string) error {
|
2021-06-17 00:16:47 +02:00
|
|
|
_, err := batchStdinWriter.Write([]byte(id + "\n"))
|
2021-02-17 20:32:47 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := writeID(commitID); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
shaBytes, typ, size, err := ReadBatchLine(batchReader)
|
|
|
|
if typ != "commit" {
|
2021-06-25 18:54:08 +02:00
|
|
|
log.Debug("Unable to get commit for: %s. Err: %v", commitID, err)
|
2021-02-17 20:32:47 +01:00
|
|
|
return nil, ErrNotExist{commitID, ""}
|
|
|
|
}
|
|
|
|
|
2023-12-19 08:20:47 +01:00
|
|
|
sha, err := NewIDFromString(string(shaBytes))
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
2021-06-25 18:54:08 +02:00
|
|
|
log.Debug("Unable to get commit for: %s. Err: %v", commitID, err)
|
2021-02-17 20:32:47 +01:00
|
|
|
return nil, ErrNotExist{commitID, ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
commit, err := CommitFromReader(repo, sha, io.LimitReader(batchReader, size))
|
|
|
|
if err != nil {
|
2021-06-25 18:54:08 +02:00
|
|
|
log.Debug("Unable to get commit for: %s. Err: %v", commitID, err)
|
2020-12-17 15:00:47 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-06-21 00:00:46 +02:00
|
|
|
if _, err = batchReader.Discard(1); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-17 15:00:47 +01:00
|
|
|
|
|
|
|
tree := commit.Tree
|
|
|
|
|
2022-10-07 19:20:53 +02:00
|
|
|
entries, err := tree.ListEntriesRecursiveWithSize()
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-24 12:44:30 +01:00
|
|
|
checker, err := repo.GitAttributeChecker(commitID, LinguistAttributes...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer checker.Close()
|
2021-09-09 22:13:36 +02:00
|
|
|
|
2021-02-17 20:32:47 +01:00
|
|
|
contentBuf := bytes.Buffer{}
|
|
|
|
var content []byte
|
2022-10-29 09:04:21 +02:00
|
|
|
|
|
|
|
// sizes contains the current calculated size of all files by language
|
2020-12-17 15:00:47 +01:00
|
|
|
sizes := make(map[string]int64)
|
2022-10-29 09:04:21 +02: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 12:52:59 +01: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 15:00:47 +01:00
|
|
|
for _, f := range entries {
|
2021-11-30 21:06:32 +01:00
|
|
|
select {
|
|
|
|
case <-repo.Ctx.Done():
|
|
|
|
return sizes, repo.Ctx.Err()
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2021-02-17 20:32:47 +01:00
|
|
|
contentBuf.Reset()
|
|
|
|
content = contentBuf.Bytes()
|
2021-09-09 22:13:36 +02:00
|
|
|
|
|
|
|
if f.Size() == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-02-26 12:52:59 +01:00
|
|
|
isVendored := optional.None[bool]()
|
|
|
|
isGenerated := optional.None[bool]()
|
|
|
|
isDocumentation := optional.None[bool]()
|
|
|
|
isDetectable := optional.None[bool]()
|
2021-09-09 22:13:36 +02:00
|
|
|
|
2024-03-24 12:44:30 +01:00
|
|
|
attrs, err := checker.CheckPath(f.Name())
|
|
|
|
if err == nil {
|
|
|
|
isVendored = attrs["linguist-vendored"].Bool()
|
|
|
|
isGenerated = attrs["linguist-generated"].Bool()
|
|
|
|
isDocumentation = attrs["linguist-documentation"].Bool()
|
|
|
|
isDetectable = attrs["linguist-detectable"].Bool()
|
|
|
|
if language := cmp.Or(
|
|
|
|
attrs["linguist-language"].String(),
|
|
|
|
attrs["gitlab-language"].Prefix(),
|
|
|
|
); language != "" {
|
|
|
|
// group languages, such as Pug -> HTML; SCSS -> CSS
|
|
|
|
group := enry.GetLanguageGroup(language)
|
|
|
|
if len(group) != 0 {
|
|
|
|
language = group
|
2021-09-09 22:13:36 +02:00
|
|
|
}
|
2021-11-17 21:37:00 +01:00
|
|
|
|
2024-03-24 12:44:30 +01:00
|
|
|
// this language will always be added to the size
|
|
|
|
sizes[language] += f.Size()
|
|
|
|
continue
|
2021-09-09 22:13:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-26 12:52:59 +01:00
|
|
|
if isFalse(isDetectable) || isTrue(isVendored) || isTrue(isDocumentation) ||
|
|
|
|
(!isFalse(isVendored) && analyze.IsVendor(f.Name())) ||
|
2024-01-11 00:20:32 +01:00
|
|
|
enry.IsDotFile(f.Name()) ||
|
|
|
|
enry.IsConfiguration(f.Name()) ||
|
2024-02-26 12:52:59 +01:00
|
|
|
(!isFalse(isDocumentation) && enry.IsDocumentation(f.Name())) {
|
2020-12-17 15:00:47 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// If content can not be read or file is too big just do detection by filename
|
2021-02-17 20:32:47 +01:00
|
|
|
|
2020-12-17 15:00:47 +01:00
|
|
|
if f.Size() <= bigFileSize {
|
2021-02-17 20:32:47 +01:00
|
|
|
if err := writeID(f.ID.String()); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
_, _, size, err := ReadBatchLine(batchReader)
|
|
|
|
if err != nil {
|
2021-06-25 18:54:08 +02:00
|
|
|
log.Debug("Error reading blob: %s Err: %v", f.ID.String(), err)
|
2021-02-17 20:32:47 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
sizeToRead := size
|
2021-06-17 00:16:47 +02:00
|
|
|
discard := int64(1)
|
2021-02-17 20:32:47 +01:00
|
|
|
if size > fileSizeLimit {
|
|
|
|
sizeToRead = fileSizeLimit
|
2021-06-17 00:16:47 +02:00
|
|
|
discard = size - fileSizeLimit + 1
|
2021-02-17 20:32:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = contentBuf.ReadFrom(io.LimitReader(batchReader, sizeToRead))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
content = contentBuf.Bytes()
|
2024-02-22 04:48:19 +01:00
|
|
|
if err := DiscardFull(batchReader, discard); err != nil {
|
2021-02-17 20:32:47 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-17 15:00:47 +01:00
|
|
|
}
|
2024-02-26 12:52:59 +01:00
|
|
|
if !isTrue(isGenerated) && enry.IsGenerated(f.Name(), content) {
|
2020-12-17 15:00:47 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Why can't we split this and the IsGenerated tests to avoid reading the blob unless absolutely necessary?
|
|
|
|
// - eg. do the all the detection tests using filename first before reading content.
|
|
|
|
language := analyze.GetCodeLanguage(f.Name(), content)
|
2023-05-24 21:37:36 +02:00
|
|
|
if language == "" {
|
2020-12-17 15:00:47 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// group languages, such as Pug -> HTML; SCSS -> CSS
|
|
|
|
group := enry.GetLanguageGroup(language)
|
|
|
|
if group != "" {
|
|
|
|
language = group
|
|
|
|
}
|
|
|
|
|
2022-10-29 09:04:21 +02:00
|
|
|
included, checked := includedLanguage[language]
|
2024-02-26 14:04:09 +01:00
|
|
|
langType := enry.GetLanguageType(language)
|
2022-10-29 09:04:21 +02:00
|
|
|
if !checked {
|
2023-05-24 21:37:36 +02:00
|
|
|
included = langType == enry.Programming || langType == enry.Markup
|
2024-02-26 14:04:09 +01:00
|
|
|
if !included && (isTrue(isDetectable) || (langType == enry.Prose && isFalse(isDocumentation))) {
|
|
|
|
included = true
|
2024-01-11 00:20:32 +01:00
|
|
|
}
|
2022-10-29 09:04:21 +02:00
|
|
|
includedLanguage[language] = included
|
|
|
|
}
|
|
|
|
if included {
|
|
|
|
sizes[language] += f.Size()
|
|
|
|
} else if len(sizes) == 0 && (firstExcludedLanguage == "" || firstExcludedLanguage == language) {
|
2024-02-26 14:04:09 +01:00
|
|
|
// Only consider Programming or Markup languages as fallback
|
|
|
|
if !(langType == enry.Programming || langType == enry.Markup) {
|
|
|
|
continue
|
|
|
|
}
|
2022-10-29 09:04:21 +02:00
|
|
|
firstExcludedLanguage = language
|
|
|
|
firstExcludedLanguageSize += f.Size()
|
|
|
|
}
|
2020-12-17 15:00:47 +01:00
|
|
|
}
|
|
|
|
|
2022-10-29 09:04:21 +02:00
|
|
|
// If there are no included languages add the first excluded language
|
|
|
|
if len(sizes) == 0 && firstExcludedLanguage != "" {
|
|
|
|
sizes[firstExcludedLanguage] = firstExcludedLanguageSize
|
2020-12-17 15:00:47 +01:00
|
|
|
}
|
|
|
|
|
2023-05-24 21:37:36 +02:00
|
|
|
return mergeLanguageStats(sizes), nil
|
2020-12-17 15:00:47 +01:00
|
|
|
}
|