gcsutil - ActiveState ActiveGo 1.8
...

Package gcsutil

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

Overview ▾

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

Variables

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

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

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.

type Object

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

type Object struct {
    Bucket string
    Key    string
}

func (*Object) String

func (o *Object) String() string

type SizedObject

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

type SizedObject struct {
    Object
    Size int64
}

func (SizedObject) String

func (so SizedObject) String() string