1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
//go:build linux && cgo && !agent
package operations
import (
"context"
"fmt"
"github.com/lxc/incus/v6/internal/server/db"
"github.com/lxc/incus/v6/internal/server/db/cluster"
"github.com/lxc/incus/v6/internal/server/db/operationtype"
"github.com/lxc/incus/v6/shared/api"
)
func registerDBOperation(op *Operation, opType operationtype.Type) error {
if op.state == nil {
return nil
}
err := op.state.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
opInfo := cluster.Operation{
UUID: op.id,
Type: opType,
NodeID: tx.GetNodeID(),
}
if op.projectName != "" {
projectID, err := cluster.GetProjectID(ctx, tx.Tx(), op.projectName)
if err != nil {
return fmt.Errorf("Fetch project ID: %w", err)
}
opInfo.ProjectID = &projectID
}
_, err := cluster.CreateOrReplaceOperation(ctx, tx.Tx(), opInfo)
return err
})
if err != nil {
return fmt.Errorf("failed to add %q Operation %s to database: %w", opType.Description(), op.id, err)
}
return nil
}
func removeDBOperation(op *Operation) error {
if op.state == nil {
return nil
}
err := op.state.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
return cluster.DeleteOperation(ctx, tx.Tx(), op.id)
})
return err
}
func (op *Operation) sendEvent(eventMessage any) {
if op.events == nil {
return
}
_ = op.events.Send(op.projectName, api.EventTypeOperation, eventMessage)
}
|