Code Monkey home page Code Monkey logo

bspl's Introduction

Blindingly Simple Protocol Language (BSPL) Go parser.

Build Status codecov License: MPL 2.0 Go Version GoDoc Reference

This repository also contains interfaces for a BSPL reasoner (reason package) and an implementation of some components of that reasoner (implementation package). This implementation is used in another project.

Modules

  • parser: Standalone BSPL parser implemented using a toy lexer I wrote a while ago.

  • proto: Go structures to form a BSPL protocol, e.g., Protocol, Role and Action.

  • reason: Interface definition for implementing a reasoner and protocol instances.

  • implementation: Draft implementation to use in another project.

Production use of this project is not advised as it is far from ready.

Other folders

  • config: Contains the automaton fed to the lexer to process a BSPL protocol.

  • test: Test resources.

Usage example

  1. Define a valid protocol in a file with path path.

  2. Open the file and pass the reader to bspl.Parse()

package main

import (
        "fmt"
        "os"

        "github.com/mikelsr/bspl"
)

func main() {
	source, err := os.Open(path)
	if err != nil {
		panic(err)
	}
        protocol, err := bspl.Parse(source)
        if err != nil {
		panic(err)
        }
        fmt.Println(protocol)
}
  1. Done!

Improvements

  1. Remove messages (โœ“)

The Message struct is redundant: the ocurred action can be derived from the outputted values from the previous state of the instance to the current one.

bspl's People

Contributors

mikelsr avatar

Stargazers

 avatar

Watchers

Dieguich avatar  avatar Aratz M. Lasa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.