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
|
//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 warningObjects = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
ORDER BY warnings.uuid
`)
var warningObjectsByUUID = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
WHERE ( warnings.uuid = ? )
ORDER BY warnings.uuid
`)
var warningObjectsByProject = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
WHERE ( coalesce(project, '') = ? )
ORDER BY warnings.uuid
`)
var warningObjectsByStatus = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
WHERE ( warnings.status = ? )
ORDER BY warnings.uuid
`)
var warningObjectsByNodeAndTypeCode = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
WHERE ( coalesce(node, '') = ? AND warnings.type_code = ? )
ORDER BY warnings.uuid
`)
var warningObjectsByNodeAndTypeCodeAndProject = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
WHERE ( coalesce(node, '') = ? AND warnings.type_code = ? AND coalesce(project, '') = ? )
ORDER BY warnings.uuid
`)
var warningObjectsByNodeAndTypeCodeAndProjectAndEntityTypeCodeAndEntityID = RegisterStmt(`
SELECT warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count
FROM warnings
LEFT JOIN nodes ON warnings.node_id = nodes.id
LEFT JOIN projects ON warnings.project_id = projects.id
WHERE ( coalesce(node, '') = ? AND warnings.type_code = ? AND coalesce(project, '') = ? AND coalesce(warnings.entity_type_code, -1) = ? AND coalesce(warnings.entity_id, -1) = ? )
ORDER BY warnings.uuid
`)
var warningDeleteByUUID = RegisterStmt(`
DELETE FROM warnings WHERE uuid = ?
`)
var warningDeleteByEntityTypeCodeAndEntityID = RegisterStmt(`
DELETE FROM warnings WHERE entity_type_code = ? AND entity_id = ?
`)
var warningID = RegisterStmt(`
SELECT warnings.id FROM warnings
WHERE warnings.uuid = ?
`)
// warningColumns 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 Warning entity.
func warningColumns() string {
return "warnings.id, coalesce(nodes.name, '') AS node, coalesce(projects.name, '') AS project, coalesce(warnings.entity_type_code, -1), coalesce(warnings.entity_id, -1), warnings.uuid, warnings.type_code, warnings.status, warnings.first_seen_date, warnings.last_seen_date, warnings.updated_date, warnings.last_message, warnings.count"
}
// getWarnings can be used to run handwritten sql.Stmts to return a slice of objects.
func getWarnings(ctx context.Context, stmt *sql.Stmt, args ...any) ([]Warning, error) {
objects := make([]Warning, 0)
dest := func(scan func(dest ...any) error) error {
w := Warning{}
err := scan(&w.ID, &w.Node, &w.Project, &w.EntityTypeCode, &w.EntityID, &w.UUID, &w.TypeCode, &w.Status, &w.FirstSeenDate, &w.LastSeenDate, &w.UpdatedDate, &w.LastMessage, &w.Count)
if err != nil {
return err
}
objects = append(objects, w)
return nil
}
err := selectObjects(ctx, stmt, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"warnings\" table: %w", err)
}
return objects, nil
}
// getWarningsRaw can be used to run handwritten query strings to return a slice of objects.
func getWarningsRaw(ctx context.Context, db dbtx, sql string, args ...any) ([]Warning, error) {
objects := make([]Warning, 0)
dest := func(scan func(dest ...any) error) error {
w := Warning{}
err := scan(&w.ID, &w.Node, &w.Project, &w.EntityTypeCode, &w.EntityID, &w.UUID, &w.TypeCode, &w.Status, &w.FirstSeenDate, &w.LastSeenDate, &w.UpdatedDate, &w.LastMessage, &w.Count)
if err != nil {
return err
}
objects = append(objects, w)
return nil
}
err := scan(ctx, db, sql, dest, args...)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"warnings\" table: %w", err)
}
return objects, nil
}
// GetWarnings returns all available warnings.
// generator: warning GetMany
func GetWarnings(ctx context.Context, db dbtx, filters ...WarningFilter) (_ []Warning, _err error) {
defer func() {
_err = mapErr(_err, "Warning")
}()
var err error
// Result slice.
objects := make([]Warning, 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, warningObjects)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" prepared statement: %w", err)
}
}
for i, filter := range filters {
if filter.Node != nil && filter.TypeCode != nil && filter.Project != nil && filter.EntityTypeCode != nil && filter.EntityID != nil && filter.ID == nil && filter.UUID == nil && filter.Status == nil {
args = append(args, []any{filter.Node, filter.TypeCode, filter.Project, filter.EntityTypeCode, filter.EntityID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, warningObjectsByNodeAndTypeCodeAndProjectAndEntityTypeCodeAndEntityID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjectsByNodeAndTypeCodeAndProjectAndEntityTypeCodeAndEntityID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(warningObjectsByNodeAndTypeCodeAndProjectAndEntityTypeCodeAndEntityID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" 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.Node != nil && filter.TypeCode != nil && filter.Project != nil && filter.ID == nil && filter.UUID == nil && filter.EntityTypeCode == nil && filter.EntityID == nil && filter.Status == nil {
args = append(args, []any{filter.Node, filter.TypeCode, filter.Project}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, warningObjectsByNodeAndTypeCodeAndProject)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjectsByNodeAndTypeCodeAndProject\" prepared statement: %w", err)
}
break
}
query, err := StmtString(warningObjectsByNodeAndTypeCodeAndProject)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" 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.Node != nil && filter.TypeCode != nil && filter.ID == nil && filter.UUID == nil && filter.Project == nil && filter.EntityTypeCode == nil && filter.EntityID == nil && filter.Status == nil {
args = append(args, []any{filter.Node, filter.TypeCode}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, warningObjectsByNodeAndTypeCode)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjectsByNodeAndTypeCode\" prepared statement: %w", err)
}
break
}
query, err := StmtString(warningObjectsByNodeAndTypeCode)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" 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.UUID != nil && filter.ID == nil && filter.Project == nil && filter.Node == nil && filter.TypeCode == nil && filter.EntityTypeCode == nil && filter.EntityID == nil && filter.Status == nil {
args = append(args, []any{filter.UUID}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, warningObjectsByUUID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjectsByUUID\" prepared statement: %w", err)
}
break
}
query, err := StmtString(warningObjectsByUUID)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" 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.Status != nil && filter.ID == nil && filter.UUID == nil && filter.Project == nil && filter.Node == nil && filter.TypeCode == nil && filter.EntityTypeCode == nil && filter.EntityID == nil {
args = append(args, []any{filter.Status}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, warningObjectsByStatus)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjectsByStatus\" prepared statement: %w", err)
}
break
}
query, err := StmtString(warningObjectsByStatus)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" 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.ID == nil && filter.UUID == nil && filter.Node == nil && filter.TypeCode == nil && filter.EntityTypeCode == nil && filter.EntityID == nil && filter.Status == nil {
args = append(args, []any{filter.Project}...)
if len(filters) == 1 {
sqlStmt, err = Stmt(db, warningObjectsByProject)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjectsByProject\" prepared statement: %w", err)
}
break
}
query, err := StmtString(warningObjectsByProject)
if err != nil {
return nil, fmt.Errorf("Failed to get \"warningObjects\" 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.UUID == nil && filter.Project == nil && filter.Node == nil && filter.TypeCode == nil && filter.EntityTypeCode == nil && filter.EntityID == nil && filter.Status == nil {
return nil, fmt.Errorf("Cannot filter on empty WarningFilter")
} else {
return nil, errors.New("No statement exists for the given Filter")
}
}
// Select.
if sqlStmt != nil {
objects, err = getWarnings(ctx, sqlStmt, args...)
} else {
queryStr := strings.Join(queryParts[:], "ORDER BY")
objects, err = getWarningsRaw(ctx, db, queryStr, args...)
}
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"warnings\" table: %w", err)
}
return objects, nil
}
// GetWarning returns the warning with the given key.
// generator: warning GetOne-by-UUID
func GetWarning(ctx context.Context, db dbtx, uuid string) (_ *Warning, _err error) {
defer func() {
_err = mapErr(_err, "Warning")
}()
filter := WarningFilter{}
filter.UUID = &uuid
objects, err := GetWarnings(ctx, db, filter)
if err != nil {
return nil, fmt.Errorf("Failed to fetch from \"warnings\" 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 \"warnings\" entry matches")
}
}
// DeleteWarning deletes the warning matching the given key parameters.
// generator: warning DeleteOne-by-UUID
func DeleteWarning(ctx context.Context, db dbtx, uuid string) (_err error) {
defer func() {
_err = mapErr(_err, "Warning")
}()
stmt, err := Stmt(db, warningDeleteByUUID)
if err != nil {
return fmt.Errorf("Failed to get \"warningDeleteByUUID\" prepared statement: %w", err)
}
result, err := stmt.Exec(uuid)
if err != nil {
return fmt.Errorf("Delete \"warnings\": %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 Warning rows instead of 1", n)
}
return nil
}
// DeleteWarnings deletes the warning matching the given key parameters.
// generator: warning DeleteMany-by-EntityTypeCode-and-EntityID
func DeleteWarnings(ctx context.Context, db dbtx, entityTypeCode int, entityID int) (_err error) {
defer func() {
_err = mapErr(_err, "Warning")
}()
stmt, err := Stmt(db, warningDeleteByEntityTypeCodeAndEntityID)
if err != nil {
return fmt.Errorf("Failed to get \"warningDeleteByEntityTypeCodeAndEntityID\" prepared statement: %w", err)
}
result, err := stmt.Exec(entityTypeCode, entityID)
if err != nil {
return fmt.Errorf("Delete \"warnings\": %w", err)
}
_, err = result.RowsAffected()
if err != nil {
return fmt.Errorf("Fetch affected rows: %w", err)
}
return nil
}
// GetWarningID return the ID of the warning with the given key.
// generator: warning ID
func GetWarningID(ctx context.Context, db tx, uuid string) (_ int64, _err error) {
defer func() {
_err = mapErr(_err, "Warning")
}()
stmt, err := Stmt(db, warningID)
if err != nil {
return -1, fmt.Errorf("Failed to get \"warningID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, uuid)
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 \"warnings\" ID: %w", err)
}
return id, nil
}
// WarningExists checks if a warning with the given key exists.
// generator: warning Exists
func WarningExists(ctx context.Context, db dbtx, uuid string) (_ bool, _err error) {
defer func() {
_err = mapErr(_err, "Warning")
}()
stmt, err := Stmt(db, warningID)
if err != nil {
return false, fmt.Errorf("Failed to get \"warningID\" prepared statement: %w", err)
}
row := stmt.QueryRowContext(ctx, uuid)
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 \"warnings\" ID: %w", err)
}
return true, nil
}
|