2020-12-17 15:00:47 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. 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 (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (repo *Repository) getTree(id SHA1) (*Tree, error) {
|
2021-11-30 21:06:32 +01:00
|
|
|
wr, rd, cancel := repo.CatFileBatch(repo.Ctx)
|
2021-05-10 03:27:03 +02:00
|
|
|
defer cancel()
|
2020-12-17 15:00:47 +01:00
|
|
|
|
2021-05-10 03:27:03 +02:00
|
|
|
_, _ = wr.Write([]byte(id.String() + "\n"))
|
2020-12-17 15:00:47 +01:00
|
|
|
|
|
|
|
// ignore the SHA
|
2021-05-10 03:27:03 +02:00
|
|
|
_, typ, size, err := ReadBatchLine(rd)
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch typ {
|
|
|
|
case "tag":
|
|
|
|
resolvedID := id
|
2021-09-22 07:38:34 +02:00
|
|
|
data, err := io.ReadAll(io.LimitReader(rd, size))
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tag, err := parseTagData(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-12 21:37:46 +01:00
|
|
|
commit, err := tag.Commit(repo)
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
commit.Tree.ResolvedID = resolvedID
|
|
|
|
return &commit.Tree, nil
|
|
|
|
case "commit":
|
2021-05-10 03:27:03 +02:00
|
|
|
commit, err := CommitFromReader(repo, id, io.LimitReader(rd, size))
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
2021-05-10 03:27:03 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if _, err := rd.Discard(1); err != nil {
|
2020-12-17 15:00:47 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
commit.Tree.ResolvedID = commit.ID
|
|
|
|
return &commit.Tree, nil
|
|
|
|
case "tree":
|
|
|
|
tree := NewTree(repo, id)
|
|
|
|
tree.ResolvedID = id
|
2021-05-10 03:27:03 +02:00
|
|
|
tree.entries, err = catBatchParseTreeEntries(tree, rd, size)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tree.entriesParsed = true
|
2020-12-17 15:00:47 +01:00
|
|
|
return tree, nil
|
|
|
|
default:
|
|
|
|
return nil, ErrNotExist{
|
|
|
|
ID: id.String(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTree find the tree object in the repository.
|
|
|
|
func (repo *Repository) GetTree(idStr string) (*Tree, error) {
|
2022-12-27 14:12:49 +01:00
|
|
|
if len(idStr) != SHAFullLength {
|
2021-05-10 03:27:03 +02:00
|
|
|
res, err := repo.GetRefCommitID(idStr)
|
2020-12-17 15:00:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(res) > 0 {
|
2021-05-10 03:27:03 +02:00
|
|
|
idStr = res
|
2020-12-17 15:00:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
id, err := NewIDFromString(idStr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return repo.getTree(id)
|
|
|
|
}
|