2015-09-22 19:47:16 +02:00
|
|
|
// Package swift provides an interface to the Swift object storage system
|
2013-06-27 21:13:07 +02:00
|
|
|
package swift
|
2012-12-26 13:23:58 +01:00
|
|
|
|
|
|
|
import (
|
2015-09-23 08:57:48 +02:00
|
|
|
"bytes"
|
2012-12-29 12:35:41 +01:00
|
|
|
"errors"
|
2012-12-26 13:23:58 +01:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2014-05-05 20:52:52 +02:00
|
|
|
"path"
|
2012-12-29 12:35:41 +01:00
|
|
|
"regexp"
|
2012-12-26 13:23:58 +01:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2014-03-15 17:06:11 +01:00
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/ncw/swift"
|
2015-09-23 08:57:48 +02:00
|
|
|
"github.com/spf13/pflag"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Globals
|
|
|
|
var (
|
|
|
|
chunkSize = fs.SizeSuffix(5 * 1024 * 1024 * 1024)
|
2014-03-15 17:06:11 +01:00
|
|
|
)
|
2013-06-27 21:13:07 +02:00
|
|
|
|
|
|
|
// Register with Fs
|
|
|
|
func init() {
|
2015-09-22 19:47:16 +02:00
|
|
|
fs.Register(&fs.Info{
|
2014-03-15 17:06:11 +01:00
|
|
|
Name: "swift",
|
|
|
|
NewFs: NewFs,
|
|
|
|
Options: []fs.Option{{
|
|
|
|
Name: "user",
|
|
|
|
Help: "User name to log in.",
|
|
|
|
}, {
|
|
|
|
Name: "key",
|
|
|
|
Help: "API key or password.",
|
|
|
|
}, {
|
|
|
|
Name: "auth",
|
|
|
|
Help: "Authentication URL for server.",
|
|
|
|
Examples: []fs.OptionExample{{
|
|
|
|
Help: "Rackspace US",
|
|
|
|
Value: "https://auth.api.rackspacecloud.com/v1.0",
|
|
|
|
}, {
|
|
|
|
Help: "Rackspace UK",
|
|
|
|
Value: "https://lon.auth.api.rackspacecloud.com/v1.0",
|
|
|
|
}, {
|
|
|
|
Help: "Rackspace v2",
|
|
|
|
Value: "https://identity.api.rackspacecloud.com/v2.0",
|
|
|
|
}, {
|
|
|
|
Help: "Memset Memstore UK",
|
|
|
|
Value: "https://auth.storage.memset.com/v1.0",
|
|
|
|
}, {
|
|
|
|
Help: "Memset Memstore UK v2",
|
|
|
|
Value: "https://auth.storage.memset.com/v2.0",
|
|
|
|
}},
|
2014-11-24 13:05:10 +01:00
|
|
|
}, {
|
|
|
|
Name: "tenant",
|
|
|
|
Help: "Tenant name - optional",
|
2015-03-04 18:09:53 +01:00
|
|
|
}, {
|
|
|
|
Name: "region",
|
|
|
|
Help: "Region name - optional",
|
2014-03-15 17:06:11 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2015-09-23 08:57:48 +02:00
|
|
|
// snet = flag.Bool("swift-snet", false, "Use internal service network") // FIXME not implemented
|
|
|
|
pflag.VarP(&chunkSize, "swift-chunk-size", "", "Above this size files will be chunked into a _segments container.")
|
2013-06-27 21:13:07 +02:00
|
|
|
}
|
|
|
|
|
2012-12-26 13:23:58 +01:00
|
|
|
// FsSwift represents a remote swift server
|
|
|
|
type FsSwift struct {
|
2015-08-22 17:53:11 +02:00
|
|
|
name string // name of this remote
|
2012-12-26 13:23:58 +01:00
|
|
|
c swift.Connection // the connection to the swift server
|
|
|
|
container string // the container we are working on
|
2013-06-27 20:51:03 +02:00
|
|
|
root string // the path we are working on if any
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// FsObjectSwift describes a swift object
|
|
|
|
//
|
|
|
|
// Will definitely have info but maybe not meta
|
|
|
|
type FsObjectSwift struct {
|
2015-09-24 18:41:16 +02:00
|
|
|
swift *FsSwift // what this object is part of
|
|
|
|
remote string // The remote path
|
|
|
|
info swift.Object // Info from the swift object if known
|
|
|
|
headers *swift.Headers // The object headers if known
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// Name of the remote (as passed into NewFs)
|
2015-08-22 17:53:11 +02:00
|
|
|
func (f *FsSwift) Name() string {
|
|
|
|
return f.name
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// Root of the remote (as passed into NewFs)
|
2015-09-01 21:45:27 +02:00
|
|
|
func (f *FsSwift) Root() string {
|
|
|
|
if f.root == "" {
|
|
|
|
return f.container
|
|
|
|
}
|
|
|
|
return f.container + "/" + f.root
|
|
|
|
}
|
|
|
|
|
2012-12-31 17:40:34 +01:00
|
|
|
// String converts this FsSwift to a string
|
|
|
|
func (f *FsSwift) String() string {
|
2014-05-05 18:30:55 +02:00
|
|
|
if f.root == "" {
|
|
|
|
return fmt.Sprintf("Swift container %s", f.container)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("Swift container %s path %s", f.container, f.root)
|
2012-12-31 17:40:34 +01:00
|
|
|
}
|
|
|
|
|
2014-03-15 17:06:11 +01:00
|
|
|
// Pattern to match a swift path
|
|
|
|
var matcher = regexp.MustCompile(`^([^/]*)(.*)$`)
|
|
|
|
|
2012-12-29 12:35:41 +01:00
|
|
|
// parseParse parses a swift 'url'
|
|
|
|
func parsePath(path string) (container, directory string, err error) {
|
2014-03-15 17:06:11 +01:00
|
|
|
parts := matcher.FindStringSubmatch(path)
|
|
|
|
if parts == nil {
|
|
|
|
err = fmt.Errorf("Couldn't find container in swift path %q", path)
|
2012-12-29 12:35:41 +01:00
|
|
|
} else {
|
2014-03-15 17:06:11 +01:00
|
|
|
container, directory = parts[1], parts[2]
|
2012-12-29 12:35:41 +01:00
|
|
|
directory = strings.Trim(directory, "/")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// swiftConnection makes a connection to swift
|
2014-03-15 17:06:11 +01:00
|
|
|
func swiftConnection(name string) (*swift.Connection, error) {
|
|
|
|
userName := fs.ConfigFile.MustValue(name, "user")
|
|
|
|
if userName == "" {
|
|
|
|
return nil, errors.New("user not found")
|
2012-12-29 12:35:41 +01:00
|
|
|
}
|
2014-03-15 17:06:11 +01:00
|
|
|
apiKey := fs.ConfigFile.MustValue(name, "key")
|
|
|
|
if apiKey == "" {
|
|
|
|
return nil, errors.New("key not found")
|
2012-12-29 12:35:41 +01:00
|
|
|
}
|
2015-09-22 19:47:16 +02:00
|
|
|
authURL := fs.ConfigFile.MustValue(name, "auth")
|
|
|
|
if authURL == "" {
|
2014-03-15 17:06:11 +01:00
|
|
|
return nil, errors.New("auth not found")
|
2012-12-29 12:35:41 +01:00
|
|
|
}
|
|
|
|
c := &swift.Connection{
|
2015-05-10 12:25:54 +02:00
|
|
|
UserName: userName,
|
|
|
|
ApiKey: apiKey,
|
2015-09-22 19:47:16 +02:00
|
|
|
AuthUrl: authURL,
|
2015-05-10 12:25:54 +02:00
|
|
|
UserAgent: fs.UserAgent,
|
|
|
|
Tenant: fs.ConfigFile.MustValue(name, "tenant"),
|
|
|
|
Region: fs.ConfigFile.MustValue(name, "region"),
|
|
|
|
ConnectTimeout: 10 * fs.Config.ConnectTimeout, // Use the timeouts in the transport
|
|
|
|
Timeout: 10 * fs.Config.Timeout, // Use the timeouts in the transport
|
|
|
|
Transport: fs.Config.Transport(),
|
2012-12-29 12:35:41 +01:00
|
|
|
}
|
|
|
|
err := c.Authenticate()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
// NewFs contstructs an FsSwift from the path, container:path
|
2014-05-05 20:52:52 +02:00
|
|
|
func NewFs(name, root string) (fs.Fs, error) {
|
|
|
|
container, directory, err := parsePath(root)
|
2012-12-29 12:35:41 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-15 17:06:11 +01:00
|
|
|
c, err := swiftConnection(name)
|
2012-12-29 12:35:41 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-05-05 18:30:55 +02:00
|
|
|
f := &FsSwift{
|
2015-08-22 17:53:11 +02:00
|
|
|
name: name,
|
2014-05-05 18:30:55 +02:00
|
|
|
c: *c,
|
|
|
|
container: container,
|
|
|
|
root: directory,
|
|
|
|
}
|
2014-05-05 20:52:52 +02:00
|
|
|
if f.root != "" {
|
|
|
|
f.root += "/"
|
|
|
|
// Check to see if the object exists
|
|
|
|
_, _, err = f.c.Object(container, directory)
|
|
|
|
if err == nil {
|
|
|
|
remote := path.Base(directory)
|
|
|
|
f.root = path.Dir(directory)
|
|
|
|
if f.root == "." {
|
|
|
|
f.root = ""
|
|
|
|
} else {
|
|
|
|
f.root += "/"
|
|
|
|
}
|
|
|
|
obj := f.NewFsObject(remote)
|
|
|
|
// return a Fs Limited to this object
|
|
|
|
return fs.NewLimited(f, obj), nil
|
|
|
|
}
|
|
|
|
}
|
2012-12-29 12:35:41 +01:00
|
|
|
return f, nil
|
|
|
|
}
|
|
|
|
|
2012-12-26 13:23:58 +01:00
|
|
|
// Return an FsObject from a path
|
|
|
|
//
|
|
|
|
// May return nil if an error occurred
|
2014-07-29 18:50:07 +02:00
|
|
|
func (f *FsSwift) newFsObjectWithInfo(remote string, info *swift.Object) fs.Object {
|
2012-12-26 13:23:58 +01:00
|
|
|
fs := &FsObjectSwift{
|
|
|
|
swift: f,
|
|
|
|
remote: remote,
|
|
|
|
}
|
|
|
|
if info != nil {
|
2015-09-24 18:41:16 +02:00
|
|
|
// Set info but not headers
|
2012-12-26 13:23:58 +01:00
|
|
|
fs.info = *info
|
|
|
|
} else {
|
2015-09-24 18:41:16 +02:00
|
|
|
err := fs.readMetaData() // reads info and headers, returning an error
|
2012-12-26 13:23:58 +01:00
|
|
|
if err != nil {
|
2012-12-31 17:40:34 +01:00
|
|
|
// logged already FsDebug("Failed to read info: %s", err)
|
2012-12-26 13:23:58 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fs
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// NewFsObject returns an FsObject from a path
|
2012-12-26 13:23:58 +01:00
|
|
|
//
|
|
|
|
// May return nil if an error occurred
|
2013-06-28 09:57:32 +02:00
|
|
|
func (f *FsSwift) NewFsObject(remote string) fs.Object {
|
2014-07-29 18:50:07 +02:00
|
|
|
return f.newFsObjectWithInfo(remote, nil)
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
2014-05-05 18:30:55 +02:00
|
|
|
// list the objects into the function supplied
|
|
|
|
//
|
|
|
|
// If directories is set it only sends directories
|
|
|
|
func (f *FsSwift) list(directories bool, fn func(string, *swift.Object)) {
|
|
|
|
// Options for ObjectsWalk
|
|
|
|
opts := swift.ObjectsOpts{
|
|
|
|
Prefix: f.root,
|
|
|
|
Limit: 256,
|
|
|
|
}
|
|
|
|
if directories {
|
|
|
|
opts.Delimiter = '/'
|
|
|
|
}
|
|
|
|
rootLength := len(f.root)
|
|
|
|
err := f.c.ObjectsWalk(f.container, &opts, func(opts *swift.ObjectsOpts) (interface{}, error) {
|
|
|
|
objects, err := f.c.Objects(f.container, opts)
|
|
|
|
if err == nil {
|
|
|
|
for i := range objects {
|
|
|
|
object := &objects[i]
|
|
|
|
// FIXME if there are no directories, swift gives back the files for some reason!
|
2014-07-24 23:51:10 +02:00
|
|
|
if directories {
|
|
|
|
if !strings.HasSuffix(object.Name, "/") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
object.Name = object.Name[:len(object.Name)-1]
|
2014-05-05 18:30:55 +02:00
|
|
|
}
|
|
|
|
if !strings.HasPrefix(object.Name, f.root) {
|
|
|
|
fs.Log(f, "Odd name received %q", object.Name)
|
|
|
|
continue
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
2014-05-05 18:30:55 +02:00
|
|
|
remote := object.Name[rootLength:]
|
|
|
|
fn(remote, object)
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-05 18:30:55 +02:00
|
|
|
return objects, err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
fs.Stats.Error()
|
2015-08-08 21:10:31 +02:00
|
|
|
fs.ErrorLog(f, "Couldn't read container %q: %s", f.container, err)
|
2014-05-05 18:30:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// List walks the path returning a channel of FsObjects
|
2014-05-05 18:30:55 +02:00
|
|
|
func (f *FsSwift) List() fs.ObjectsChan {
|
|
|
|
out := make(fs.ObjectsChan, fs.Config.Checkers)
|
|
|
|
if f.container == "" {
|
|
|
|
// Return no objects at top level list
|
2012-12-26 13:23:58 +01:00
|
|
|
close(out)
|
2014-05-05 18:30:55 +02:00
|
|
|
fs.Stats.Error()
|
2015-08-08 21:10:31 +02:00
|
|
|
fs.ErrorLog(f, "Can't list objects at root - choose a container using lsd")
|
2014-05-05 18:30:55 +02:00
|
|
|
} else {
|
|
|
|
// List the objects
|
|
|
|
go func() {
|
|
|
|
defer close(out)
|
|
|
|
f.list(false, func(remote string, object *swift.Object) {
|
2014-07-29 18:50:07 +02:00
|
|
|
if fs := f.newFsObjectWithInfo(remote, object); fs != nil {
|
2014-05-05 18:30:55 +02:00
|
|
|
out <- fs
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}()
|
|
|
|
}
|
2012-12-26 13:23:58 +01:00
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// ListDir lists the containers
|
2013-06-28 09:57:32 +02:00
|
|
|
func (f *FsSwift) ListDir() fs.DirChan {
|
|
|
|
out := make(fs.DirChan, fs.Config.Checkers)
|
2014-05-05 18:30:55 +02:00
|
|
|
if f.container == "" {
|
|
|
|
// List the containers
|
|
|
|
go func() {
|
|
|
|
defer close(out)
|
|
|
|
containers, err := f.c.ContainersAll(nil)
|
|
|
|
if err != nil {
|
|
|
|
fs.Stats.Error()
|
2015-08-08 21:10:31 +02:00
|
|
|
fs.ErrorLog(f, "Couldn't list containers: %v", err)
|
2014-05-05 18:30:55 +02:00
|
|
|
} else {
|
|
|
|
for _, container := range containers {
|
|
|
|
out <- &fs.Dir{
|
|
|
|
Name: container.Name,
|
|
|
|
Bytes: container.Bytes,
|
|
|
|
Count: container.Count,
|
|
|
|
}
|
2013-01-23 23:43:20 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-05 18:30:55 +02:00
|
|
|
}()
|
|
|
|
} else {
|
|
|
|
// List the directories in the path in the container
|
|
|
|
go func() {
|
|
|
|
defer close(out)
|
|
|
|
f.list(true, func(remote string, object *swift.Object) {
|
|
|
|
out <- &fs.Dir{
|
|
|
|
Name: remote,
|
|
|
|
Bytes: object.Bytes,
|
|
|
|
Count: 0,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}()
|
|
|
|
}
|
2013-01-23 23:43:20 +01:00
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2014-04-18 18:04:21 +02:00
|
|
|
// Put the object into the container
|
2013-01-10 22:58:46 +01:00
|
|
|
//
|
|
|
|
// Copy the reader in to the new object which is returned
|
|
|
|
//
|
2014-04-18 18:04:21 +02:00
|
|
|
// The new object may have been created if an error is returned
|
2013-06-28 09:57:32 +02:00
|
|
|
func (f *FsSwift) Put(in io.Reader, remote string, modTime time.Time, size int64) (fs.Object, error) {
|
2012-12-26 13:23:58 +01:00
|
|
|
// Temporary FsObject under construction
|
2013-01-10 22:58:46 +01:00
|
|
|
fs := &FsObjectSwift{swift: f, remote: remote}
|
2014-04-18 18:04:21 +02:00
|
|
|
return fs, fs.Update(in, modTime, size)
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mkdir creates the container if it doesn't exist
|
|
|
|
func (f *FsSwift) Mkdir() error {
|
|
|
|
return f.c.ContainerCreate(f.container, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rmdir deletes the container
|
|
|
|
//
|
|
|
|
// Returns an error if it isn't empty
|
|
|
|
func (f *FsSwift) Rmdir() error {
|
|
|
|
return f.c.ContainerDelete(f.container)
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// Precision of the remote
|
|
|
|
func (f *FsSwift) Precision() time.Duration {
|
2013-01-19 00:21:02 +01:00
|
|
|
return time.Nanosecond
|
|
|
|
}
|
|
|
|
|
2015-02-14 19:48:08 +01:00
|
|
|
// Copy src to this remote using server side copy operations.
|
|
|
|
//
|
|
|
|
// This is stored with the remote path given
|
|
|
|
//
|
|
|
|
// It returns the destination Object and a possible error
|
|
|
|
//
|
|
|
|
// Will only be called if src.Fs().Name() == f.Name()
|
|
|
|
//
|
|
|
|
// If it isn't possible then return fs.ErrorCantCopy
|
|
|
|
func (f *FsSwift) Copy(src fs.Object, remote string) (fs.Object, error) {
|
|
|
|
srcObj, ok := src.(*FsObjectSwift)
|
|
|
|
if !ok {
|
|
|
|
fs.Debug(src, "Can't copy - not same remote type")
|
|
|
|
return nil, fs.ErrorCantCopy
|
|
|
|
}
|
|
|
|
srcFs := srcObj.swift
|
|
|
|
_, err := f.c.ObjectCopy(srcFs.container, srcFs.root+srcObj.remote, f.container, f.root+remote, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return f.NewFsObject(remote), nil
|
|
|
|
}
|
|
|
|
|
2012-12-26 13:23:58 +01:00
|
|
|
// ------------------------------------------------------------
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// Fs returns the parent Fs
|
2014-03-28 18:56:04 +01:00
|
|
|
func (o *FsObjectSwift) Fs() fs.Fs {
|
|
|
|
return o.swift
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a string version
|
|
|
|
func (o *FsObjectSwift) String() string {
|
|
|
|
if o == nil {
|
|
|
|
return "<nil>"
|
|
|
|
}
|
|
|
|
return o.remote
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// Remote returns the remote path
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) Remote() string {
|
|
|
|
return o.remote
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Md5sum returns the Md5sum of an object returning a lowercase hex string
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) Md5sum() (string, error) {
|
2015-09-23 08:57:48 +02:00
|
|
|
isManifest, err := o.isManifestFile()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if isManifest {
|
|
|
|
fs.Debug(o, "Return empty md5 for swift manifest file. Md5 of manifest file calculate as md5 of md5 of it's parts, so it's not original md5")
|
|
|
|
return "", nil
|
|
|
|
}
|
2013-06-27 21:13:07 +02:00
|
|
|
return strings.ToLower(o.info.Hash), nil
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
2015-09-23 08:57:48 +02:00
|
|
|
// isManifestFile checks for manifest header
|
|
|
|
func (o *FsObjectSwift) isManifestFile() (bool, error) {
|
|
|
|
err := o.readMetaData()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
_, isManifestFile := (*o.headers)["X-Object-Manifest"]
|
|
|
|
return isManifestFile, nil
|
|
|
|
}
|
|
|
|
|
2012-12-26 13:23:58 +01:00
|
|
|
// Size returns the size of an object in bytes
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) Size() int64 {
|
|
|
|
return o.info.Bytes
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// readMetaData gets the metadata if it hasn't already been fetched
|
|
|
|
//
|
|
|
|
// it also sets the info
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) readMetaData() (err error) {
|
2015-09-24 18:41:16 +02:00
|
|
|
if o.headers != nil {
|
2012-12-26 13:23:58 +01:00
|
|
|
return nil
|
|
|
|
}
|
2014-05-05 18:30:55 +02:00
|
|
|
info, h, err := o.swift.c.Object(o.swift.container, o.swift.root+o.remote)
|
2012-12-26 13:23:58 +01:00
|
|
|
if err != nil {
|
2013-06-28 09:57:32 +02:00
|
|
|
fs.Debug(o, "Failed to read info: %s", err)
|
2012-12-26 13:23:58 +01:00
|
|
|
return err
|
|
|
|
}
|
2013-06-27 21:13:07 +02:00
|
|
|
o.info = info
|
2015-09-24 18:41:16 +02:00
|
|
|
o.headers = &h
|
2012-12-26 13:23:58 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ModTime returns the modification time of the object
|
2013-01-02 16:21:55 +01:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// It attempts to read the objects mtime and if that isn't present the
|
|
|
|
// LastModified returned in the http headers
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) ModTime() time.Time {
|
|
|
|
err := o.readMetaData()
|
2012-12-26 13:23:58 +01:00
|
|
|
if err != nil {
|
2013-06-28 09:57:32 +02:00
|
|
|
// fs.Log(o, "Failed to read metadata: %s", err)
|
2013-06-27 21:13:07 +02:00
|
|
|
return o.info.LastModified
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
2015-09-24 18:41:16 +02:00
|
|
|
modTime, err := o.headers.ObjectMetadata().GetModTime()
|
2012-12-26 13:23:58 +01:00
|
|
|
if err != nil {
|
2013-06-28 09:57:32 +02:00
|
|
|
// fs.Log(o, "Failed to read mtime from object: %s", err)
|
2013-06-27 21:13:07 +02:00
|
|
|
return o.info.LastModified
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
2013-01-02 16:21:55 +01:00
|
|
|
return modTime
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// SetModTime sets the modification time of the local fs object
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) SetModTime(modTime time.Time) {
|
|
|
|
err := o.readMetaData()
|
2012-12-26 13:23:58 +01:00
|
|
|
if err != nil {
|
2013-06-27 21:13:07 +02:00
|
|
|
fs.Stats.Error()
|
2015-08-08 21:10:31 +02:00
|
|
|
fs.ErrorLog(o, "Failed to read metadata: %s", err)
|
2012-12-26 13:23:58 +01:00
|
|
|
return
|
|
|
|
}
|
2015-09-24 18:41:16 +02:00
|
|
|
meta := o.headers.ObjectMetadata()
|
|
|
|
meta.SetModTime(modTime)
|
|
|
|
newHeaders := meta.ObjectHeaders()
|
|
|
|
for k, v := range newHeaders {
|
|
|
|
(*o.headers)[k] = v
|
|
|
|
}
|
|
|
|
err = o.swift.c.ObjectUpdate(o.swift.container, o.swift.root+o.remote, newHeaders)
|
2012-12-26 13:23:58 +01:00
|
|
|
if err != nil {
|
2013-06-27 21:13:07 +02:00
|
|
|
fs.Stats.Error()
|
2015-08-08 21:10:31 +02:00
|
|
|
fs.ErrorLog(o, "Failed to update remote mtime: %s", err)
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-22 19:47:16 +02:00
|
|
|
// Storable returns if this object is storable
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) Storable() bool {
|
2012-12-26 13:23:58 +01:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open an object for read
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) Open() (in io.ReadCloser, err error) {
|
2014-05-05 18:30:55 +02:00
|
|
|
in, _, err = o.swift.c.ObjectOpen(o.swift.container, o.swift.root+o.remote, true, nil)
|
2012-12-26 13:23:58 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-23 08:57:48 +02:00
|
|
|
// min returns the smallest of x, y
|
|
|
|
func min(x, y int64) int64 {
|
|
|
|
if x < y {
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
return y
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsToSwiftFloatString turns a number of ns into a floating point
|
|
|
|
// string in seconds the same way as the "swift" tool
|
|
|
|
func nsToSwiftFloatString(ns int64) string {
|
|
|
|
if ns < 0 {
|
|
|
|
return "-" + nsToSwiftFloatString(-ns)
|
|
|
|
}
|
|
|
|
result := fmt.Sprintf("%010d", ns)
|
|
|
|
split := len(result) - 9
|
|
|
|
result, decimals := result[:split], result[split:split+2]
|
|
|
|
if decimals != "" {
|
|
|
|
result += "."
|
|
|
|
result += decimals
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2014-04-18 18:04:21 +02:00
|
|
|
// Update the object with the contents of the io.Reader, modTime and size
|
|
|
|
//
|
|
|
|
// The new object may have been created if an error is returned
|
|
|
|
func (o *FsObjectSwift) Update(in io.Reader, modTime time.Time, size int64) error {
|
|
|
|
// Set the mtime
|
|
|
|
m := swift.Metadata{}
|
|
|
|
m.SetModTime(modTime)
|
2015-09-23 08:57:48 +02:00
|
|
|
if size > int64(chunkSize) {
|
|
|
|
segmentsContainerName := o.swift.container + "_segments"
|
|
|
|
left := size
|
|
|
|
i := 0
|
|
|
|
nowFloat := nsToSwiftFloatString(time.Now().UnixNano())
|
|
|
|
for left > 0 {
|
|
|
|
n := min(left, int64(chunkSize))
|
|
|
|
segmentReader := io.LimitReader(in, n)
|
|
|
|
segmentPath := fmt.Sprintf("%s%s/%s/%d/%08d", o.swift.root, o.remote, nowFloat, size, i)
|
|
|
|
_, err := o.swift.c.ObjectPut(segmentsContainerName, segmentPath, segmentReader, true, "", "", m.ObjectHeaders())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
left -= n
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
manifestHeaders := swift.Headers{"X-Object-Manifest": fmt.Sprintf("%s/%s%s/%s/%d", segmentsContainerName, o.swift.root, o.remote, nowFloat, size)}
|
|
|
|
for k, v := range m.ObjectHeaders() {
|
|
|
|
manifestHeaders[k] = v
|
|
|
|
}
|
|
|
|
emptyReader := bytes.NewReader(nil)
|
|
|
|
manifestName := o.swift.root + o.remote
|
|
|
|
_, err := o.swift.c.ObjectPut(o.swift.container, manifestName, emptyReader, true, "", "", manifestHeaders)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// remove old segments
|
|
|
|
segmentsPath := fmt.Sprintf("%s/%s%s/", segmentsContainerName, o.swift.root, o.remote)
|
|
|
|
segmentsFs, err := NewFs(o.swift.name, segmentsPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for o := range segmentsFs.List() {
|
|
|
|
if !strings.HasPrefix(o.Remote(), nowFloat) {
|
|
|
|
fs.Log(o, "Remove old file segment '%s'", o.Remote())
|
|
|
|
err := o.Remove()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_, err := o.swift.c.ObjectPut(o.swift.container, o.swift.root+o.remote, in, true, "", "", m.ObjectHeaders())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-07-19 13:36:56 +02:00
|
|
|
}
|
|
|
|
// Read the metadata from the newly created object
|
2015-09-24 18:41:16 +02:00
|
|
|
o.headers = nil // wipe old metadata
|
2015-09-23 08:57:48 +02:00
|
|
|
return o.readMetaData()
|
2014-04-18 18:04:21 +02:00
|
|
|
}
|
|
|
|
|
2012-12-26 13:23:58 +01:00
|
|
|
// Remove an object
|
2013-06-27 21:13:07 +02:00
|
|
|
func (o *FsObjectSwift) Remove() error {
|
2015-09-23 08:57:48 +02:00
|
|
|
isManifestFile, err := o.isManifestFile()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if isManifestFile {
|
|
|
|
// remove segments
|
|
|
|
segmentsContainerName := o.swift.container + "_segments"
|
|
|
|
segmentsPath := fmt.Sprintf("%s/%s%s/", segmentsContainerName, o.swift.root, o.remote)
|
|
|
|
segmentsFs, err := NewFs(o.swift.name, segmentsPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for o := range segmentsFs.List() {
|
|
|
|
err := o.Remove()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-05 18:30:55 +02:00
|
|
|
return o.swift.c.ObjectDelete(o.swift.container, o.swift.root+o.remote)
|
2012-12-26 13:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check the interfaces are satisfied
|
2013-06-27 21:13:07 +02:00
|
|
|
var _ fs.Fs = &FsSwift{}
|
2015-02-14 19:48:08 +01:00
|
|
|
var _ fs.Copier = &FsSwift{}
|
2013-06-28 09:57:32 +02:00
|
|
|
var _ fs.Object = &FsObjectSwift{}
|