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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
//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 instanceSnapshotObjects = RegisterStmt(`
SELECT instances_snapshots.id, projects.name AS project, instances.name AS instance, instances_snapshots.name, instances_snapshots.creation_date, instances_snapshots.stateful, coalesce(instances_snapshots.description, ''), instances_snapshots.expiry_date
FROM instances_snapshots
JOIN projects ON instances.project_id = projects.id
JOIN instances ON instances_snapshots.instance_id = instances.id
ORDER BY projects.id, instances.id, instances_snapshots.name
`)
var instanceSnapshotObjectsByID = RegisterStmt(`
SELECT instances_snapshots.id, projects.name AS project, instances.name AS instance, instances_snapshots.name, instances_snapshots.creation_date, instances_snapshots.stateful, coalesce(instances_snapshots.description, ''), instances_snapshots.expiry_date
FROM instances_snapshots
JOIN projects ON instances.project_id = projects.id
JOIN instances ON instances_snapshots.instance_id = instances.id
WHERE ( instances_snapshots.id = ? )
ORDER BY projects.id, instances.id, instances_snapshots.name
`)
var instanceSnapshotObjectsByProjectAndInstance = RegisterStmt(`
SELECT instances_snapshots.id, projects.name AS project, instances.name AS instance, instances_snapshots.name, instances_snapshots.creation_date, instances_snapshots.stateful, coalesce(instances_snapshots.description, ''), instances_snapshots.expiry_date
FROM instances_snapshots
JOIN projects ON instances.project_id = projects.id
JOIN instances ON instances_snapshots.instance_id = instances.id
WHERE ( project = ? AND instance = ? )
ORDER BY projects.id, instances.id, instances_snapshots.name
`)
var instanceSnapshotObjectsByProjectAndInstanceAndName = RegisterStmt(`
SELECT instances_snapshots.id, projects.name AS project, instances.name AS instance, instances_snapshots.name, instances_snapshots.creation_date, instances_snapshots.stateful, coalesce(instances_snapshots.description, ''), instances_snapshots.expiry_date
FROM instances_snapshots
JOIN projects ON instances.project_id = projects.id
JOIN instances ON instances_snapshots.instance_id = instances.id
WHERE ( project = ? AND instance = ? AND instances_snapshots.name = ? )
ORDER BY projects.id, instances.id, instances_snapshots.name
`)
var instanceSnapshotID = RegisterStmt(`
SELECT instances_snapshots.id FROM instances_snapshots
JOIN projects ON instances.project_id = projects.id
JOIN instances ON instances_snapshots.instance_id = instances.id
WHERE projects.name = ? AND instances.name = ? AND instances_snapshots.name = ?
`)
var instanceSnapshotCreate = RegisterStmt(`
INSERT INTO instances_snapshots (instance_id, name, creation_date, stateful, description, expiry_date)
VALUES ((SELECT instances.id FROM instances JOIN projects ON instances.project_id = projects.id WHERE projects.name = ? AND instances.name = ?), ?, ?, ?, ?, ?)
`)
var instanceSnapshotRename = RegisterStmt(`
UPDATE instances_snapshots SET name = ? WHERE instance_id = (SELECT instances.id FROM instances JOIN projects ON instances.project_id = projects.id WHERE projects.name = ? AND instances.name = ?) AND name = ?
`)
var instanceSnapshotDeleteByProjectAndInstanceAndName = RegisterStmt(`
DELETE FROM instances_snapshots WHERE instance_id = (SELECT instances.id FROM instances JOIN projects ON instances.project_id = projects.id WHERE projects.name = ? AND instances.name = ?) AND name = ?
`)
// instanceSnapshotColumns 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 InstanceSnapshot entity.
func instanceSnapshotColumns() string {
return "instances_snapshots.id, projects.name AS project, instances.name AS instance, instances_snapshots.name, instances_snapshots.creation_date, instances_snapshots.stateful, coalesce(instances_snapshots.description, ''), instances_snapshots.expiry_date"
}
// getInstanceSnapshots can be used to run handwritten sql.Stmts to return a slice of objects.
func getInstanceSnapshots(ctx context.Context, stmt *sql.Stmt, args ...any) ([]InstanceSnapshot, error) {
objects := make([]InstanceSnapshot, 0)
dest := func(scan func(dest ...any) error) error {
i := InstanceSnapshot{}
err := scan(&i.ID, &i.Project, &i.Instance, &i.Name, &i.CreationDate, &i.Stateful, &i.Description, &i.ExpiryDate)
if err != nil {
return err
}
objects = append(objects, i)
return nil
}
err := selectObjects(ctx, stmt, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"instances_snapshots\" table: %w", err)
}
return objects, nil
}
// getInstanceSnapshotsRaw can be used to run handwritten query strings to return a slice of objects.
func getInstanceSnapshotsRaw(ctx context.Context, db dbtx, sql string, args ...any) ([]InstanceSnapshot, error) {
objects := make([]InstanceSnapshot, 0)
dest := func(scan func(dest ...any) error) error {
i := InstanceSnapshot{}
err := scan(&i.ID, &i.Project, &i.Instance, &i.Name, &i.CreationDate, &i.Stateful, &i.Description, &i.ExpiryDate)
if err != nil {
return err
}
objects = append(objects, i)
return nil
}
err := scan(ctx, db, sql, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"instances_snapshots\" table: %w", err)
}
return objects, nil
}
// GetInstanceSnapshots returns all available instance_snapshots.
// generator: instance_snapshot GetMany
func GetInstanceSnapshots(ctx context.Context, db dbtx, filters ...InstanceSnapshotFilter) (_ []InstanceSnapshot, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
var err error
// Result slice.
objects := make([]InstanceSnapshot, 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, instanceSnapshotObjects)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjects\" prepared statement: %w", err)
}
}
for i, filter := range filters {
if filter.Project != nil && filter.Instance != nil && filter.Name != nil && filter.ID == nil {
args = append(args, []any{filter.Project, filter.Instance, filter.Name}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, instanceSnapshotObjectsByProjectAndInstanceAndName)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjectsByProjectAndInstanceAndName\" prepared statement: %w", err)
}
break
}
query, err := StmtString(instanceSnapshotObjectsByProjectAndInstanceAndName)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjects\" 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.Project != nil && filter.Instance != nil && filter.ID == nil && filter.Name == nil {
args = append(args, []any{filter.Project, filter.Instance}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, instanceSnapshotObjectsByProjectAndInstance)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjectsByProjectAndInstance\" prepared statement: %w", err)
}
break
}
query, err := StmtString(instanceSnapshotObjectsByProjectAndInstance)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjects\" 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.Project == nil && filter.Instance == nil && filter.Name == nil {
args = append(args, []any{filter.ID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, instanceSnapshotObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjectsByID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(instanceSnapshotObjectsByID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"instanceSnapshotObjects\" 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.Project == nil && filter.Instance == nil && filter.Name == nil {
return nil, fmt.Errorf("Cannot filter on empty InstanceSnapshotFilter")
} else {
return nil, errors.New("No statement exists for the given Filter")
}
}
// Select.
if sqlStmt != nil {
objects, err = getInstanceSnapshots(ctx, sqlStmt, args...)
} else {
queryStr := strings.Join(queryParts[:], "ORDER BY")
objects, err = getInstanceSnapshotsRaw(ctx, db, queryStr, args...)
}
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"instances_snapshots\" table: %w", err)
}
return objects, nil
}
// GetInstanceSnapshotDevices returns all available InstanceSnapshot Devices
// generator: instance_snapshot GetMany
func GetInstanceSnapshotDevices(ctx context.Context, db tx, instanceSnapshotID int, filters ...DeviceFilter) (_ map[string]Device, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
instanceSnapshotDevices, err := GetDevices(ctx, db, "instances_snapshots", "instance_snapshot", filters...)
if err != nil {
return nil, err
}
devices := map[string]Device{}
for _, ref := range instanceSnapshotDevices[instanceSnapshotID] {
_, ok := devices[ref.Name]
if !ok {
devices[ref.Name] = ref
} else {
return nil, fmt.Errorf("Found duplicate Device with name %q", ref.Name)
}
}
return devices, nil
}
// GetInstanceSnapshotConfig returns all available InstanceSnapshot Config
// generator: instance_snapshot GetMany
func GetInstanceSnapshotConfig(ctx context.Context, db tx, instanceSnapshotID int, filters ...ConfigFilter) (_ map[string]string, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
instanceSnapshotConfig, err := GetConfig(ctx, db, "instances_snapshots", "instance_snapshot", filters...)
if err != nil {
return nil, err
}
config, ok := instanceSnapshotConfig[instanceSnapshotID]
if !ok {
config = map[string]string{}
}
return config, nil
}
// GetInstanceSnapshot returns the instance_snapshot with the given key.
// generator: instance_snapshot GetOne
func GetInstanceSnapshot(ctx context.Context, db dbtx, project string, instance string, name string) (_ *InstanceSnapshot, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
filter := InstanceSnapshotFilter{}
filter.Project = &project
filter.Instance = &instance
filter.Name = &name
objects, err := GetInstanceSnapshots(ctx, db, filter)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"instances_snapshots\" table: %w", err)
}
switch len(objects) {
case 0:
return nil, ErrNotFound
case 1:
return &objects[0], nil
default:
return nil, fmt.Errorf("More than one \"instances_snapshots\" entry matches")
}
}
// GetInstanceSnapshotID return the ID of the instance_snapshot with the given key.
// generator: instance_snapshot ID
func GetInstanceSnapshotID(ctx context.Context, db tx, project string, instance string, name string) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
stmt, err := Stmt(db, instanceSnapshotID)
if err != nil {
return -1, fmt.Errorf("Failed to get \"instanceSnapshotID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, project, instance, name)
var id int64
err = row.Scan(&id)
if errors.Is(err, sql.ErrNoRows) {
return -1, ErrNotFound
}
if err != nil {
return -1, fmt.Errorf("Failed to get \"instances_snapshots\" ID: %w", err)
}
return id, nil
}
// InstanceSnapshotExists checks if a instance_snapshot with the given key exists.
// generator: instance_snapshot Exists
func InstanceSnapshotExists(ctx context.Context, db dbtx, project string, instance string, name string) (_ bool, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
stmt, err := Stmt(db, instanceSnapshotID)
if err != nil {
return false, fmt.Errorf("Failed to get \"instanceSnapshotID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, project, instance, name)
var id int64
err = row.Scan(&id)
if errors.Is(err, sql.ErrNoRows) {
return false, nil
}
if err != nil {
return false, fmt.Errorf("Failed to get \"instances_snapshots\" ID: %w", err)
}
return true, nil
}
// CreateInstanceSnapshot adds a new instance_snapshot to the database.
// generator: instance_snapshot Create
func CreateInstanceSnapshot(ctx context.Context, db dbtx, object InstanceSnapshot) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
args := make([]any, 7)
// Populate the statement arguments.
args[0] = object.Project
args[1] = object.Instance
args[2] = object.Name
args[3] = object.CreationDate
args[4] = object.Stateful
args[5] = object.Description
args[6] = object.ExpiryDate
// Prepared statement to use.
stmt, err := Stmt(db, instanceSnapshotCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get \"instanceSnapshotCreate\" 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 \"instances_snapshots\" entry: %w", err)
}
id, err := result.LastInsertId()
if err != nil {
return -1, fmt.Errorf("Failed to fetch \"instances_snapshots\" entry ID: %w", err)
}
return id, nil
}
// CreateInstanceSnapshotDevices adds new instance_snapshot Devices to the database.
// generator: instance_snapshot Create
func CreateInstanceSnapshotDevices(ctx context.Context, db tx, instanceSnapshotID int64, devices map[string]Device) (_err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
for key, device := range devices {
device.ReferenceID = int(instanceSnapshotID)
devices[key] = device
}
err := CreateDevices(ctx, db, "instances_snapshots", "instance_snapshot", devices)
if err != nil {
return fmt.Errorf("Insert Device failed for InstanceSnapshot: %w", err)
}
return nil
}
// CreateInstanceSnapshotConfig adds new instance_snapshot Config to the database.
// generator: instance_snapshot Create
func CreateInstanceSnapshotConfig(ctx context.Context, db dbtx, instanceSnapshotID int64, config map[string]string) (_err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
referenceID := int(instanceSnapshotID)
for key, value := range config {
insert := Config{
ReferenceID: referenceID,
Key: key,
Value: value,
}
err := CreateConfig(ctx, db, "instances_snapshots", "instance_snapshot", insert)
if err != nil {
return fmt.Errorf("Insert Config failed for InstanceSnapshot: %w", err)
}
}
return nil
}
// RenameInstanceSnapshot renames the instance_snapshot matching the given key parameters.
// generator: instance_snapshot Rename
func RenameInstanceSnapshot(ctx context.Context, db dbtx, project string, instance string, name string, to string) (_err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
stmt, err := Stmt(db, instanceSnapshotRename)
if err != nil {
return fmt.Errorf("Failed to get \"instanceSnapshotRename\" prepared statement: %w", err)
}
result, err := stmt.Exec(to, project, instance, name)
if err != nil {
return fmt.Errorf("Rename InstanceSnapshot failed: %w", err)
}
n, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows failed: %w", err)
}
if n != 1 {
return fmt.Errorf("Query affected %d rows instead of 1", n)
}
return nil
}
// DeleteInstanceSnapshot deletes the instance_snapshot matching the given key parameters.
// generator: instance_snapshot DeleteOne-by-Project-and-Instance-and-Name
func DeleteInstanceSnapshot(ctx context.Context, db dbtx, project string, instance string, name string) (_err error) {
defer func() {
_err = mapErr(_err, "Instance_snapshot")
}()
stmt, err := Stmt(db, instanceSnapshotDeleteByProjectAndInstanceAndName)
if err != nil {
return fmt.Errorf("Failed to get \"instanceSnapshotDeleteByProjectAndInstanceAndName\" prepared statement: %w", err)
}
result, err := stmt.Exec(project, instance, name)
if err != nil {
return fmt.Errorf("Delete \"instances_snapshots\": %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 InstanceSnapshot rows instead of 1", n)
}
return nil
}
|