Files
wehub-resource-sync 5357c39144
Fuzzer / Run Fuzzer (push) Has been cancelled
Race tests / Go race tests (ubuntu-22.04) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:01:40 +08:00

152 lines
3.7 KiB
Go

// Copyright 2023 Dolthub, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package doltdb
import (
"context"
"errors"
"fmt"
"github.com/dolthub/dolt/go/store/datas"
"github.com/dolthub/dolt/go/store/hash"
"github.com/dolthub/dolt/go/store/prolly/tree"
"github.com/dolthub/dolt/go/store/types"
)
type Stash struct {
Name string
BranchReference string
Description string
CommitHash string
StashReference string
}
const (
DoltCliRef = "dolt-cli"
)
// getStashList returns array of Stash objects containing all stash entries in the stash list map.
func getStashList(ctx context.Context, ds datas.Dataset, vrw types.ValueReadWriter, ns tree.NodeStore, reference string) ([]*Stash, error) {
v, ok := ds.MaybeHead()
if !ok {
return nil, errors.New("stashes not found")
}
stashHashes, err := datas.GetHashListFromStashList(ctx, ns, v)
if err != nil {
return nil, err
}
var sl = make([]*Stash, len(stashHashes))
for i, stashHash := range stashHashes {
var s Stash
s.Name = fmt.Sprintf("stash@{%v}", i)
stashVal, err := vrw.MustReadValue(ctx, stashHash)
if err != nil {
return nil, err
}
_, headCommitAddr, meta, err := datas.GetStashData(stashVal)
if err != nil {
return nil, err
}
hc, err := datas.LoadCommitAddr(ctx, vrw, headCommitAddr)
if err != nil {
return nil, err
}
if hc.IsGhost() {
return nil, ErrGhostCommitEncountered
}
headCommit, err := NewCommit(ctx, vrw, ns, hc)
if err != nil {
return nil, err
}
headCommitHash, err := headCommit.HashOf()
if err != nil {
return nil, err
}
s.CommitHash = headCommitHash.String()
s.BranchReference = meta.BranchName
s.Description = meta.Description
s.StashReference = reference
sl[i] = &s
}
return sl, nil
}
// getStashHashAtIdx returns hash address only of the stash at given index.
func getStashHashAtIdx(ctx context.Context, ds datas.Dataset, ns tree.NodeStore, idx int) (hash.Hash, error) {
v, ok := ds.MaybeHead()
if !ok {
return hash.Hash{}, errors.New("stashes not found")
}
return datas.GetStashAtIdx(ctx, ns, v, idx)
}
// getStashAtIdx returns stash root value and head commit of a stash entry at given index.
func getStashAtIdx(ctx context.Context, ds datas.Dataset, vrw types.ValueReadWriter, ns tree.NodeStore, idx int) (RootValue, *Commit, *datas.StashMeta, error) {
v, ok := ds.MaybeHead()
if !ok {
return nil, nil, nil, errors.New("stashes not found")
}
stashHash, err := datas.GetStashAtIdx(ctx, ns, v, idx)
if err != nil {
return nil, nil, nil, err
}
stashVal, err := vrw.MustReadValue(ctx, stashHash)
if err != nil {
return nil, nil, nil, err
}
stashRootAddr, headCommitAddr, meta, err := datas.GetStashData(stashVal)
if err != nil {
return nil, nil, nil, err
}
hc, err := datas.LoadCommitAddr(ctx, vrw, headCommitAddr)
if err != nil {
return nil, nil, nil, err
}
if hc.IsGhost() {
return nil, nil, nil, ErrGhostCommitEncountered
}
headCommit, err := NewCommit(ctx, vrw, ns, hc)
if err != nil {
return nil, nil, nil, err
}
stashRootVal, err := vrw.MustReadValue(ctx, stashRootAddr)
if err != nil {
return nil, nil, nil, err
}
stashRoot, err := NewRootValue(ctx, vrw, ns, stashRootVal)
if err != nil {
return nil, nil, nil, err
}
return stashRoot, headCommit, meta, nil
}