scan

package
v0.5.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 29, 2024 License: Apache-2.0, MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NextAvailablePackJob

func NextAvailablePackJob(
	ctx context.Context,
	db *gorm.DB,
	attachmentID model.SourceAttachmentID,
) (*model.Job, error)

func PrepareSource

func PrepareSource(ctx context.Context, db *gorm.DB, attachment model.SourceAttachment) error

func PrepareToPackFileRanges

func PrepareToPackFileRanges(
	ctx context.Context,
	db *gorm.DB,
	attachment model.SourceAttachment,
	remainingParts []model.FileRange,
) (int64, error)

func Scan

func Scan(ctx context.Context, db *gorm.DB, attachment model.SourceAttachment) error

Scan traverses a source attachment, which represents a remote storage location, and processes its files. During this process, it identifies new files in the storage that are not already in the database and adds them. Existing files that have not yet been packaged into jobs are grouped into jobs of a specified size.

The scan starts from the last scanned path, ensuring incremental scanning, and updates the `last_scanned_path` field of the SourceAttachment after each file to allow resuming interrupted scans.

Parameters:

  • ctx: Context for timeout and cancellation.
  • db: A pointer to a gorm.DB object, providing database access.
  • attachment: The source attachment that points to the storage location to scan.

Returns:

  • An error if there are issues during the scan or database operations, otherwise nil.

Note: This function assumes the use of a global logger object for logging and leverages

the storagesystem package to interact with the storage system of the SourceAttachment.
The push package is used for processing files and managing file ranges.

func UpdatePackJob

func UpdatePackJob(
	ctx context.Context,
	db *gorm.DB,
	packJobID model.JobID,
	state model.JobState,
	fileRangeIDs []model.FileRangeID,
) error

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL