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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
//go:build linux && cgo && !agent
// Code generated by generate-database from the incus project - DO NOT EDIT.
package cluster
import (
"context"
"database/sql"
"errors"
"fmt"
"strings"
)
var operationObjects = RegisterStmt(`
SELECT operations.id, operations.uuid, nodes.address AS node_address, operations.project_id, operations.node_id, operations.type
FROM operations
JOIN nodes ON operations.node_id = nodes.id
ORDER BY operations.id, operations.uuid
`)
var operationObjectsByNodeID = RegisterStmt(`
SELECT operations.id, operations.uuid, nodes.address AS node_address, operations.project_id, operations.node_id, operations.type
FROM operations
JOIN nodes ON operations.node_id = nodes.id
WHERE ( operations.node_id = ? )
ORDER BY operations.id, operations.uuid
`)
var operationObjectsByID = RegisterStmt(`
SELECT operations.id, operations.uuid, nodes.address AS node_address, operations.project_id, operations.node_id, operations.type
FROM operations
JOIN nodes ON operations.node_id = nodes.id
WHERE ( operations.id = ? )
ORDER BY operations.id, operations.uuid
`)
var operationObjectsByUUID = RegisterStmt(`
SELECT operations.id, operations.uuid, nodes.address AS node_address, operations.project_id, operations.node_id, operations.type
FROM operations
JOIN nodes ON operations.node_id = nodes.id
WHERE ( operations.uuid = ? )
ORDER BY operations.id, operations.uuid
`)
var operationCreateOrReplace = RegisterStmt(`
INSERT OR REPLACE INTO operations (uuid, project_id, node_id, type)
VALUES (?, ?, ?, ?)
`)
var operationDeleteByUUID = RegisterStmt(`
DELETE FROM operations WHERE uuid = ?
`)
var operationDeleteByNodeID = RegisterStmt(`
DELETE FROM operations WHERE node_id = ?
`)
// operationColumns returns a string of column names to be used with a SELECT statement for the entity.
// Use this function when building statements to retrieve database entries matching the Operation entity.
func operationColumns() string {
return "operations.id, operations.uuid, nodes.address AS node_address, operations.project_id, operations.node_id, operations.type"
}
// getOperations can be used to run handwritten sql.Stmts to return a slice of objects.
func getOperations(ctx context.Context, stmt *sql.Stmt, args ...any) ([]Operation, error) {
objects := make([]Operation, 0)
dest := func(scan func(dest ...any) error) error {
o := Operation{}
err := scan(&o.ID, &o.UUID, &o.NodeAddress, &o.ProjectID, &o.NodeID, &o.Type)
if err != nil {
return err
}
objects = append(objects, o)
return nil
}
err := selectObjects(ctx, stmt, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"operations\" table: %w", err)
}
return objects, nil
}
// getOperationsRaw can be used to run handwritten query strings to return a slice of objects.
func getOperationsRaw(ctx context.Context, db dbtx, sql string, args ...any) ([]Operation, error) {
objects := make([]Operation, 0)
dest := func(scan func(dest ...any) error) error {
o := Operation{}
err := scan(&o.ID, &o.UUID, &o.NodeAddress, &o.ProjectID, &o.NodeID, &o.Type)
if err != nil {
return err
}
objects = append(objects, o)
return nil
}
err := scan(ctx, db, sql, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"operations\" table: %w", err)
}
return objects, nil
}
// GetOperations returns all available operations.
// generator: operation GetMany
func GetOperations(ctx context.Context, db dbtx, filters ...OperationFilter) (_ []Operation, _err error) {
defer func() {
_err = mapErr(_err, "Operation")
}()
var err error
// Result slice.
objects := make([]Operation, 0)
// Pick the prepared statement and arguments to use based on active criteria.
var sqlStmt *sql.Stmt
args := []any{}
queryParts := [2]string{}
if len(filters) == 0 {
sqlStmt, err = Stmt(db, operationObjects)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjects\" prepared statement: %w", err)
}
}
for i, filter := range filters {
if filter.UUID != nil && filter.ID == nil && filter.NodeID == nil {
args = append(args, []any{filter.UUID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, operationObjectsByUUID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjectsByUUID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(operationObjectsByUUID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjects\" prepared statement: %w", err)
}
parts := strings.SplitN(query, "ORDER BY", 2)
if i == 0 {
copy(queryParts[:], parts)
continue
}
_, where, _ := strings.Cut(parts[0], "WHERE")
queryParts[0] += "OR" + where
} else if filter.NodeID != nil && filter.ID == nil && filter.UUID == nil {
args = append(args, []any{filter.NodeID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, operationObjectsByNodeID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjectsByNodeID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(operationObjectsByNodeID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjects\" prepared statement: %w", err)
}
parts := strings.SplitN(query, "ORDER BY", 2)
if i == 0 {
copy(queryParts[:], parts)
continue
}
_, where, _ := strings.Cut(parts[0], "WHERE")
queryParts[0] += "OR" + where
} else if filter.ID != nil && filter.NodeID == nil && filter.UUID == nil {
args = append(args, []any{filter.ID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, operationObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjectsByID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(operationObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"operationObjects\" prepared statement: %w", err)
}
parts := strings.SplitN(query, "ORDER BY", 2)
if i == 0 {
copy(queryParts[:], parts)
continue
}
_, where, _ := strings.Cut(parts[0], "WHERE")
queryParts[0] += "OR" + where
} else if filter.ID == nil && filter.NodeID == nil && filter.UUID == nil {
return nil, fmt.Errorf("Cannot filter on empty OperationFilter")
} else {
return nil, errors.New("No statement exists for the given Filter")
}
}
// Select.
if sqlStmt != nil {
objects, err = getOperations(ctx, sqlStmt, args...)
} else {
queryStr := strings.Join(queryParts[:], "ORDER BY")
objects, err = getOperationsRaw(ctx, db, queryStr, args...)
}
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"operations\" table: %w", err)
}
return objects, nil
}
// CreateOrReplaceOperation adds a new operation to the database.
// generator: operation CreateOrReplace
func CreateOrReplaceOperation(ctx context.Context, db dbtx, object Operation) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Operation")
}()
args := make([]any, 4)
// Populate the statement arguments.
args[0] = object.UUID
args[1] = object.ProjectID
args[2] = object.NodeID
args[3] = object.Type
// Prepared statement to use.
stmt, err := Stmt(db, operationCreateOrReplace)
if err != nil {
return -1, fmt.Errorf("Failed to get \"operationCreateOrReplace\" prepared statement: %w", err)
}
// Execute the statement.
result, err := stmt.Exec(args...)
if err != nil && strings.HasPrefix(err.Error(), "UNIQUE constraint failed:") {
return -1, ErrConflict
}
if err != nil {
return -1, fmt.Errorf("Failed to create \"operations\" entry: %w", err)
}
id, err := result.LastInsertId()
if err != nil {
return -1, fmt.Errorf("Failed to fetch \"operations\" entry ID: %w", err)
}
return id, nil
}
// DeleteOperation deletes the operation matching the given key parameters.
// generator: operation DeleteOne-by-UUID
func DeleteOperation(ctx context.Context, db dbtx, uuid string) (_err error) {
defer func() {
_err = mapErr(_err, "Operation")
}()
stmt, err := Stmt(db, operationDeleteByUUID)
if err != nil {
return fmt.Errorf("Failed to get \"operationDeleteByUUID\" prepared statement: %w", err)
}
result, err := stmt.Exec(uuid)
if err != nil {
return fmt.Errorf("Delete \"operations\": %w", err)
}
n, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows: %w", err)
}
if n == 0 {
return ErrNotFound
} else if n > 1 {
return fmt.Errorf("Query deleted %d Operation rows instead of 1", n)
}
return nil
}
// DeleteOperations deletes the operation matching the given key parameters.
// generator: operation DeleteMany-by-NodeID
func DeleteOperations(ctx context.Context, db dbtx, nodeID int64) (_err error) {
defer func() {
_err = mapErr(_err, "Operation")
}()
stmt, err := Stmt(db, operationDeleteByNodeID)
if err != nil {
return fmt.Errorf("Failed to get \"operationDeleteByNodeID\" prepared statement: %w", err)
}
result, err := stmt.Exec(nodeID)
if err != nil {
return fmt.Errorf("Delete \"operations\": %w", err)
}
_, err = result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows: %w", err)
}
return nil
}
|