mirror of
https://github.com/rclone/rclone.git
synced 2024-12-11 17:51:12 +01:00
e7bd392a69
This fixes an important bug with listing that affects users with more than 500 objects in a listing operation.
82 lines
2.4 KiB
Go
82 lines
2.4 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package storj
|
|
|
|
import (
|
|
"encoding/base32"
|
|
|
|
"github.com/zeebo/errs"
|
|
)
|
|
|
|
// ErrSegmentID is used when something goes wrong with a segment ID.
|
|
var ErrSegmentID = errs.Class("segment ID error")
|
|
|
|
// segmentIDEncoding is base32 without padding.
|
|
var segmentIDEncoding = base32.StdEncoding.WithPadding(base32.NoPadding)
|
|
|
|
// SegmentID is the unique identifier for segment related to object.
|
|
type SegmentID []byte
|
|
|
|
// SegmentIDFromString decodes an base32 encoded.
|
|
func SegmentIDFromString(s string) (SegmentID, error) {
|
|
idBytes, err := segmentIDEncoding.DecodeString(s)
|
|
if err != nil {
|
|
return SegmentID{}, ErrSegmentID.Wrap(err)
|
|
}
|
|
return SegmentIDFromBytes(idBytes)
|
|
}
|
|
|
|
// SegmentIDFromBytes converts a byte slice into a segment ID.
|
|
func SegmentIDFromBytes(b []byte) (SegmentID, error) {
|
|
// return error will be used in future implementation
|
|
id := make([]byte, len(b))
|
|
copy(id, b)
|
|
return id, nil
|
|
}
|
|
|
|
// IsZero returns whether segment ID is unassigned.
|
|
func (id SegmentID) IsZero() bool {
|
|
return len(id) == 0
|
|
}
|
|
|
|
// String representation of the segment ID.
|
|
func (id SegmentID) String() string { return segmentIDEncoding.EncodeToString(id.Bytes()) }
|
|
|
|
// Bytes returns bytes of the segment ID.
|
|
func (id SegmentID) Bytes() []byte { return id[:] }
|
|
|
|
// Marshal serializes a segment ID (implements gogo's custom type interface).
|
|
func (id SegmentID) Marshal() ([]byte, error) {
|
|
return id.Bytes(), nil
|
|
}
|
|
|
|
// MarshalTo serializes a segment ID into the passed byte slice (implements gogo's custom type interface).
|
|
func (id *SegmentID) MarshalTo(data []byte) (n int, err error) {
|
|
return copy(data, id.Bytes()), nil
|
|
}
|
|
|
|
// Unmarshal deserializes a segment ID (implements gogo's custom type interface).
|
|
func (id *SegmentID) Unmarshal(data []byte) error {
|
|
var err error
|
|
*id, err = SegmentIDFromBytes(data)
|
|
return err
|
|
}
|
|
|
|
// Size returns the length of a segment ID (implements gogo's custom type interface).
|
|
func (id SegmentID) Size() int {
|
|
return len(id)
|
|
}
|
|
|
|
// MarshalJSON serializes a segment ID to a json string as bytes (implements gogo's custom type interface).
|
|
func (id SegmentID) MarshalJSON() ([]byte, error) {
|
|
return []byte(`"` + id.String() + `"`), nil
|
|
}
|
|
|
|
// UnmarshalJSON deserializes a json string (as bytes) to a segment ID (implements gogo's custom type interface).
|
|
func (id *SegmentID) UnmarshalJSON(data []byte) error {
|
|
var err error
|
|
*id, err = SegmentIDFromString(string(data))
|
|
return err
|
|
}
|