tppi stands for Tilde Pipe Plus Interface
Project description
ॐ भूर्भुवः स्वः
तत्स॑वि॒तुर्वरे॑ण्यं॒
भर्गो॑ दे॒वस्य॑ धीमहि।
धियो॒ यो नः॑ प्रचो॒दया॑त्॥
बोसजी के द्वारा रचित टिप्पी अधिलेखन प्रकृया।
एक सरल संचार सहायक और संलग्न तंत्र।
एक रचनात्मक भारतीय उत्पाद।
tppi
stands for Tilde Pipe Plus Interface
A simple communication helper and enclosing mechanism called
TPPI protocol
.
There are two parts to this protocol:
- Organization - Build the compatible data representation called
TPPI content
. - Encapsulation - Prepare a compatible packet with necessary safeguards called
TPPI packet
.
This is string oriented protocol
with special safeguards for TPPI protocol
.
The following symbols are considered special to TPPI protocol
:
~
Tilde Symbol|
Pipe Symbol+
Plus Symbol
These symbol are replaced by the following as safeguards for TPPI packet
:
|
converts to\\x7C
+
converts to\\x2B
These symbols are replaced for safeguards in data specified for TPPI contents
:
~
converts to%7E
|
converts to%7C
+
converts to%2B
The TPPI protocol
contains special annotations:
~|
is used to indicate thestart
of theTPPI Packet
|~
is used to indicate the end of theTPPI Packet
|
is used to separate theTPPI contents
in aTPPI Packet
~
are used to organize theTPPI contents
with Type, tags, & data.~||~
indicates aTPPI packet
without any contents+
is used to joinTPPI packets
together.
Collection rule for TPPI packets
:
- If
TPPI packet
are sent one at a time then no special addition is needed. - In case collection of
TPPI packets
need to be sent then+
symbol is used.
Rules for TPPI content
:
- The content mist be filtered with necessary safeguards.
Type Signature
: Each TPPI content
must have aType Signature
that tells what type of data it contains and helps in Discovery process later. In case noType Signature
is providedUN
would be used to indicateunknown
Type`.Type Signature
can't be left blank and recommended to be added.Tag
: EachTPPI content
can have a string name or tag that can help better identify the data enclosed. This would later be used for Discovery process. This is an Optional field and can be omitted in theTPPI content
.Data
: TheTPPI content
encloses the data provided in string form, that can later be retrieved using the Discovery process.- The fields
Type Signature
, (optional)Tag
andData
are separated by~
Symbol in aTPPI content
.
TPPI Content Processes
:
Specify
: In this process theType Signature
, (optional)Tag
andData
are joined together inTPPI Content
form. This follows the rules forTPPI content
. This typically happens before preparing theTPPI packet
.Discover
: In this process theType Signature
, (optional)Tag
andData
are recovered from the suppliedTPPI Content
. This follows the same rules forTPPI content
in order to find the enclosed data. This is typically done after receiving the TPPI packet and getting theTPPI contents
.
TPPI Packet Processes
:
Assemble
: In this process theTPPI contents
are filtered and joined together into aTPPI packet
following respective rules. This however should not be used for Joining multiple TPPI packets.Disassemble
: In this process the incomingTPPI packet
is broken into into multipleTPPI contents
with filtering/safeguards removed. This however should not be used directly on the Incoming TPPI packet as it would not be able to split apart TPPI packets.Join
: This is the process of Joining multiple packets before sending over thecombined TPPI packets
.Split
: This is process perform as soon as theTPPI packets
are received. Only after this the process of Disassembly can begin.
Background behind the name:
The name
tppi
has been taken from a story of an imaginative kid discovering the mysteries of the Universe and the world all around from a remote village in the heart of Karnataka, Bharat(India).
कार्यविधि - Usage
Include into a project:
pip install pytppi
Usage in Transmitter Program:
from datetime import datetime
from src.tppi import assemble_func, specify, disassemble, discover
@assemble_func
def build(timestamp:int, value:float):
return [
specify(f"{timestamp}","TS"),
specify(f"{value}","F"),
]
if __name__ == "__main__":
print("Transmit Packet")
print(build(datetime.now().timestamp(),12.4))
parts = disassemble('~|TS~1725869454.327236|F~12.4|~')
parts = [discover(p) for p in parts]
print("Found:", parts)
for p in parts:
if p[1] == 'TS':
print("Time Stamp:", datetime.fromtimestamp(float(p[0])))
elif p[1] == 'F':
print("Value:", float(p[0]))
Developer Note
In order to perform test and future development use the following process:
Make sure a virtual environment is created and activated already.
Install dependencies:
pip install -e .[dev]
This would install black
, build
and coverage
.
To test out the code:
coverage run
coverage html
To build the project:
python -m build --wheel --sdist
To format the code:
black .
License
SPDX: Apache-2.0
tppi
stands for Tilde Pipe Plus Interface
Copyright (C) 2024 Abhijit Bose (aka. Boseji). All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytppi-0.2.tar.gz
.
File metadata
- Download URL: pytppi-0.2.tar.gz
- Upload date:
- Size: 12.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a2a98c39ce8b7a3289e62c2aaf4fbfa4cbd41d2c50189fc78b0a9809c61e683 |
|
MD5 | 0cce6f2379c4ce7904636c2f8f9263ab |
|
BLAKE2b-256 | 6eaed47665ae0dc425950fdd78d2e70da759eaf2bf545c6d71ca720b13d28219 |
File details
Details for the file pytppi-0.2-py3-none-any.whl
.
File metadata
- Download URL: pytppi-0.2-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf96223627934eb9c2fed3799bcba07bb4673e9acd08cf6b9d2da6978c3116ab |
|
MD5 | 0b6c4a41b5ed30a276c88d27f52b8277 |
|
BLAKE2b-256 | e3c0db3485c646255dd2dda86aacee7cf30a2d0f61b9be3172eb7ba1f2b8dfaf |