internal/pipewire: implement Id type
All checks were successful
Test / Create distribution (push) Successful in 37s
Test / Sandbox (push) Successful in 2m29s
Test / Hakurei (push) Successful in 3m19s
Test / Hpkg (push) Successful in 4m7s
Test / Sandbox (race detector) (push) Successful in 4m26s
Test / Hakurei (race detector) (push) Successful in 5m10s
Test / Flake checks (push) Successful in 1m22s

This is, in fact, just a glorified Int type.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
Ophestra 2025-11-25 15:01:58 +09:00
parent 26009fd3f7
commit 2e465c94da
Signed by: cat
SSH Key Fingerprint: SHA256:wr6yH7sDDbUFi81k/GsIGwpM3O2QrwqYlLF26CcJa4w

View File

@ -16,6 +16,8 @@ type (
// A Bool is a boolean value representing SPA_TYPE_Bool. // A Bool is a boolean value representing SPA_TYPE_Bool.
Bool = bool Bool = bool
// An Id is an enumerated value representing SPA_TYPE_Id.
Id = Word
// An Int is a signed integer value representing SPA_TYPE_Int. // An Int is a signed integer value representing SPA_TYPE_Int.
Int = int32 Int = int32
// A Long is a signed integer value representing SPA_TYPE_Long. // A Long is a signed integer value representing SPA_TYPE_Long.
@ -131,6 +133,10 @@ func marshalValueAppend(data []byte, v reflect.Value) ([]byte, error) {
// marshalValueAppendRaw implements [MarshalAppend] on [reflect.Value] without the size prefix. // marshalValueAppendRaw implements [MarshalAppend] on [reflect.Value] without the size prefix.
func marshalValueAppendRaw(data []byte, v reflect.Value) ([]byte, error) { func marshalValueAppendRaw(data []byte, v reflect.Value) ([]byte, error) {
switch v.Kind() { switch v.Kind() {
case reflect.Uint32:
data = binary.NativeEndian.AppendUint32(data, SPA_TYPE_Id)
data = binary.NativeEndian.AppendUint32(data, Word(v.Uint()))
return data, nil
case reflect.Int32: case reflect.Int32:
data = binary.NativeEndian.AppendUint32(data, SPA_TYPE_Int) data = binary.NativeEndian.AppendUint32(data, SPA_TYPE_Int)
@ -248,6 +254,13 @@ func unmarshalValue(data []byte, v reflect.Value, wireSizeP *Word) error {
} }
switch v.Kind() { switch v.Kind() {
case reflect.Uint32:
*wireSizeP = 4
if err := unmarshalCheckTypeBounds(&data, SPA_TYPE_Id, wireSizeP); err != nil {
return err
}
v.SetUint(uint64(binary.NativeEndian.Uint32(data)))
return nil
case reflect.Int32: case reflect.Int32:
*wireSizeP = 4 *wireSizeP = 4