Het Gala <het.g...@nutanix.com> writes: > This patch introduces well defined MigrateAddress struct and its related child > objects. > > The existing argument of 'migrate' and 'migrate-incoming' QAPI - 'uri' is of > string type. The current migration flow follows double encoding scheme for > fetching migration parameters such as 'uri' and this is not an ideal design. > > Motive for intoducing struct level design is to prevent double encoding of > QAPI > arguments, as Qemu should be able to directly use the QAPI arguments without > any level of encoding. > > Suggested-by: Aravind Retnakaran <aravind.retnaka...@nutanix.com> > Signed-off-by: Het Gala <het.g...@nutanix.com> > Reviewed-by: Juan Quintela <quint...@redhat.com> > Reviewed-by: Daniel P. Berrangé <berra...@redhat.com> > --- > qapi/migration.json | 41 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > > diff --git a/qapi/migration.json b/qapi/migration.json > index 179af0c4d8..c500744bb7 100644 > --- a/qapi/migration.json > +++ b/qapi/migration.json > @@ -1407,6 +1407,47 @@ > ## > { 'command': 'migrate-continue', 'data': {'state': 'MigrationStatus'} } > > +## > +# @MigrateTransport:
I'd prefer MigrationTransport, because "migration" is a noun, while migrate is a verb. Verbs are for commands. For types we use nouns. More of the same below, not noting it again. Actually, I'd prefer MigrationAddressType, because it's purpose is to serve as discriminator type in union MigrationAddress. > +# > +# The supported communication transport mechanisms for migration > +# > +# @socket: Supported communication type between two devices for migration. > +# Socket is able to cover all of 'tcp', 'unix', 'vsock' and > +# 'fd' already Migration is between hosts, not "two devices". The second sentence confuses me. What are you trying to say? Also, missing period at the end. > +# > +# @exec: Supported communication type to redirect migration stream into file. > +# > +# @rdma: Supported communication type to redirect rdma type migration stream. What about: ## # @MigrationTransport: # # The migration stream transport mechanisms # # @socket: Migrate via socket # # @rdma: Migrate via RDMA # # @file: Direct the migration stream to a file > +# > +# Since 8.1 > +## > +{ 'enum': 'MigrateTransport', > + 'data': ['socket', 'exec', 'rdma'] } > + > +## > +# @MigrateExecCommand: Documentation of @args is missing. > + # > + # Since 8.1 > + ## Unwanted indentation. > +{ 'struct': 'MigrateExecCommand', > + 'data': {'args': [ 'str' ] } } > + > +## > +# @MigrateAddress: > +# > +# The options available for communication transport mechanisms for migration Not happy with this sentence (writing good documentation is hard). Is the address used for the destination only, or for the source as well? If destination only, could it be used for the source at least in theory? I'm asking because I need to understand more about intended use to be able to suggest doc improvements. > +# > +# Since 8.1 > +## > +{ 'union': 'MigrateAddress', > + 'base': { 'transport' : 'MigrateTransport'}, > + 'discriminator': 'transport', > + 'data': { > + 'socket': 'SocketAddress', > + 'exec': 'MigrateExecCommand', > + 'rdma': 'InetSocketAddress' } } > + Aside: a more powerful type system would let us extend SocketAddress with additional variants instead of wrapping it in a union. > ## > # @migrate: > #