seaweedfs/weed/operation/submit.go

270 lines
6.9 KiB
Go
Raw Normal View History

package operation
import (
"github.com/chrislusf/seaweedfs/weed/pb"
"io"
"mime"
2015-12-15 06:38:58 +00:00
"net/url"
"os"
"path"
"strconv"
"strings"
"google.golang.org/grpc"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/security"
)
2013-08-14 17:07:42 +00:00
type FilePart struct {
Reader io.Reader
FileName string
FileSize int64
MimeType string
ModTime int64 //in seconds
Replication string
Collection string
DataCenter string
Ttl string
2020-12-16 17:14:05 +00:00
DiskType string
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
}
type SubmitResult struct {
2014-04-15 17:01:13 +00:00
FileName string `json:"fileName,omitempty"`
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"`
}
type GetMasterFn func() pb.ServerAddress
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) {
results := make([]SubmitResult, len(files))
for index, file := range files {
2013-08-14 17:07:42 +00:00
results[index].FileName = file.FileName
}
2016-06-26 02:50:18 +00:00
ar := &VolumeAssignRequest{
Count: uint64(len(files)),
Replication: replication,
Collection: collection,
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
}
ret, err := Assign(masterFn, grpcDialOption, ar)
if err != nil {
for index := range files {
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
if index > 0 {
2014-03-10 01:50:45 +00:00
file.Fid = file.Fid + "_" + strconv.Itoa(index)
}
file.Server = ret.Url
if usePublicUrl {
file.Server = ret.PublicUrl
}
file.Replication = replication
file.Collection = collection
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
results[index].Size, err = file.Upload(maxMB, masterFn, usePublicUrl, ret.Auth, grpcDialOption)
if err != nil {
results[index].Error = err.Error()
}
2014-03-10 01:50:45 +00:00
results[index].Fid = file.Fid
results[index].FileUrl = ret.PublicUrl + "/" + file.Fid
}
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 {
if ret[index], err = newFilePart(file); err != nil {
2013-08-14 17:07:42 +00:00
return
}
}
2013-08-14 17:07:42 +00:00
return
}
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
}
ret.Reader = fh
2013-08-14 17:07:42 +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
}
ret.ModTime = fi.ModTime().UTC().Unix()
ret.FileSize = fi.Size()
2013-08-14 17:07:42 +00:00
ext := strings.ToLower(path.Ext(fullPathFilename))
ret.FileName = fi.Name()
2013-08-14 17:07:42 +00:00
if ext != "" {
ret.MimeType = mime.TypeByExtension(ext)
}
return ret, nil
}
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))
}
2020-04-30 15:31:08 +00:00
if fi.Fsync {
fileUrl += "?fsync=true"
}
if closer, ok := fi.Reader.(io.Closer); ok {
defer closer.Close()
}
baseName := path.Base(fi.FileName)
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{
Name: baseName,
2015-12-02 07:00:46 +00:00
Size: fi.FileSize,
Mime: fi.MimeType,
Chunks: make([]*ChunkInfo, 0, chunks),
}
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,
}
ret, err = Assign(masterFn, grpcDialOption, ar)
if err != nil {
return
}
}
for i := int64(0); i < chunks; i++ {
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,
}
ret, err = Assign(masterFn, grpcDialOption, ar)
if err != nil {
// delete all uploaded chunks
cm.DeleteChunks(masterFn, usePublicUrl, grpcDialOption)
return
}
id = ret.Fid
} else {
id = ret.Fid
if i > 0 {
id += "_" + strconv.FormatInt(i, 10)
}
}
fileUrl := "http://" + ret.Url + "/" + id
if usePublicUrl {
fileUrl = "http://" + ret.PublicUrl + "/" + id
}
count, e := upload_one_chunk(
baseName+"-"+strconv.FormatInt(i+1, 10),
2015-02-07 23:35:28 +00:00
io.LimitReader(fi.Reader, chunkSize),
masterFn, fileUrl,
2019-02-15 08:09:19 +00:00
ret.Auth)
if e != nil {
2015-12-02 07:00:46 +00:00
// delete all uploaded chunks
cm.DeleteChunks(masterFn, usePublicUrl, grpcDialOption)
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,
},
)
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
cm.DeleteChunks(masterFn, usePublicUrl, grpcDialOption)
2015-12-02 07:00:46 +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)
if e != nil {
return 0, e
}
return ret.Size, e
}
return
}
func upload_one_chunk(filename string, reader io.Reader, masterFn GetMasterFn,
2019-02-15 08:09:48 +00:00
fileUrl string, jwt security.EncodedJwt,
) (size uint32, e error) {
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 {
return 0, uploadError
2013-11-19 10:12:56 +00:00
}
return uploadResult.Size, nil
}
2015-12-02 07:00:46 +00:00
func upload_chunked_file_manifest(fileUrl string, manifest *ChunkManifest, jwt security.EncodedJwt) error {
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)
return e
}