2020-11-17 16:29:00 +00:00
|
|
|
package blobstor
|
|
|
|
|
|
|
|
import (
|
2021-05-18 08:12:51 +00:00
|
|
|
"fmt"
|
2022-04-28 10:19:03 +00:00
|
|
|
"os"
|
2021-05-18 08:12:51 +00:00
|
|
|
|
2022-04-28 10:19:03 +00:00
|
|
|
"github.com/klauspost/compress/zstd"
|
2022-01-10 12:46:01 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
2021-09-06 14:28:07 +00:00
|
|
|
storagelog "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/internal/log"
|
2021-11-10 07:08:33 +00:00
|
|
|
objectSDK "github.com/nspcc-dev/neofs-sdk-go/object"
|
2022-05-31 17:00:41 +00:00
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
2020-11-17 16:29:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// PutPrm groups the parameters of Put operation.
|
|
|
|
type PutPrm struct {
|
2020-11-24 14:24:07 +00:00
|
|
|
rwObject
|
2020-11-17 16:29:00 +00:00
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// PutRes groups the resulting values of Put operation.
|
2020-11-24 14:24:07 +00:00
|
|
|
type PutRes struct {
|
|
|
|
roBlobovniczaID
|
2020-11-17 16:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Put saves the object in BLOB storage.
|
|
|
|
//
|
2020-11-24 14:24:07 +00:00
|
|
|
// If object is "big", BlobStor saves the object in shallow dir.
|
|
|
|
// Otherwise, BlobStor saves the object in blobonicza. In this
|
|
|
|
// case the identifier of blobovnicza is returned.
|
|
|
|
//
|
2020-11-17 16:29:00 +00:00
|
|
|
// Returns any error encountered that
|
|
|
|
// did not allow to completely save the object.
|
2022-05-31 12:18:32 +00:00
|
|
|
func (b *BlobStor) Put(prm PutPrm) (PutRes, error) {
|
2020-11-17 16:29:00 +00:00
|
|
|
// marshal object
|
|
|
|
data, err := prm.obj.Marshal()
|
|
|
|
if err != nil {
|
2022-05-31 12:18:32 +00:00
|
|
|
return PutRes{}, fmt.Errorf("could not marshal the object: %w", err)
|
2020-11-17 16:29:00 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 14:19:05 +00:00
|
|
|
return b.PutRaw(object.AddressOf(prm.obj), data, b.NeedsCompression(prm.obj))
|
2022-01-10 12:46:01 +00:00
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// NeedsCompression returns true if the object should be compressed.
|
|
|
|
// For an object to be compressed 2 conditions must hold:
|
2022-01-11 11:33:04 +00:00
|
|
|
// 1. Compression is enabled in settings.
|
|
|
|
// 2. Object MIME Content-Type is allowed for compression.
|
2022-03-03 14:19:05 +00:00
|
|
|
func (b *BlobStor) NeedsCompression(obj *objectSDK.Object) bool {
|
2022-07-05 13:47:39 +00:00
|
|
|
return b.cfg.CConfig.NeedsCompression(obj)
|
2021-04-19 10:00:56 +00:00
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// PutRaw saves an already marshaled object in BLOB storage.
|
2022-05-31 12:18:32 +00:00
|
|
|
func (b *BlobStor) PutRaw(addr oid.Address, data []byte, compress bool) (PutRes, error) {
|
2020-12-02 09:58:42 +00:00
|
|
|
big := b.isBig(data)
|
2020-11-17 16:29:00 +00:00
|
|
|
|
2020-12-02 09:58:42 +00:00
|
|
|
if big {
|
2022-04-28 10:19:03 +00:00
|
|
|
var err error
|
|
|
|
if compress {
|
|
|
|
err = b.fsTree.PutStream(addr, func(f *os.File) error {
|
|
|
|
enc, _ := zstd.NewWriter(f) // nil error if no options are provided
|
|
|
|
if _, err := enc.Write(data); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return enc.Close()
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
err = b.fsTree.Put(addr, data)
|
|
|
|
}
|
2021-09-06 14:28:07 +00:00
|
|
|
if err != nil {
|
2022-05-31 12:18:32 +00:00
|
|
|
return PutRes{}, err
|
2021-09-06 14:28:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
storagelog.Write(b.log, storagelog.AddressField(addr), storagelog.OpField("fstree PUT"))
|
|
|
|
|
2022-05-31 12:18:32 +00:00
|
|
|
return PutRes{}, nil
|
2021-01-11 15:21:06 +00:00
|
|
|
}
|
2020-11-26 07:44:34 +00:00
|
|
|
|
2022-04-28 10:19:03 +00:00
|
|
|
if compress {
|
2022-07-05 13:47:39 +00:00
|
|
|
data = b.CConfig.Compress(data)
|
2022-04-28 10:19:03 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 15:21:06 +00:00
|
|
|
// save object in blobovnicza
|
2022-07-05 13:47:39 +00:00
|
|
|
res, err := b.blobovniczas.Put(addr, data)
|
2021-01-11 15:21:06 +00:00
|
|
|
if err != nil {
|
2022-05-31 12:18:32 +00:00
|
|
|
return PutRes{}, err
|
2020-11-26 07:44:34 +00:00
|
|
|
}
|
2021-01-11 15:21:06 +00:00
|
|
|
|
2022-05-31 12:18:32 +00:00
|
|
|
return PutRes{
|
2021-01-11 15:21:06 +00:00
|
|
|
roBlobovniczaID: roBlobovniczaID{
|
|
|
|
blobovniczaID: res,
|
|
|
|
},
|
|
|
|
}, nil
|
2020-11-17 16:29:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-26 07:44:34 +00:00
|
|
|
// checks if object is "big".
|
2020-11-26 14:17:24 +00:00
|
|
|
func (b *BlobStor) isBig(data []byte) bool {
|
|
|
|
return uint64(len(data)) > b.smallSizeLimit
|
2020-11-26 07:44:34 +00:00
|
|
|
}
|