utils

package
v1.8.10 Latest Latest
Warning

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

Go to latest
Published: Jan 2, 2025 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CopyToTempFile added in v1.3.0

func CopyToTempFile(src io.ReadCloser, dir string, pattern string) (*os.File, error)

*

  • CopyToTempFile copies the contents of the source `io.ReadCloser` to a temporary file on disk. *
  • @param src The source `io.ReadCloser` containing the content to copy.
  • @param dir The directory where the temporary file will be created. Can be an empty string to use the default system directory.
  • @param pattern The prefix of the temporary file's name. *
  • @return A pointer to the `os.File` representing the created temporary file.
  • @return Any error encountered during the copy operation.

func CreateEmptyTempFile added in v1.3.0

func CreateEmptyTempFile() (string, error)

func FindDependencyGraphNodeBySemverRange added in v1.5.6

func FindDependencyGraphNodeBySemverRange(graph *models.DependencyGraph[*models.Package],
	name string, rangeStr string) *models.DependencyGraphNode[*models.Package]

Types

type WorkQueue

type WorkQueue[T WorkQueueItem] struct {
	// contains filtered or unexported fields
}

func NewWorkQueue

func NewWorkQueue[T WorkQueueItem](bufferSize int, concurrency int,
	handler WorkQueueFn[T]) *WorkQueue[T]

func (*WorkQueue[T]) Add

func (q *WorkQueue[T]) Add(item T) bool

func (*WorkQueue[T]) Start

func (q *WorkQueue[T]) Start()

func (*WorkQueue[T]) Stop

func (q *WorkQueue[T]) Stop()

func (*WorkQueue[T]) Wait

func (q *WorkQueue[T]) Wait()

func (*WorkQueue[T]) WithCallbacks

func (q *WorkQueue[T]) WithCallbacks(callbacks WorkQueueCallbacks[T])

type WorkQueueCallbackOnItemFn

type WorkQueueCallbackOnItemFn[T WorkQueueItem] func(q *WorkQueue[T], item T)

type WorkQueueCallbacks

type WorkQueueCallbacks[T WorkQueueItem] struct {
	OnAdd  WorkQueueCallbackOnItemFn[T]
	OnDone WorkQueueCallbackOnItemFn[T]
}

type WorkQueueFn

type WorkQueueFn[T WorkQueueItem] func(q *WorkQueue[T], item T) error

type WorkQueueItem

type WorkQueueItem interface {
	Id() string
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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