2013-08-13 23:26:51 -07:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
2021-09-12 22:47:52 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2013-08-13 23:26:51 -07:00
|
|
|
"io"
|
|
|
|
"mime"
|
2015-12-14 22:38:58 -08:00
|
|
|
"net/url"
|
2013-08-13 23:26:51 -07:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2014-10-26 11:34:55 -07:00
|
|
|
|
2020-03-08 21:39:33 -07:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2016-06-02 18:09:14 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2013-08-13 23:26:51 -07:00
|
|
|
)
|
|
|
|
|
2013-08-14 10:07:42 -07:00
|
|
|
type FilePart struct {
|
2014-03-09 23:54:07 -07:00
|
|
|
Reader io.Reader
|
|
|
|
FileName string
|
|
|
|
FileSize int64
|
|
|
|
MimeType string
|
|
|
|
ModTime int64 //in seconds
|
|
|
|
Replication string
|
|
|
|
Collection string
|
2017-01-09 23:34:07 +08:00
|
|
|
DataCenter string
|
2014-09-20 12:38:59 -07:00
|
|
|
Ttl string
|
2020-12-16 09:14:05 -08:00
|
|
|
DiskType string
|
2014-03-09 23:54:07 -07:00
|
|
|
Server string //this comes from assign result
|
|
|
|
Fid string //this comes from assign result, but customizable
|
2020-05-10 03:50:30 -07:00
|
|
|
Fsync bool
|
2013-08-14 10:07:42 -07:00
|
|
|
}
|
|
|
|
|
2013-08-13 23:26:51 -07:00
|
|
|
type SubmitResult struct {
|
2014-04-15 10:01:13 -07:00
|
|
|
FileName string `json:"fileName,omitempty"`
|
2021-01-03 01:44:22 -08:00
|
|
|
FileUrl string `json:"url,omitempty"`
|
2014-04-15 10:01:13 -07:00
|
|
|
Fid string `json:"fid,omitempty"`
|
|
|
|
Size uint32 `json:"size,omitempty"`
|
|
|
|
Error string `json:"error,omitempty"`
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
|
|
|
|
2021-09-12 22:47:52 -07:00
|
|
|
type GetMasterFn func() pb.ServerAddress
|
2021-02-17 20:55:55 -08:00
|
|
|
|
|
|
|
func SubmitFiles(masterFn GetMasterFn, grpcDialOption grpc.DialOption, files []FilePart, replication string, collection string, dataCenter string, ttl string, diskType string, maxMB int, usePublicUrl bool) ([]SubmitResult, error) {
|
2013-08-13 23:26:51 -07:00
|
|
|
results := make([]SubmitResult, len(files))
|
|
|
|
for index, file := range files {
|
2013-08-14 10:07:42 -07:00
|
|
|
results[index].FileName = file.FileName
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
2016-06-26 10:50:18 +08:00
|
|
|
ar := &VolumeAssignRequest{
|
|
|
|
Count: uint64(len(files)),
|
|
|
|
Replication: replication,
|
|
|
|
Collection: collection,
|
2017-01-09 23:34:07 +08:00
|
|
|
DataCenter: dataCenter,
|
2016-06-26 10:50:18 +08:00
|
|
|
Ttl: ttl,
|
2020-12-16 09:14:05 -08:00
|
|
|
DiskType: diskType,
|
2016-06-26 10:50:18 +08:00
|
|
|
}
|
2021-02-17 20:55:55 -08:00
|
|
|
ret, err := Assign(masterFn, grpcDialOption, ar)
|
2013-08-13 23:26:51 -07:00
|
|
|
if err != nil {
|
2020-03-08 21:39:33 -07:00
|
|
|
for index := range files {
|
2013-08-13 23:26:51 -07:00
|
|
|
results[index].Error = err.Error()
|
|
|
|
}
|
|
|
|
return results, err
|
|
|
|
}
|
|
|
|
for index, file := range files {
|
2014-03-09 18:50:45 -07:00
|
|
|
file.Fid = ret.Fid
|
2013-08-13 23:26:51 -07:00
|
|
|
if index > 0 {
|
2014-03-09 18:50:45 -07:00
|
|
|
file.Fid = file.Fid + "_" + strconv.Itoa(index)
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
2015-03-09 01:10:01 -07:00
|
|
|
file.Server = ret.Url
|
2020-03-18 10:50:53 -07:00
|
|
|
if usePublicUrl {
|
|
|
|
file.Server = ret.PublicUrl
|
|
|
|
}
|
2014-03-09 23:54:07 -07:00
|
|
|
file.Replication = replication
|
|
|
|
file.Collection = collection
|
2017-01-09 23:34:07 +08:00
|
|
|
file.DataCenter = dataCenter
|
2020-12-13 00:58:58 -08:00
|
|
|
file.Ttl = ttl
|
2020-12-13 11:59:32 -08:00
|
|
|
file.DiskType = diskType
|
2021-02-17 20:55:55 -08:00
|
|
|
results[index].Size, err = file.Upload(maxMB, masterFn, usePublicUrl, ret.Auth, grpcDialOption)
|
2013-08-13 23:26:51 -07:00
|
|
|
if err != nil {
|
|
|
|
results[index].Error = err.Error()
|
|
|
|
}
|
2014-03-09 18:50:45 -07:00
|
|
|
results[index].Fid = file.Fid
|
2015-04-16 11:37:05 -07:00
|
|
|
results[index].FileUrl = ret.PublicUrl + "/" + file.Fid
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
|
|
|
return results, nil
|
|
|
|
}
|
|
|
|
|
2013-08-14 10:07:42 -07:00
|
|
|
func NewFileParts(fullPathFilenames []string) (ret []FilePart, err error) {
|
|
|
|
ret = make([]FilePart, len(fullPathFilenames))
|
|
|
|
for index, file := range fullPathFilenames {
|
2013-11-18 21:47:31 -08:00
|
|
|
if ret[index], err = newFilePart(file); err != nil {
|
2013-08-14 10:07:42 -07:00
|
|
|
return
|
|
|
|
}
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
2013-08-14 10:07:42 -07:00
|
|
|
return
|
|
|
|
}
|
2013-11-18 21:47:31 -08:00
|
|
|
func newFilePart(fullPathFilename string) (ret FilePart, err error) {
|
2013-08-14 10:07:42 -07:00
|
|
|
fh, openErr := os.Open(fullPathFilename)
|
|
|
|
if openErr != nil {
|
|
|
|
glog.V(0).Info("Failed to open file: ", fullPathFilename)
|
|
|
|
return ret, openErr
|
|
|
|
}
|
2013-08-14 11:31:39 -07:00
|
|
|
ret.Reader = fh
|
2013-08-14 10:07:42 -07:00
|
|
|
|
2017-01-04 11:23:40 +08:00
|
|
|
fi, fiErr := fh.Stat()
|
|
|
|
if fiErr != nil {
|
2013-08-14 10:07:42 -07:00
|
|
|
glog.V(0).Info("Failed to stat file:", fullPathFilename)
|
|
|
|
return ret, fiErr
|
|
|
|
}
|
2017-01-04 11:23:40 +08:00
|
|
|
ret.ModTime = fi.ModTime().UTC().Unix()
|
|
|
|
ret.FileSize = fi.Size()
|
2013-08-14 10:07:42 -07:00
|
|
|
ext := strings.ToLower(path.Ext(fullPathFilename))
|
2018-02-26 08:01:23 -08:00
|
|
|
ret.FileName = fi.Name()
|
2013-08-14 10:07:42 -07:00
|
|
|
if ext != "" {
|
|
|
|
ret.MimeType = mime.TypeByExtension(ext)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2021-02-17 20:55:55 -08:00
|
|
|
func (fi FilePart) Upload(maxMB int, masterFn GetMasterFn, usePublicUrl bool, jwt security.EncodedJwt, grpcDialOption grpc.DialOption) (retSize uint32, err error) {
|
2014-03-09 18:50:45 -07:00
|
|
|
fileUrl := "http://" + fi.Server + "/" + fi.Fid
|
2013-08-14 10:07:42 -07:00
|
|
|
if fi.ModTime != 0 {
|
|
|
|
fileUrl += "?ts=" + strconv.Itoa(int(fi.ModTime))
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
2020-04-30 23:31:08 +08:00
|
|
|
if fi.Fsync {
|
|
|
|
fileUrl += "?fsync=true"
|
|
|
|
}
|
2013-09-01 23:58:21 -07:00
|
|
|
if closer, ok := fi.Reader.(io.Closer); ok {
|
|
|
|
defer closer.Close()
|
2013-08-14 11:31:39 -07:00
|
|
|
}
|
2015-12-02 16:35:16 +08:00
|
|
|
baseName := path.Base(fi.FileName)
|
2013-11-18 21:47:31 -08:00
|
|
|
if maxMB > 0 && fi.FileSize > int64(maxMB*1024*1024) {
|
|
|
|
chunkSize := int64(maxMB * 1024 * 1024)
|
|
|
|
chunks := fi.FileSize/chunkSize + 1
|
2015-12-02 15:00:46 +08:00
|
|
|
cm := ChunkManifest{
|
2015-12-02 16:35:16 +08:00
|
|
|
Name: baseName,
|
2015-12-02 15:00:46 +08:00
|
|
|
Size: fi.FileSize,
|
|
|
|
Mime: fi.MimeType,
|
|
|
|
Chunks: make([]*ChunkInfo, 0, chunks),
|
|
|
|
}
|
|
|
|
|
2017-01-09 23:34:07 +08:00
|
|
|
var ret *AssignResult
|
|
|
|
var id string
|
|
|
|
if fi.DataCenter != "" {
|
|
|
|
ar := &VolumeAssignRequest{
|
|
|
|
Count: uint64(chunks),
|
|
|
|
Replication: fi.Replication,
|
|
|
|
Collection: fi.Collection,
|
|
|
|
Ttl: fi.Ttl,
|
2020-12-16 09:14:05 -08:00
|
|
|
DiskType: fi.DiskType,
|
2017-01-09 23:34:07 +08:00
|
|
|
}
|
2021-02-17 20:55:55 -08:00
|
|
|
ret, err = Assign(masterFn, grpcDialOption, ar)
|
2017-01-09 23:34:07 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2013-11-18 21:47:31 -08:00
|
|
|
for i := int64(0); i < chunks; i++ {
|
2017-01-09 23:34:07 +08:00
|
|
|
if fi.DataCenter == "" {
|
|
|
|
ar := &VolumeAssignRequest{
|
|
|
|
Count: 1,
|
|
|
|
Replication: fi.Replication,
|
|
|
|
Collection: fi.Collection,
|
|
|
|
Ttl: fi.Ttl,
|
2020-12-16 09:14:05 -08:00
|
|
|
DiskType: fi.DiskType,
|
2017-01-09 23:34:07 +08:00
|
|
|
}
|
2021-02-17 20:55:55 -08:00
|
|
|
ret, err = Assign(masterFn, grpcDialOption, ar)
|
2017-01-09 23:34:07 +08:00
|
|
|
if err != nil {
|
|
|
|
// delete all uploaded chunks
|
2021-02-17 20:55:55 -08:00
|
|
|
cm.DeleteChunks(masterFn, usePublicUrl, grpcDialOption)
|
2017-01-09 23:34:07 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
id = ret.Fid
|
|
|
|
} else {
|
|
|
|
id = ret.Fid
|
|
|
|
if i > 0 {
|
|
|
|
id += "_" + strconv.FormatInt(i, 10)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fileUrl := "http://" + ret.Url + "/" + id
|
2020-09-25 02:41:21 -07:00
|
|
|
if usePublicUrl {
|
|
|
|
fileUrl = "http://" + ret.PublicUrl + "/" + id
|
|
|
|
}
|
2017-01-09 23:34:07 +08:00
|
|
|
count, e := upload_one_chunk(
|
2015-12-02 16:35:16 +08:00
|
|
|
baseName+"-"+strconv.FormatInt(i+1, 10),
|
2015-02-07 15:35:28 -08:00
|
|
|
io.LimitReader(fi.Reader, chunkSize),
|
2021-02-17 20:55:55 -08:00
|
|
|
masterFn, fileUrl,
|
2019-02-15 00:09:19 -08:00
|
|
|
ret.Auth)
|
2013-11-18 21:47:31 -08:00
|
|
|
if e != nil {
|
2015-12-02 15:00:46 +08:00
|
|
|
// delete all uploaded chunks
|
2021-02-17 20:55:55 -08:00
|
|
|
cm.DeleteChunks(masterFn, usePublicUrl, grpcDialOption)
|
2013-11-18 21:47:31 -08:00
|
|
|
return 0, e
|
|
|
|
}
|
2015-12-02 15:00:46 +08:00
|
|
|
cm.Chunks = append(cm.Chunks,
|
|
|
|
&ChunkInfo{
|
|
|
|
Offset: i * chunkSize,
|
|
|
|
Size: int64(count),
|
|
|
|
Fid: id,
|
|
|
|
},
|
|
|
|
)
|
2013-11-18 21:47:31 -08:00
|
|
|
retSize += count
|
|
|
|
}
|
2015-12-02 15:00:46 +08:00
|
|
|
err = upload_chunked_file_manifest(fileUrl, &cm, jwt)
|
|
|
|
if err != nil {
|
|
|
|
// delete all uploaded chunks
|
2021-02-17 20:55:55 -08:00
|
|
|
cm.DeleteChunks(masterFn, usePublicUrl, grpcDialOption)
|
2015-12-02 15:00:46 +08:00
|
|
|
}
|
2013-11-18 21:47:31 -08:00
|
|
|
} else {
|
2021-09-06 16:20:49 -07:00
|
|
|
uploadOption := &UploadOption{
|
|
|
|
UploadUrl: fileUrl,
|
|
|
|
Filename: baseName,
|
|
|
|
Cipher: false,
|
|
|
|
IsInputCompressed: false,
|
|
|
|
MimeType: fi.MimeType,
|
|
|
|
PairMap: nil,
|
|
|
|
Jwt: jwt,
|
|
|
|
}
|
|
|
|
ret, e, _ := Upload(fi.Reader, uploadOption)
|
2013-11-18 21:47:31 -08:00
|
|
|
if e != nil {
|
|
|
|
return 0, e
|
|
|
|
}
|
|
|
|
return ret.Size, e
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|
2013-11-18 23:03:06 -08:00
|
|
|
return
|
2013-11-18 21:47:31 -08:00
|
|
|
}
|
|
|
|
|
2021-02-17 20:55:55 -08:00
|
|
|
func upload_one_chunk(filename string, reader io.Reader, masterFn GetMasterFn,
|
2019-02-15 00:09:48 -08:00
|
|
|
fileUrl string, jwt security.EncodedJwt,
|
2017-01-09 23:34:07 +08:00
|
|
|
) (size uint32, e error) {
|
2013-11-18 21:47:31 -08:00
|
|
|
glog.V(4).Info("Uploading part ", filename, " to ", fileUrl, "...")
|
2021-09-06 16:20:49 -07:00
|
|
|
uploadOption := &UploadOption{
|
|
|
|
UploadUrl: fileUrl,
|
|
|
|
Filename: filename,
|
|
|
|
Cipher: false,
|
|
|
|
IsInputCompressed: false,
|
|
|
|
MimeType: "",
|
|
|
|
PairMap: nil,
|
|
|
|
Jwt: jwt,
|
|
|
|
}
|
|
|
|
uploadResult, uploadError, _ := Upload(reader, uploadOption)
|
2013-11-19 02:12:56 -08:00
|
|
|
if uploadError != nil {
|
2017-01-09 23:34:07 +08:00
|
|
|
return 0, uploadError
|
2013-11-19 02:12:56 -08:00
|
|
|
}
|
2017-01-09 23:34:07 +08:00
|
|
|
return uploadResult.Size, nil
|
2013-11-18 21:47:31 -08:00
|
|
|
}
|
|
|
|
|
2015-12-02 15:00:46 +08:00
|
|
|
func upload_chunked_file_manifest(fileUrl string, manifest *ChunkManifest, jwt security.EncodedJwt) error {
|
2015-12-14 22:01:30 +08:00
|
|
|
buf, e := manifest.Marshal()
|
2015-12-02 15:00:46 +08:00
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
glog.V(4).Info("Uploading chunks manifest ", manifest.Name, " to ", fileUrl, "...")
|
|
|
|
u, _ := url.Parse(fileUrl)
|
|
|
|
q := u.Query()
|
2015-12-14 22:38:58 -08:00
|
|
|
q.Set("cm", "true")
|
2015-12-02 15:00:46 +08:00
|
|
|
u.RawQuery = q.Encode()
|
2021-09-06 16:20:49 -07:00
|
|
|
uploadOption := &UploadOption{
|
|
|
|
UploadUrl: u.String(),
|
|
|
|
Filename: manifest.Name,
|
|
|
|
Cipher: false,
|
|
|
|
IsInputCompressed: false,
|
|
|
|
MimeType: "application/json",
|
|
|
|
PairMap: nil,
|
|
|
|
Jwt: jwt,
|
|
|
|
}
|
|
|
|
_, e = UploadData(buf, uploadOption)
|
2013-11-18 21:47:31 -08:00
|
|
|
return e
|
2013-08-13 23:26:51 -07:00
|
|
|
}
|