Skip to main content

A TEJ Protocol implementation

Project description

tej-protoc v1

tej-protoc v1 is a implementation of custom TEJ protocol. It is a full duplex protocol. This protocol can be used for sending large files and messages faster.

Installation

pip install tej-protoc

Diagram

+-------------------------------------------------------------------+
|                        TEJ Protocol v1                            |
+-------------------------------------------------------------------+
|         Status Byte            |                                  |
|--------------------------------|           Protocol Version       |
|   Status bit  |  Custom status |              8 bits              |
|    (1 bit)    |  (7 bits)      |                                  |
+-------------------------------------------------------------------+
|                         Number of files                           |
|                           (64 bits)                               |
+-------------------------------------------------------------------+
|        'n' File name length    |        'n' Actual file name      |
|         (16 bits)              |     (from 'n' filename length)   |
+-------------------------------------------------------------------+
|        'n' file length         |      'n' Actual file data        |
|        (64 bits)               |      (from 'n' file length)      |
+-------------------------------------------------------------------+
|                  Repeat for 'n' number of files                   |
+-------------------------------------------------------------------+
|         Message length         |           Message data           |
|           (64 bits)            |       (from message length)      |
+-------------------------------------------------------------------+

Status byte

The first bit in the status byte must be 1 and then remaining bits are the custom status bits. Custom status bit ranges from 0 to 127

Example usage

Server

Here is a simple server implementation with tej-protoc. Create a new file named server.py

from tej_protoc.server import TPServer
from tej_protoc import protocol
from tej_protoc import callbacks


class MessageCallback(callbacks.ResponseCallback):
    def connected(self, client):
        builder = protocol.BytesBuilder()
        builder.set_message(b'Hello')
        protocol.send(client, builder.bytes())

    def received(self, files, message):
        print('---- Received in server ----')
        for file in files:
            print(file.name)
        print('Message: ', message.decode())
        print('---------------------------------')


server = TPServer('localhost', 8000, MessageCallback)
server.listen()

You can also access the client object inside callback methods with self.client. Your code inside the Callback class is executed everytime when the client connects and the data is received. Once the client is connected connected method is called. If you want to send data when client connects, then you can send with protocol.send(client, builder.build()).

To send data from client, you need to build compatible bytes array with BytesBuilder class.

Client

from tej_protoc.client import TPClient
from tej_protoc import protocol
from tej_protoc import callbacks


class ClientCallback(callbacks.ResponseCallback):
    def connected(self, client):
        builder = protocol.BytesBuilder()
        builder.set_message(b'Sending from client')
        # To upload file
        # builder.add_file('file.txt', open('file.txt', 'rb').read())
        protocol.send(client, builder.bytes())

    def received(self, files, message):
        for file in files:
            print(f'Filename: {file.name}')
            # Other attributes: file.size, file.data

        print(f'Message: {message.decode()}')


def test_client():
    try:
        client = TPClient('localhost', 8000, ClientCallback)
        client.listen()
    except Exception as e:
        print('error', e)


test_client()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tej-protoc-0.2.2.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

tej_protoc-0.2.2-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file tej-protoc-0.2.2.tar.gz.

File metadata

  • Download URL: tej-protoc-0.2.2.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for tej-protoc-0.2.2.tar.gz
Algorithm Hash digest
SHA256 09ff60b82473503f4c6af11b62e45857e8ae060c46b5729aff18ae776c22da5b
MD5 8a94f8e4f4920d983b9d9a2e28e41463
BLAKE2b-256 10d102267a51d2b1912168f75d2baefbc1fce86b9d9af003fe55f519895ed6bd

See more details on using hashes here.

File details

Details for the file tej_protoc-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: tej_protoc-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for tej_protoc-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6cba96eef6172d4acbbf501d7fb073364e85db790e76d1d48e0ea9cef7999051
MD5 058bde6cfd2af3f533c5be50f6be7976
BLAKE2b-256 6c2f1861b6f71af2bc1d830d1eeb0aeefe390604a188e65af7db84e1e355eeb5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page