This repository was archived by the owner on May 6, 2024. It is now read-only.
Open
Conversation
Codecov Report
@@ Coverage Diff @@
## master #30 +/- ##
======================================
Coverage 53.9% 53.9%
======================================
Files 14 14
Lines 371 371
======================================
Hits 200 200
Misses 171 171
Continue to review full report at Codecov.
|
Collaborator
Author
|
That's the next step when parser is done |
Member
|
Not sure how this should work under the hood. Are you only going to work on parser or you can suggest changes to library internals as well? |
Fogapod
reviewed
Nov 3, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a first take at a parser for a human-readable protocol. Targets #15
It's WIP and I'll start separating it onto multiple files when the syntax itself gets accepted.
There's 5 actions: CONNECT, PING, INFO, REQUEST, RESPOND
All can be called simply with
ACTION;, except REQUEST and RESPOND.Those require arguments, e.g.
REQUEST 'json goes here';.Optionally, they take a
FROM/TOargument that is eitherALLor an integer of e.g. the receiver.CONN, REQ and RESP are aliases.
Examples:
I made a simple interactive example. You can run it like this:
Then type your queries and it'll output the actual query string or syntax errors.
Note: Syntax is subject to change, I might go for
REQUEST 'handler_func' WITH 'parameter1', 'parameter2', 3 FROM ALL;. But that would remove the JSON-ish syntax