fusego/internal/buffer/out_message.go

151 lines
4.1 KiB
Go
Raw Normal View History

2015-07-24 06:36:53 +03:00
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package buffer
2015-07-24 06:26:25 +03:00
import (
2015-07-28 09:28:21 +03:00
"fmt"
2015-07-28 09:23:10 +03:00
"log"
2015-07-28 09:28:21 +03:00
"reflect"
2015-07-24 06:26:25 +03:00
"unsafe"
"github.com/jacobsa/fuse/internal/fusekernel"
)
// OutMessageHeaderSize is the size of the leading header in every
// properly-constructed OutMessage. Reset brings the message back to this size.
2016-12-19 04:57:08 +03:00
const OutMessageHeaderSize = int(unsafe.Sizeof(fusekernel.OutHeader{}))
2015-07-28 09:06:23 +03:00
2015-07-24 07:11:03 +03:00
// OutMessage provides a mechanism for constructing a single contiguous fuse
2015-07-24 06:36:53 +03:00
// message from multiple segments, where the first segment is always a
// fusekernel.OutHeader message.
//
2015-07-28 09:06:23 +03:00
// Must be initialized with Reset.
2015-07-24 07:11:03 +03:00
type OutMessage struct {
2016-12-19 04:53:32 +03:00
// The offset into payload to which we're currently writing.
payloadOffset int
header fusekernel.OutHeader
2016-12-19 04:53:32 +03:00
payload [MaxReadSize]byte
2015-07-24 06:26:25 +03:00
}
2016-12-19 04:53:32 +03:00
// Make sure that the header and payload are contiguous.
func init() {
2016-12-19 04:57:08 +03:00
a := unsafe.Offsetof(OutMessage{}.header) + uintptr(OutMessageHeaderSize)
2016-12-19 04:53:32 +03:00
b := unsafe.Offsetof(OutMessage{}.payload)
if a != b {
log.Panicf(
"header ends at offset %d, but payload starts at offset %d",
a, b)
}
}
// Reset resets m so that it's ready to be used again. Afterward, the contents
// are solely a zeroed fusekernel.OutHeader struct.
2016-12-19 04:54:54 +03:00
func (m *OutMessage) Reset() {
2020-06-26 08:45:43 +03:00
m.payloadOffset = 0
m.header = fusekernel.OutHeader{}
2016-12-19 04:54:54 +03:00
}
2015-07-24 06:26:25 +03:00
// OutHeader returns a pointer to the header at the start of the message.
2016-12-19 05:04:54 +03:00
func (m *OutMessage) OutHeader() *fusekernel.OutHeader {
return &m.header
2016-12-19 05:04:54 +03:00
}
2015-07-24 06:36:53 +03:00
// Grow grows m's buffer by the given number of bytes, returning a pointer to
// the start of the new segment, which is guaranteed to be zeroed. If there is
// insufficient space, it returns nil.
func (m *OutMessage) Grow(n int) unsafe.Pointer {
p := m.GrowNoZero(n)
2016-12-19 05:02:19 +03:00
if p != nil {
memclr(p, uintptr(n))
}
return p
2016-12-19 05:02:19 +03:00
}
2015-07-28 09:23:59 +03:00
// GrowNoZero is equivalent to Grow, except the new segment is not zeroed. Use
// with caution!
func (m *OutMessage) GrowNoZero(n int) unsafe.Pointer {
2016-12-19 05:01:45 +03:00
// Will we overflow the buffer?
o := m.payloadOffset
if len(m.payload)-o < n {
return nil
2016-12-19 05:01:45 +03:00
}
p := unsafe.Pointer(uintptr(unsafe.Pointer(&m.payload)) + uintptr(o))
2016-12-19 05:01:45 +03:00
m.payloadOffset = o + n
return p
2016-12-19 05:01:45 +03:00
}
2015-07-24 06:36:53 +03:00
// ShrinkTo shrinks m to the given size. It panics if the size is greater than
// Len() or less than OutMessageHeaderSize.
2016-12-19 05:04:02 +03:00
func (m *OutMessage) ShrinkTo(n int) {
if n < OutMessageHeaderSize || n > m.Len() {
panic(fmt.Sprintf(
"ShrinkTo(%d) out of range (current Len: %d)",
n,
m.Len()))
}
m.payloadOffset = n - OutMessageHeaderSize
}
// Append is equivalent to growing by len(src), then copying src over the new
// segment. Int panics if there is not enough room available.
func (m *OutMessage) Append(src []byte) {
p := m.GrowNoZero(len(src))
2015-07-28 09:28:21 +03:00
if p == nil {
panic(fmt.Sprintf("Can't grow %d bytes", len(src)))
}
sh := (*reflect.SliceHeader)(unsafe.Pointer(&src))
memmove(p, unsafe.Pointer(sh.Data), uintptr(sh.Len))
return
2015-07-24 06:46:18 +03:00
}
// AppendString is like Append, but accepts string input.
func (m *OutMessage) AppendString(src string) {
p := m.GrowNoZero(len(src))
2015-07-28 09:29:09 +03:00
if p == nil {
panic(fmt.Sprintf("Can't grow %d bytes", len(src)))
}
sh := (*reflect.StringHeader)(unsafe.Pointer(&src))
memmove(p, unsafe.Pointer(sh.Data), uintptr(sh.Len))
return
2015-07-28 09:09:27 +03:00
}
2015-07-24 06:46:18 +03:00
// Len returns the current size of the message, including the leading header.
func (m *OutMessage) Len() int {
return OutMessageHeaderSize + m.payloadOffset
2015-07-24 06:46:18 +03:00
}
// Bytes returns a reference to the current contents of the buffer, including
// the leading header.
func (m *OutMessage) Bytes() []byte {
2016-12-19 04:57:08 +03:00
l := m.Len()
sh := reflect.SliceHeader{
Data: uintptr(unsafe.Pointer(&m.header)),
Len: l,
Cap: l,
}
return *(*[]byte)(unsafe.Pointer(&sh))
2015-07-24 06:36:53 +03:00
}