Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: track progress #852

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
83 changes: 83 additions & 0 deletions progress/example_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
Copyright The ORAS Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package progress_test

import (
"crypto/rand"
"fmt"
"io"

"oras.land/oras-go/v2/progress"
)

// ExampleTrackReader demonstrates how to track the transmission progress of a
// reader.
func ExampleTrackReader() {
// Set up a progress tracker.
total := int64(11)
tracker := progress.TrackerFunc(func(status progress.Status, err error) error {
if err != nil {
fmt.Printf("Error: %v\n", err)
return nil
}
switch status.State {
case progress.StateInitialized:
fmt.Println("Start reading content")
case progress.StateTransmitting:
fmt.Printf("Progress: %d/%d bytes\n", status.Offset, total)
case progress.StateTransmitted:
fmt.Println("Finish reading content")
default:
// Ignore other states.
}
return nil
})
// Close takes no effect for TrackerFunc but should be called for general
// Tracker implementations.
defer tracker.Close()

// Wrap a reader of a random content generator with the progress tracker.
r := io.LimitReader(rand.Reader, total)
rc := progress.TrackReader(tracker, r)

// Start tracking the transmission.
if err := progress.Start(tracker); err != nil {
panic(err)
}

// Read from the random content generator and discard the content, while
// tracking the progress.
// Note: io.Discard is wrapped with a io.MultiWriter for dropping
// the io.ReadFrom interface for demonstration purposes.
buf := make([]byte, 3)
w := io.MultiWriter(io.Discard)
if _, err := io.CopyBuffer(w, rc, buf); err != nil {
panic(err)
}

// Finish tracking the transmission.
if err := progress.Done(tracker); err != nil {
panic(err)
}

// Output:
// Start reading content
// Progress: 3/11 bytes
// Progress: 6/11 bytes
// Progress: 9/11 bytes
// Progress: 11/11 bytes
// Finish reading content
}
48 changes: 48 additions & 0 deletions progress/manager.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
Copyright The ORAS Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// Package progress tracks the status of descriptors being processed.
package progress

import (
"io"

ocispec "github.com/opencontainers/image-spec/specs-go/v1"
)

// Manager tracks the progress of multiple descriptors.
type Manager interface {
io.Closer

// Track starts tracking the progress of a descriptor.
Track(desc ocispec.Descriptor) (Tracker, error)
}

// ManagerFunc is an adapter to allow the use of ordinary functions as Managers.
// If f is a function with the appropriate signature, ManagerFunc(f) is a
// [Manager] that calls f.
type ManagerFunc func(desc ocispec.Descriptor, status Status, err error) error

// Close closes the manager.
func (f ManagerFunc) Close() error {
return nil

Check warning on line 40 in progress/manager.go

View check run for this annotation

Codecov / codecov/patch

progress/manager.go#L39-L40

Added lines #L39 - L40 were not covered by tests
}

// Track starts tracking the progress of a descriptor.
func (f ManagerFunc) Track(desc ocispec.Descriptor) (Tracker, error) {
return TrackerFunc(func(status Status, err error) error {
return f(desc, status, err)
}), nil

Check warning on line 47 in progress/manager.go

View check run for this annotation

Codecov / codecov/patch

progress/manager.go#L44-L47

Added lines #L44 - L47 were not covered by tests
}
40 changes: 40 additions & 0 deletions progress/status.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright The ORAS Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package progress

// State represents the state of a descriptor.
type State int

// Registered states.
const (
StateUnknown State = iota // unknown state
StateInitialized // progress initialized
StateTransmitting // transmitting content
StateTransmitted // content transmitted
StateExists // content exists
StateSkipped // content skipped
StateMounted // content mounted
)

// Status represents the status of a descriptor.
type Status struct {
// State represents the state of the descriptor.
State State

// Offset represents the current offset of the descriptor.
// Offset is discarded if set to a negative value.
Offset int64
}
166 changes: 166 additions & 0 deletions progress/tracker.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
/*
Copyright The ORAS Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package progress

import "io"

// Tracker updates the status of a descriptor.
type Tracker interface {
io.Closer

// Update updates the status of the descriptor.
Update(status Status) error

// Fail marks the descriptor as failed.
// Fail should return nil on successful failure marking.
Fail(err error) error
}

// TrackerFunc is an adapter to allow the use of ordinary functions as Trackers.
// If f is a function with the appropriate signature, TrackerFunc(f) is a
// [Tracker] that calls f.
type TrackerFunc func(status Status, err error) error

// Close closes the tracker.
func (f TrackerFunc) Close() error {
return nil
}

// Update updates the status of the descriptor.
func (f TrackerFunc) Update(status Status) error {
return f(status, nil)
}

// Fail marks the descriptor as failed.
func (f TrackerFunc) Fail(err error) error {
return f(Status{}, err)
}

// Start starts tracking the transmission.
func Start(t Tracker) error {
return t.Update(Status{
State: StateInitialized,
Offset: -1,
})
}

// Done marks the transmission as complete.
// Done should be called after the transmission is complete.
// Note: Reading all content from the reader does not imply the transmission is
// complete.
func Done(t Tracker) error {
return t.Update(Status{
State: StateTransmitted,
Offset: -1,
})
}

// TrackReader bind a reader with a tracker.
func TrackReader(t Tracker, r io.Reader) io.Reader {
rt := readTracker{
base: r,
tracker: t,
}
if _, ok := r.(io.WriterTo); ok {
return &readTrackerWriteTo{rt}
}
return &rt
}

// readTracker tracks the transmission based on the read operation.
type readTracker struct {
base io.Reader
tracker Tracker
offset int64
}

// Read reads from the base reader and updates the status.
// On partial read, the tracker treats it as two reads: a successful read with
// status update and a failed read with failure report.
func (rt *readTracker) Read(p []byte) (int, error) {
n, err := rt.base.Read(p)
rt.offset += int64(n)
if n > 0 {
if updateErr := rt.tracker.Update(Status{
State: StateTransmitting,
Offset: rt.offset,
}); updateErr != nil {
err = updateErr
}
}
if err != nil && err != io.EOF {
if failErr := rt.tracker.Fail(err); failErr != nil {
return n, failErr
}
}
return n, err
}

// readTrackerWriteTo is readTracker with WriteTo support.
type readTrackerWriteTo struct {
readTracker
}

// WriteTo writes to the base writer and updates the status.
// On partial write, the tracker treats it as two writes: a successful write
// with status update and a failed write with failure report.
func (rt *readTrackerWriteTo) WriteTo(w io.Writer) (int64, error) {
wt := &writeTracker{
base: w,
tracker: rt.tracker,
offset: rt.offset,
}
n, err := rt.base.(io.WriterTo).WriteTo(wt)
rt.offset = wt.offset
if err != nil && wt.trackerErr == nil {
if failErr := rt.tracker.Fail(err); failErr != nil {
return n, failErr
}
}
return n, err
}

// writeTracker tracks the transmission based on the write operation.
type writeTracker struct {
base io.Writer
tracker Tracker
offset int64
trackerErr error
}

// Write writes to the base writer and updates the status.
// On partial write, the tracker treats it as two writes: a successful write
// with status update and a failed write with failure report.
func (wt *writeTracker) Write(p []byte) (int, error) {
n, err := wt.base.Write(p)
wt.offset += int64(n)
if n > 0 {
if updateErr := wt.tracker.Update(Status{
State: StateTransmitting,
Offset: wt.offset,
}); updateErr != nil {
wt.trackerErr = updateErr
err = updateErr
}
}
if err != nil {
if failErr := wt.tracker.Fail(err); failErr != nil {
wt.trackerErr = failErr
return n, failErr
}

Check warning on line 163 in progress/tracker.go

View check run for this annotation

Codecov / codecov/patch

progress/tracker.go#L161-L163

Added lines #L161 - L163 were not covered by tests
}
return n, err
}
Loading
Loading