123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- // Copyright 2014 Google Inc. All Rights Reserved.
- //
- // 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 storage
- import (
- "fmt"
- "io"
- "unicode/utf8"
- "golang.org/x/net/context"
- )
- // A Writer writes a Cloud Storage object.
- type Writer struct {
- // ObjectAttrs are optional attributes to set on the object. Any attributes
- // must be initialized before the first Write call. Nil or zero-valued
- // attributes are ignored.
- ObjectAttrs
- ctx context.Context
- client *Client
- bucket string
- name string
- opened bool
- pw *io.PipeWriter
- donec chan struct{} // closed after err and obj are set.
- err error
- obj *ObjectAttrs
- }
- func (w *Writer) open() error {
- attrs := w.ObjectAttrs
- // Check the developer didn't change the object Name (this is unfortunate, but
- // we don't want to store an object under the wrong name).
- if attrs.Name != w.name {
- return fmt.Errorf("storage: Writer.Name %q does not match object name %q", attrs.Name, w.name)
- }
- if !utf8.ValidString(attrs.Name) {
- return fmt.Errorf("storage: object name %q is not valid UTF-8", attrs.Name)
- }
- pr, pw := io.Pipe()
- r := &contentTyper{pr, attrs.ContentType}
- w.pw = pw
- w.opened = true
- go func() {
- resp, err := w.client.raw.Objects.Insert(
- w.bucket, attrs.toRawObject(w.bucket)).Media(r).Projection("full").Context(w.ctx).Do()
- w.err = err
- if err == nil {
- w.obj = newObject(resp)
- } else {
- pr.CloseWithError(w.err)
- }
- close(w.donec)
- }()
- return nil
- }
- // Write appends to w.
- func (w *Writer) Write(p []byte) (n int, err error) {
- if w.err != nil {
- return 0, w.err
- }
- if !w.opened {
- if err := w.open(); err != nil {
- return 0, err
- }
- }
- return w.pw.Write(p)
- }
- // Close completes the write operation and flushes any buffered data.
- // If Close doesn't return an error, metadata about the written object
- // can be retrieved by calling Object.
- func (w *Writer) Close() error {
- if !w.opened {
- if err := w.open(); err != nil {
- return err
- }
- }
- if err := w.pw.Close(); err != nil {
- return err
- }
- <-w.donec
- return w.err
- }
- // CloseWithError aborts the write operation with the provided error.
- // CloseWithError always returns nil.
- func (w *Writer) CloseWithError(err error) error {
- if !w.opened {
- return nil
- }
- return w.pw.CloseWithError(err)
- }
- // ObjectAttrs returns metadata about a successfully-written object.
- // It's only valid to call it after Close returns nil.
- func (w *Writer) Attrs() *ObjectAttrs {
- return w.obj
- }
|