ॐ भूर्भुवः स्वः
तत्स॑वि॒तुर्वरे॑ण्यं॒
भर्गो॑ दे॒वस्य॑ धीमहि।
धियो॒ यो नः॑ प्रचो॒दया॑त्॥
एक सरल संचार सहायक और संलग्न तंत्र।
एक रचनात्मक भारतीय उत्पाद।
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).
Include into a project:
go get github.com/boseji/go-tppi@latest
Usage in Program:
package main
import (
"fmt"
"github.com/boseji/go-tppi"
)
func main() {
fmt.Println(tppi.Assemble("Hari Aum"))
// Output:
// ~|Hari Aum|~
}
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.