internal/pipewire: implement Core::GetRegistry
All checks were successful
Test / Create distribution (push) Successful in 38s
Test / Sandbox (push) Successful in 2m19s
Test / Hakurei (push) Successful in 3m13s
Test / Hpkg (push) Successful in 4m9s
Test / Sandbox (race detector) (push) Successful in 4m19s
Test / Hakurei (race detector) (push) Successful in 5m10s
Test / Flake checks (push) Successful in 1m28s
All checks were successful
Test / Create distribution (push) Successful in 38s
Test / Sandbox (push) Successful in 2m19s
Test / Hakurei (push) Successful in 3m13s
Test / Hpkg (push) Successful in 4m9s
Test / Sandbox (race detector) (push) Successful in 4m19s
Test / Hakurei (race detector) (push) Successful in 5m10s
Test / Flake checks (push) Successful in 1m28s
This struct is entirely supported, so this change is very straightforward. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
parent
e77652bf89
commit
591637264a
@ -68,15 +68,43 @@ const (
|
|||||||
|
|
||||||
// CoreHello is the first message sent by a client.
|
// CoreHello is the first message sent by a client.
|
||||||
type CoreHello struct {
|
type CoreHello struct {
|
||||||
// version number of the client; PW_VERSION_CORE
|
// The version number of the client, usually PW_VERSION_CORE.
|
||||||
Version Int
|
Version Int
|
||||||
}
|
}
|
||||||
|
|
||||||
// MarshalBinary satisfies [encoding.BinaryMarshaler] via [MarshalAppend].
|
// MarshalBinary satisfies [encoding.BinaryMarshaler] via [MarshalAppend].
|
||||||
func (c *CoreHello) MarshalBinary() ([]byte, error) { return MarshalAppend(make([]byte, 0, 24), c) }
|
func (c *CoreHello) MarshalBinary() ([]byte, error) {
|
||||||
|
return MarshalAppend(make([]byte, 0, 24), c)
|
||||||
|
}
|
||||||
|
|
||||||
// UnmarshalBinary satisfies [encoding.BinaryUnmarshaler] via [Unmarshal].
|
// UnmarshalBinary satisfies [encoding.BinaryUnmarshaler] via [Unmarshal].
|
||||||
func (c *CoreHello) UnmarshalBinary(data []byte) error {
|
func (c *CoreHello) UnmarshalBinary(data []byte) error {
|
||||||
_, err := Unmarshal(data, c)
|
_, err := Unmarshal(data, c)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CoreGetRegistry is sent when a client requests to bind to the
|
||||||
|
// registry object and list the available objects on the server.
|
||||||
|
//
|
||||||
|
// Like with all bindings, first the client allocates a new proxy
|
||||||
|
// id and puts this as the new_id field. Methods and Events can
|
||||||
|
// then be sent and received on the new_id (in the message Id field).
|
||||||
|
type CoreGetRegistry struct {
|
||||||
|
// The version of the registry interface used on the client,
|
||||||
|
// usually PW_VERSION_REGISTRY.
|
||||||
|
Version Int
|
||||||
|
// The id of the new proxy with the registry interface,
|
||||||
|
// ends up as [Header.ID] in future messages.
|
||||||
|
NewID Int
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalBinary satisfies [encoding.BinaryMarshaler] via [MarshalAppend].
|
||||||
|
func (c *CoreGetRegistry) MarshalBinary() ([]byte, error) {
|
||||||
|
return MarshalAppend(make([]byte, 0, 40), c)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalBinary satisfies [encoding.BinaryUnmarshaler] via [Unmarshal].
|
||||||
|
func (c *CoreGetRegistry) UnmarshalBinary(data []byte) error {
|
||||||
|
_, err := Unmarshal(data, c)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|||||||
@ -13,3 +13,12 @@ func TestCoreHello(t *testing.T) {
|
|||||||
}, nil},
|
}, nil},
|
||||||
}.run(t)
|
}.run(t)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCoreGetRegistry(t *testing.T) {
|
||||||
|
encodingTestCases[pipewire.CoreGetRegistry, *pipewire.CoreGetRegistry]{
|
||||||
|
{"sample", []byte(sendmsg00Message02POD), pipewire.CoreGetRegistry{
|
||||||
|
Version: pipewire.PW_VERSION_REGISTRY,
|
||||||
|
NewID: 2,
|
||||||
|
}, nil},
|
||||||
|
}.run(t)
|
||||||
|
}
|
||||||
|
|||||||
@ -23,6 +23,12 @@ func TestHeader(t *testing.T) {
|
|||||||
Size: 0x600, Sequence: 1, FileCount: 0,
|
Size: 0x600, Sequence: 1, FileCount: 0,
|
||||||
}, nil},
|
}, nil},
|
||||||
|
|
||||||
|
{"PW_CORE_METHOD_GET_REGISTRY", []byte(sendmsg00Message02Header), pipewire.Header{
|
||||||
|
ID: pipewire.PW_ID_CORE,
|
||||||
|
Opcode: pipewire.PW_CORE_METHOD_GET_REGISTRY,
|
||||||
|
Size: 0x28, Sequence: 2, FileCount: 0,
|
||||||
|
}, nil},
|
||||||
|
|
||||||
{"PW_SECURITY_CONTEXT_METHOD_CREATE", []byte{
|
{"PW_SECURITY_CONTEXT_METHOD_CREATE", []byte{
|
||||||
// Id
|
// Id
|
||||||
3, 0, 0, 0,
|
3, 0, 0, 0,
|
||||||
|
|||||||
@ -14,4 +14,9 @@ var (
|
|||||||
sendmsg00Message01Header string
|
sendmsg00Message01Header string
|
||||||
//go:embed testdata/03-sendmsg00-message01-POD
|
//go:embed testdata/03-sendmsg00-message01-POD
|
||||||
sendmsg00Message01POD string
|
sendmsg00Message01POD string
|
||||||
|
|
||||||
|
//go:embed testdata/04-sendmsg00-message02-header
|
||||||
|
sendmsg00Message02Header string
|
||||||
|
//go:embed testdata/05-sendmsg00-message02-POD
|
||||||
|
sendmsg00Message02POD string
|
||||||
)
|
)
|
||||||
|
|||||||
BIN
internal/pipewire/testdata/04-sendmsg00-message02-header
vendored
Normal file
BIN
internal/pipewire/testdata/04-sendmsg00-message02-header
vendored
Normal file
Binary file not shown.
BIN
internal/pipewire/testdata/05-sendmsg00-message02-POD
vendored
Normal file
BIN
internal/pipewire/testdata/05-sendmsg00-message02-POD
vendored
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user