exonum / rfcs

RFCs for changes to Exonum
Apache License 2.0
1 stars 3 forks source link

Declarative format for service specification #4

Open oudod opened 7 years ago

oudod commented 7 years ago

Rendered version

alekseysidorov commented 7 years ago

I think that field sizes declarations is redundant. So what do you think about nested types? And what about documentation generation for these format?

Also, can you add link to the rendered version of these rfc to description topic?

vldm commented 7 years ago

Rendered

Can you explain, why using TOML?

As for me TOML isn't a perfect choice, because it has a lot of separating punctuation characters, thats make it annoying. Additionally toml is a flat, but we have some kind of hierarchy. What about "field_type", does this format specific for Rust only? What format we should use in describing fields type?

If we use rust, may be some Rust structure composition, is a better choice?

slowli commented 7 years ago
  1. Have you considered WSDL / OpenAPI (fka Swagger) spec? If yes, please state clearly why they are inappropriate for our case. Also please take a look at other IDLs (e.g., the OMG one); they may have useful concepts (such as namespaces).

  2. As @vldm has said, the description format looks dangerously Rust-specific (e.g., I don't quite get why the type of transactions.TxTransfer.from is &PublicKey, not PublicKey; what does a reference signify?). The field_size fields seem redundant, unless I'm missing something.

  3. As for a specific serialization format, imo, JSON/YAML/TOML are not very different; they use the same underlying data model. As a personal preference, I like YAML a bit more. So, something like

    types:
    TxTransferRequest:
    type: struct
    doc: |
       `TxTranferRequest` is used in `TxTransfer` transactions
    fields:
    - name: from
      type: PublicKey
      doc: Originator of the transaction
    - name: to
      type: PublicKey
      doc: Recipient of funds
    - name: amount
      type: u64
      doc: The amount of funds transferred in the transaction
    transactions:
    TxTransfer:
     messageId: 128
     transport:
     - type: http+json
       method: post
       endpoint: "{{basePath}}/v1/transfer"
     requestType: TxTransferRequest
     doc: Transfers coins from one account to another

    (Note that YAML/JSON/... could be extracted from a more "natural" C-like IDL descriptions, like the ones used in CORBA; we only would have a syntax for this language and use a parser.)

Notice a couple of things here:

slowli commented 6 years ago

Some thoughts here:

YAML/JSON/TOML aren't IDLs, they are ways to represent information about the service. If we really want to, we could first define the JSON/... scheme and then define a BNF for a custom IDL and use an existing LL/LR parser (e.g., ANTLR) to convert from this IDL to JSON-structured spec. Can probably wait, though.

If we want to make the service description serializable (which could be useful for authentication and storing the service description in the blockchain state, a-la information_schema), it probably needs to conform to the serialization format. This is a problem because afaik we do not have a specification for the format yet. Hypothetically, the specification could be a struct, types, transactions within it could be maps, etc. There are several interesting questions with this approach:

I don't quite understand how storage is specified. Logically, the storage should be a map table_id -> table_type, but it would not take hierarchy into account (e.g., the wallet history).

I don't quite understand how read requests are specified, particularly, their responses.

Maybe, manual specification fo transports in the service description is a bad idea; there should be a standard way to may endpoints to a particular transport.

I'm thinking about prototyping the service description from the client side (see exonum/exonum-client#8 and this branch - both most probably need heavy reworking); doesn't seem like a particularly difficult task if one doesn't care about performance. The goal of prototyping would be to feed the service spec to the proverbial Service constructor and get a client-side service stub that would be able to post transactions / read requests and verify results.

slowli commented 6 years ago

Here is the repo with a JSON-based data schema declarations in JS (i.e., primarily oriented for the lightweight client) I'm working on now - slowli/exonum-types. Work in progress, obviously. This could form the base for parsing service definitions by the client and creating corresponding client stubs.