mirror of
https://github.com/dolthub/dolt.git
synced 2026-03-15 11:20:37 -05:00
Separate it into Database.BuildNewCommit and Databse.WriteCommit. This allows the inspection of the resulting Commit struct before any changes are made.
138 lines
4.1 KiB
Go
138 lines
4.1 KiB
Go
// Copyright 2022 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"
|
|
"io"
|
|
|
|
"github.com/dolthub/dolt/go/store/datas"
|
|
"github.com/dolthub/dolt/go/store/hash"
|
|
"github.com/dolthub/dolt/go/store/types"
|
|
)
|
|
|
|
type hooksDatabase struct {
|
|
datas.Database
|
|
postCommitHooks []CommitHook
|
|
}
|
|
|
|
// CommitHook is an abstraction for executing arbitrary commands after atomic database commits
|
|
type CommitHook interface {
|
|
// Execute is arbitrary read-only function whose arguments are new Dataset commit into a specific Database
|
|
Execute(ctx context.Context, ds datas.Dataset, db datas.Database) error
|
|
// HandleError is an bridge function to handle Execute errors
|
|
HandleError(ctx context.Context, err error) error
|
|
// SetLogger lets clients specify an output stream for HandleError
|
|
SetLogger(ctx context.Context, wr io.Writer) error
|
|
|
|
ExecuteForWorkingSets() bool
|
|
}
|
|
|
|
func (db hooksDatabase) SetCommitHooks(ctx context.Context, postHooks []CommitHook) hooksDatabase {
|
|
db.postCommitHooks = postHooks
|
|
return db
|
|
}
|
|
|
|
func (db hooksDatabase) SetCommitHookLogger(ctx context.Context, wr io.Writer) hooksDatabase {
|
|
for _, h := range db.postCommitHooks {
|
|
h.SetLogger(ctx, wr)
|
|
}
|
|
return db
|
|
}
|
|
|
|
func (db hooksDatabase) PostCommitHooks() []CommitHook {
|
|
return db.postCommitHooks
|
|
}
|
|
|
|
func (db hooksDatabase) ExecuteCommitHooks(ctx context.Context, ds datas.Dataset, onlyWS bool) {
|
|
var err error
|
|
for _, hook := range db.postCommitHooks {
|
|
if !onlyWS || hook.ExecuteForWorkingSets() {
|
|
err = hook.Execute(ctx, ds, db)
|
|
if err != nil {
|
|
hook.HandleError(ctx, err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (db hooksDatabase) CommitWithWorkingSet(
|
|
ctx context.Context,
|
|
commitDS, workingSetDS datas.Dataset,
|
|
val types.Value, workingSetSpec datas.WorkingSetSpec,
|
|
prevWsHash hash.Hash, opts datas.CommitOptions,
|
|
) (datas.Dataset, datas.Dataset, error) {
|
|
commitDS, workingSetDS, err := db.Database.CommitWithWorkingSet(
|
|
ctx,
|
|
commitDS,
|
|
workingSetDS,
|
|
val,
|
|
workingSetSpec,
|
|
prevWsHash,
|
|
opts)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, commitDS, false)
|
|
}
|
|
return commitDS, workingSetDS, err
|
|
}
|
|
|
|
func (db hooksDatabase) Commit(ctx context.Context, ds datas.Dataset, v types.Value, opts datas.CommitOptions) (datas.Dataset, error) {
|
|
ds, err := db.Database.Commit(ctx, ds, v, opts)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, ds, false)
|
|
}
|
|
return ds, err
|
|
}
|
|
|
|
func (db hooksDatabase) WriteCommit(ctx context.Context, ds datas.Dataset, commit *datas.Commit) (datas.Dataset, error) {
|
|
ds, err := db.Database.WriteCommit(ctx, ds, commit)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, ds, false)
|
|
}
|
|
return ds, err
|
|
}
|
|
|
|
func (db hooksDatabase) SetHead(ctx context.Context, ds datas.Dataset, newHeadAddr hash.Hash) (datas.Dataset, error) {
|
|
ds, err := db.Database.SetHead(ctx, ds, newHeadAddr)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, ds, false)
|
|
}
|
|
return ds, err
|
|
}
|
|
|
|
func (db hooksDatabase) FastForward(ctx context.Context, ds datas.Dataset, newHeadAddr hash.Hash) (datas.Dataset, error) {
|
|
ds, err := db.Database.FastForward(ctx, ds, newHeadAddr)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, ds, false)
|
|
}
|
|
return ds, err
|
|
}
|
|
|
|
func (db hooksDatabase) Delete(ctx context.Context, ds datas.Dataset) (datas.Dataset, error) {
|
|
ds, err := db.Database.Delete(ctx, ds)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, datas.NewHeadlessDataset(ds.Database(), ds.ID()), false)
|
|
}
|
|
return ds, err
|
|
}
|
|
|
|
func (db hooksDatabase) UpdateWorkingSet(ctx context.Context, ds datas.Dataset, workingSet datas.WorkingSetSpec, prevHash hash.Hash) (datas.Dataset, error) {
|
|
ds, err := db.Database.UpdateWorkingSet(ctx, ds, workingSet, prevHash)
|
|
if err == nil {
|
|
db.ExecuteCommitHooks(ctx, ds, true)
|
|
}
|
|
return ds, err
|
|
}
|