1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
|
/******************************************************************************
*
* Copyright 2018 Stefan Majewsky <majewsky@gmx.net>
*
* 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 schwift
import (
"bytes"
"crypto/md5"
"encoding/hex"
"hash"
"io"
"net/http"
)
//Object represents a Swift object.
type Object struct {
c *Container
name string
//cache
headers *ObjectHeaders
}
//Object returns a handle to the object with the given name within this
//container. This function does not issue any HTTP requests, and therefore cannot
//ensure that the object exists. Use the Exists() function to check for the
//container's existence.
func (c *Container) Object(name string) *Object {
return &Object{c: c, name: name}
}
//Container returns a handle to the container this object is stored in.
func (o *Object) Container() *Container {
return o.c
}
//Name returns the object name. This does not parse the name in any way; if you
//want only the basename portion of the object name, use package path in
//conjunction with this function. For example:
//
// obj := account.Container("docs").Object("2018-02-10/invoice.pdf")
// obj.Name() //returns "2018-02-10/invoice.pdf"
// path.Base(obj.Name()) //returns "invoice.pdf"
func (o *Object) Name() string {
return o.name
}
//FullName returns the container name and object name joined together with a
//slash. This identifier is used by Swift in several places (large object
//manifests, symlink targets, etc.) to refer to an object within an account.
//For example:
//
// obj := account.Container("docs").Object("2018-02-10/invoice.pdf")
// obj.Name() //returns "2018-02-10/invoice.pdf"
// obj.FullName() //returns "docs/2018-02-10/invoice.pdf"
func (o *Object) FullName() string {
return o.c.name + "/" + o.name
}
//Exists checks if this object exists, potentially by issuing a HEAD request
//if no Headers() have been cached yet.
func (o *Object) Exists() (bool, error) {
_, err := o.Headers()
if Is(err, http.StatusNotFound) {
return false, nil
} else if err != nil {
return false, err
}
return true, nil
}
//Headers returns the ObjectHeaders for this object. If the ObjectHeaders
//has not been cached yet, a HEAD request is issued on the object.
//
//This operation fails with http.StatusNotFound if the object does not exist.
func (o *Object) Headers() (ObjectHeaders, error) {
if o.headers != nil {
return *o.headers, nil
}
resp, err := Request{
Method: "HEAD",
ContainerName: o.c.name,
ObjectName: o.name,
//since Openstack LOVES to be inconsistent with everything (incl. itself),
//this returns 200 instead of 204
ExpectStatusCodes: []int{200},
}.Do(o.c.a.backend)
if err != nil {
return ObjectHeaders{}, err
}
headers := ObjectHeaders{headersFromHTTP(resp.Header)}
err = headers.Validate()
if err != nil {
return headers, err
}
o.headers = &headers
return *o.headers, nil
}
//Update updates the object's headers using a POST request. To add URL
//parameters, pass a non-nil *RequestOptions.
//
//This operation returns http.StatusNotFound if the object does not exist.
//
//A successful POST request implies Invalidate() since it may change metadata.
func (o *Object) Update(headers ObjectHeaders, opts *RequestOptions) error {
_, err := Request{
Method: "POST",
ContainerName: o.c.name,
ObjectName: o.name,
Options: cloneRequestOptions(opts, headers.Headers),
ExpectStatusCodes: []int{202},
}.Do(o.c.a.backend)
if err == nil {
o.Invalidate()
}
return err
}
//Upload creates the object using a PUT request.
//
//If you do not have an io.Reader, but you have a []byte or string instance
//containing the object, wrap it in a *bytes.Reader instance like so:
//
// var buffer []byte
// o.Upload(bytes.NewReader(buffer), opts)
//
// //or...
// var buffer string
// o.Upload(bytes.NewReader([]byte(buffer)), opts)
//
//If you have neither an io.Reader nor a []byte or string, but you have a
//function that generates the object's content into an io.Writer, use
//UploadWithWriter instead.
//
//If content is a *bytes.Reader or a *bytes.Buffer instance, the Content-Length
//and Etag request headers will be computed automatically. Otherwise, it is
//highly recommended that the caller set these headers (if possible) to allow
//the server to check the integrity of the uploaded file.
//
//If Etag and/or Content-Length is supplied and the content does not match
//these parameters, http.StatusUnprocessableEntity is returned. If Etag is not
//supplied and cannot be computed in advance, Upload() will compute the Etag as
//data is read from the io.Reader, and compare the result to the Etag returned
//by Swift, returning ErrChecksumMismatch in case of mismatch. The object will
//have been uploaded at that point, so you will usually want to Delete() it.
//
//This function can be used regardless of whether the object exists or not.
//
//A successful PUT request implies Invalidate() since it may change metadata.
func (o *Object) Upload(content io.Reader, opts *RequestOptions) error {
opts = cloneRequestOptions(opts, nil)
hdr := ObjectHeaders{opts.Headers}
//do not attempt to add the Etag header when we're writing a large object
//manifest; the header refers to the content, but we would be computing the
//manifest's hash instead
isManifestUpload := opts.Values.Get("multipart-manifest") == "put" || hdr.IsDynamicLargeObject()
var hasher hash.Hash
tryComputeContentLength(content, hdr)
if !isManifestUpload {
tryComputeEtag(content, hdr)
//could not compute Etag in advance -> need to check on the fly
if !hdr.Etag().Exists() {
hasher = md5.New()
if content != nil {
content = io.TeeReader(content, hasher)
}
}
}
resp, err := Request{
Method: "PUT",
ContainerName: o.c.name,
ObjectName: o.name,
Options: opts,
Body: content,
ExpectStatusCodes: []int{201},
DrainResponseBody: true,
}.Do(o.c.a.backend)
if err != nil {
return err
}
o.Invalidate()
if hasher != nil {
expectedEtag := hex.EncodeToString(hasher.Sum(nil))
if expectedEtag != resp.Header.Get("Etag") {
return ErrChecksumMismatch
}
}
return nil
}
type readerWithLen interface {
//Returns the number of bytes in the unread portion of the buffer.
//Implemented by bytes.Reader, bytes.Buffer and strings.Reader.
Len() int
}
func tryComputeContentLength(content io.Reader, headers ObjectHeaders) {
h := headers.SizeBytes()
if h.Exists() {
return
}
if content == nil {
h.Set(0)
} else if r, ok := content.(readerWithLen); ok {
h.Set(uint64(r.Len()))
}
}
//This covers both bytes.Reader and strings.Reader in a way that is compatible
//with earlier versions of Go that don't have strings.Reader yet.
type likeBytesReader interface {
io.WriterTo
io.Seeker
}
func tryComputeEtag(content io.Reader, headers ObjectHeaders) {
h := headers.Etag()
if h.Exists() {
return
}
switch r := content.(type) {
case nil:
sum := md5.Sum(nil)
h.Set(hex.EncodeToString(sum[:]))
case *bytes.Buffer:
//bytes.Buffer has a method that returns the unread portion of the buffer,
//so this one is easy
sum := md5.Sum(r.Bytes())
h.Set(hex.EncodeToString(sum[:]))
case likeBytesReader:
//bytes.Reader does not have such a method, but it is an io.Seeker, so we
//can read the entire thing and then seek back to where we started
hash := md5.New()
n, _ := r.WriteTo(hash)
r.Seek(-n, io.SeekCurrent)
h.Set(hex.EncodeToString(hash.Sum(nil)))
}
}
//UploadWithWriter is a variant of Upload that can be used when the object's
//content is generated by some function or package that takes an io.Writer
//instead of supplying an io.Reader. For example:
//
// func greeting(target io.Writer, name string) error {
// _, err := fmt.Fprintf(target, "Hello %s!\n", name)
// return err
// }
//
// obj := container.Object("greeting-for-susan-and-jeffrey")
// err := obj.UploadWithWriter(nil, func(w io.Writer) error {
// err := greeting(w, "Susan")
// if err == nil {
// err = greeting(w, "Jeffrey")
// }
// return err
// })
//
//If you do not need an io.Writer, always use Upload instead.
func (o *Object) UploadWithWriter(opts *RequestOptions, callback func(io.Writer) error) error {
reader, writer := io.Pipe()
errChan := make(chan error)
go func() {
err := o.Upload(reader, opts)
reader.CloseWithError(err) //stop the writer if it is still writing
errChan <- err
}()
writer.CloseWithError(callback(writer)) //stop the reader if it is still reading
return <-errChan
}
//DeleteOptions invokes advanced behavior in the Object.Delete() method.
type DeleteOptions struct {
//When deleting a large object, also delete its segments. This will cause
//Delete() to call into BulkDelete(), so a BulkError may be returned.
DeleteSegments bool
}
//Delete deletes the object using a DELETE request. To add URL parameters,
//pass a non-nil *RequestOptions.
//
//This operation fails with http.StatusNotFound if the object does not exist.
//
//A successful DELETE request implies Invalidate().
func (o *Object) Delete(opts *DeleteOptions, ropts *RequestOptions) error {
if opts == nil {
opts = &DeleteOptions{}
}
if opts.DeleteSegments {
exists, err := o.Exists()
if err != nil {
return err
}
if exists {
lo, err := o.AsLargeObject()
switch err {
case nil:
//is large object - delete segments and the object itself in one step
_, _, err := o.c.a.BulkDelete(append(lo.segmentObjects(), o), nil, nil)
o.Invalidate()
return err
case ErrNotLarge:
//not a large object - use regular DELETE request
default:
//unexpected error
return err
}
}
}
_, err := Request{
Method: "DELETE",
ContainerName: o.c.name,
ObjectName: o.name,
Options: ropts,
ExpectStatusCodes: []int{204},
}.Do(o.c.a.backend)
if err == nil {
o.Invalidate()
}
return err
}
//Invalidate clears the internal cache of this Object instance. The next call
//to Headers() on this instance will issue a HEAD request on the object.
func (o *Object) Invalidate() {
o.headers = nil
}
//Download retrieves the object's contents using a GET request. This returns a
//helper object which allows you to select whether you want an io.ReadCloser
//for reading the object contents progressively, or whether you want the object
//contents collected into a byte slice or string.
//
// reader, err := object.Download(nil, nil).AsReadCloser()
//
// buf, err := object.Download(nil, nil).AsByteSlice()
//
// str, err := object.Download(nil, nil).AsString()
//
//See struct DownloadedObject for details.
func (o *Object) Download(opts *RequestOptions) DownloadedObject {
resp, err := Request{
Method: "GET",
ContainerName: o.c.name,
ObjectName: o.name,
Options: opts,
ExpectStatusCodes: []int{200},
}.Do(o.c.a.backend)
var body io.ReadCloser
if err == nil {
newHeaders := ObjectHeaders{headersFromHTTP(resp.Header)}
err = newHeaders.Validate()
if err == nil {
o.headers = &newHeaders
}
body = resp.Body
}
return DownloadedObject{body, err}
}
//CopyTo copies the object on the server side using a COPY request. To copy
//only the content, not the metadata, use the X-Fresh-Metadata header:
//
// hdr := make(ObjectHeaders)
// hdr.Set("X-Fresh-Metadata", "true")
// err := sourceObject.CopyTo(targetObject, hdr, nil)
//
//If X-Fresh-Metadata is not set (or set to false), all metadata from the
//source object will be copied to the target, but you can overwrite metadata by
//providing new values in the headers argument, like with Update().
//
//A successful COPY implies target.Invalidate() since it may change the
//target's metadata.
func (o *Object) CopyTo(target *Object, opts *RequestOptions) error {
opts = cloneRequestOptions(opts, nil)
opts.Headers.Set("Destination", target.FullName())
if o.c.a.name != target.c.a.name {
opts.Headers.Set("Destination-Account", target.c.a.name)
}
_, err := Request{
Method: "COPY",
ContainerName: o.c.name,
ObjectName: o.name,
Options: opts,
ExpectStatusCodes: []int{201},
DrainResponseBody: true,
}.Do(o.c.a.backend)
if err == nil {
target.Invalidate()
}
return err
}
//MoveTo moves the object on the server side, using a COPY request followed by
//a DELETE request on the source object.
//
//A successful move implies Invalidate() on both the source and target side.
func (o *Object) MoveTo(target *Object, copyOpts *RequestOptions, deleteOpts *RequestOptions) error {
err := o.CopyTo(target, copyOpts)
if err != nil {
return err
}
return o.Delete(nil, deleteOpts)
}
|