<div dir="ltr">Yesterday I thought about it and maybe a higher level API on top of the Foreign Memory API with MemorySegment, MemoryLayout and VarHandles... would also be nice. Often times you'd simply want to use it as a replacement for ByteBuffer it seems and a fluent API like this is pretty nice IMHO (from the ByteBuffer Javadoc):<div><br></div><div>bb.putInt(0xCAFEBABE).putShort(3).putShort(45)</div><div><br></div><div>Kind regards</div><div>Johannes</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Am Mi., 24. Aug. 2022 um 02:34 Uhr schrieb Michael Zucchi <<a href="mailto:notzed@gmail.com">notzed@gmail.com</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 23/8/22 03:57, Gavin Ray wrote:<br>
> Thanks Paul,<br>
><br>
> The API is a fair bit wordier, but that's the price you pay in <br>
> exchange for greater expressiveness and flexibility I suppose.<br>
> I'll likely go forward with the MemorySegment implementation then -- I <br>
> appreciate the reply!<br>
><br>
TBH it probably wont turn out to be wordier once you get it worked out. <br>
ByteBuffer was better than nothing but MemorySegment is cleaner for <br>
memory access as it doesn't carry the nio baggage. And some of the <br>
boilerplate better encapsulates various operations you would need to <br>
perform separately anyway.<br>
<br>
Also one doesn't need to do any deserialisation for many types of <br>
accesses since you can just access the memory directly via varhandles. <br>
If the data is not packed but naturally aligned and ordered then <br>
accessing it via var handles into primitive types is simple and more <br>
efficient than marshalling to another object first.<br>
<br>
e.g.<br>
in C, 'slot[i].offset' could become <br>
'slot$offset$varhandle.get(segment, i)' which you through in an accessor <br>
on some object like Page which holds the segment.<br>
<br>
where the varhandle is something like<br>
<br>
static VarHandle slot$offset$varhandle = <br>
slotLAYOUT.sequenceLayout().varHandle(<br>
MemoryLayout.PathElement.sequenceElement(),<br>
MemoryLayout.PathElement.groupElement("offset"));<br>
<br>
!Z<br>
<br>
</blockquote></div>