mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
* Add support for key lookup for tables in Go * Run clang format * Run go fmt on tests * Remove TODO in tests * Update LookupByKey API * Update LookupByKey API * Don't use resolvePointer in expectEq * Use generated getters instead of reading values directly from buffer * Fix typo Co-authored-by: Derek Bailey <derekbailey@google.com>
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package flatbuffers
|
|
|
|
// FlatBuffer is the interface that represents a flatbuffer.
|
|
type FlatBuffer interface {
|
|
Table() Table
|
|
Init(buf []byte, i UOffsetT)
|
|
}
|
|
|
|
// GetRootAs is a generic helper to initialize a FlatBuffer with the provided buffer bytes and its data offset.
|
|
func GetRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) {
|
|
n := GetUOffsetT(buf[offset:])
|
|
fb.Init(buf, n+offset)
|
|
}
|
|
|
|
// GetSizePrefixedRootAs is a generic helper to initialize a FlatBuffer with the provided size-prefixed buffer
|
|
// bytes and its data offset
|
|
func GetSizePrefixedRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) {
|
|
n := GetUOffsetT(buf[offset+sizePrefixLength:])
|
|
fb.Init(buf, n+offset+sizePrefixLength)
|
|
}
|
|
|
|
// GetSizePrefix reads the size from a size-prefixed flatbuffer
|
|
func GetSizePrefix(buf []byte, offset UOffsetT) uint32 {
|
|
return GetUint32(buf[offset:])
|
|
}
|
|
|
|
// GetIndirectOffset retrives the relative offset in the provided buffer stored at `offset`.
|
|
func GetIndirectOffset(buf []byte, offset UOffsetT) UOffsetT {
|
|
return offset + GetUOffsetT(buf[offset:])
|
|
}
|