forked from TrueCloudLab/frostfs-sdk-go
[#19] transformer: Make writeChunk
non-recursive
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
1c94309d7a
commit
b696d3c70e
1 changed files with 35 additions and 34 deletions
|
@ -229,6 +229,7 @@ func (s *payloadSizeLimiter) initializeLinking(parHdr *object.Object) {
|
|||
}
|
||||
|
||||
func (s *payloadSizeLimiter) writeChunk(chunk []byte) error {
|
||||
for {
|
||||
// statement is true if the previous write of bytes reached exactly the boundary.
|
||||
if s.written > 0 && s.written%s.maxSize == 0 {
|
||||
if s.written == s.maxSize {
|
||||
|
@ -262,12 +263,12 @@ func (s *payloadSizeLimiter) writeChunk(chunk []byte) error {
|
|||
// increase written bytes counter
|
||||
s.written += cut
|
||||
|
||||
// if there are more bytes in buffer we call method again to start filling another object
|
||||
if ln > leftToEdge {
|
||||
return s.writeChunk(chunk[cut:])
|
||||
}
|
||||
|
||||
if cut == ln {
|
||||
return nil
|
||||
}
|
||||
// if there are more bytes in buffer we call method again to start filling another object
|
||||
chunk = chunk[cut:]
|
||||
}
|
||||
}
|
||||
|
||||
func (s *payloadSizeLimiter) prepareFirstChild() {
|
||||
|
|
Loading…
Reference in a new issue