Giter VIP home page Giter VIP logo

tarantool-egts's Introduction

Tarantool EGTS

Prototype tarantool module for receiving data by EGTS protocol. The module handle only EGTS_POS_DATA section (geopostal and speed information) now.

WARNING: It is not production-ready solution and EGTS protocol authentication does not support.

Configuration

Only tcp port parameter are supported now.

Install

git clone https://www.github.com/kuznetsovin/tarantool-egts
tarantoolctl rocks make --chdir ./tarantool-egts

Example

Tarantool application

local egts = require('egts')

egts.init_store()

egts.start_server(5555)

Сartridge application

Create file ./app/roles/egts.lua in application:

local egts = require('egts')

local function init(opts)
    egts.init_store()

    egts.start_server(5555)

    return true
end

local function stop()
    egts.stop()
    return true
end

return {
    role_name = 'app.roles.egts',
    init = init,
    stop = stop,
}

Add role to application init.lua file:

...

local ok, err = cartridge.cfg({
    roles = {
        ...
        'app.roles.egts',
    },
    ...
})

...

TODO

  • Add EGTS authentication
  • Add support main sections EGTS protocol
  • Add integration tests

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.