go4.orggo4.org/cloud/google/gcsutil Index | Files

package gcsutil

import "go4.org/cloud/google/gcsutil"

Package gcsutil provides tools for accessing Google Cloud Storage until they can be completely replaced by cloud.google.com/go/storage.

Index

Variables

var ErrInvalidRange = errors.New("gcsutil: requested range not satisfiable")

ErrInvalidRange is used when the server has returned http.StatusRequestedRangeNotSatisfiable.

Functions

func EnumerateObjects

func EnumerateObjects(ctx context.Context, bucket, after string, limit int) ([]*storage.ObjectAttrs, error)

EnumerateObjects lists the objects in a bucket. This function relies on the ctx oauth2.HTTPClient value being set to an OAuth2 authorized and authenticated HTTP client. If after is non-empty, listing will begin with lexically greater object names. If limit is non-zero, the length of the list will be limited to that number.

func GetPartialObject

func GetPartialObject(ctx context.Context, obj Object, offset, length int64) (io.ReadCloser, error)

GetPartialObject fetches part of a Google Cloud Storage object. This function relies on the ctx ctxutil.HTTPClient value being set to an OAuth2 authorized and authenticated HTTP client. If length is negative, the rest of the object is returned. It returns ErrInvalidRange if the server replies with http.StatusRequestedRangeNotSatisfiable. The caller must call Close on the returned value.

Types

type Object

type Object struct {
	Bucket string
	Key    string
}

An Object holds the name of an object (its bucket and key) within Google Cloud Storage.

func (*Object) String

func (o *Object) String() string

type SizedObject

type SizedObject struct {
	Object
	Size int64
}

A SizedObject holds the bucket, key, and size of an object.

func (SizedObject) String

func (so SizedObject) String() string

Source Files

storage.go

Version
v0.0.0-20230225012048-214862532bf5 (latest)
Published
Feb 25, 2023
Platform
linux/amd64
Imports
11 packages
Last checked
21 hours ago

Tools for package owners.