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