Coder Social home page Coder Social logo

c-websocket-server's Introduction

C Websocket Server

MIT License

A websocket server written in C for a course followed at InHolland University of Applied Science.




Table of Contents

  • Introduction
  • Libraries
  • Data Structure

Introduction

This websocket server parses JSON data sent by the client in order to control the state of GPIO pins by writing them to a SQL database.

Installation

  1. Clone the repo using git (git clone https://github.com/Wessel/c-websocket-server)
  2. Install dependencies using desired package manager (yay -S libmysqlclient json-c)
  3. Build and run the project (make clean run)

Or using Docker:

  1. Build the container (docker build -t c-websocket-server .)
  2. Start the container (docker run -dp 127.0.0.1:8080:8080 c-websocket-server

Libraries

argp is used for simplification of command line argument parsing.

libtap is used for unit testing, all tests can be found inside the /tests directory.

wsServer is used as socket server, writing a custom socket library was abundant for the course followed.

json-c is used to cast incoming JSON objects into data envelopes.

libmysqlclient is used for a connection to the SQL database.

Data Structure

A request from the client would look as follows:

{
  "auth": <authentication:str>
  "payload": {
    "sensorId": <sensor.id:str>
    "sensorData": <sensor.data:str>
  }
}

After the request has been parsed, it will be processed by a handler which will in turn give a status code / data struct. This can be one of:

enum RESPONSE_CODES {
  SUCCESS,
  MISSING_JSON,
  MISSING_PAYLOAD,
  MISSING_AUTH
};

[ { "sensorId": <sensor.id:str>, "state": <sensor.state:str> }, ... ]

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.