relpipe-data/specification.xml
author František Kučera <franta-hg@frantovo.cz>
Sun, 02 Dec 2018 20:47:38 +0100
branchv_0
changeset 176 46042297e0d6
parent 162 f9185bc14b68
child 178 674b4e3b2f14
permissions -rw-r--r--
relpipe-tr-validator: specification and examples

<stránka
	xmlns="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro">
	
	<nadpis>Specification</nadpis>
	<perex>Specification of the Relational pipes data format</perex>
	<pořadí>20</pořadí>

	<text xmlns="http://www.w3.org/1999/xhtml">
		<p>
			Currently only fragments of the specification are published
			and the incompatible changes might (and will) come before the v1.0.0 release.
			Please stay tuned for this stable version which will deliver specification such complete and precise 
			that independent implementation of the format will be possible.
		</p>
		
		<h2>
			<m:name/> data format
		</h2>
			
		<h3>Stream structure structure</h3>
		
		
		<m:tabulka>
			id	name	description
			0x1D	start	start of the relation
			0x1E	record	start of the record
		</m:tabulka>
		
		
		<h3>Data types</h3>
		
		<p>Currently, there are only three data types.</p>
		
		<m:tabulka>
			typeId	code	description
			0x01	boolean	logical value, true/false
			0x02	integer	unsigned integer number of arbitrary length
			0x03	string	character string in UTF-8
		</m:tabulka>
		
		<h2>Libraries</h2>
		
		<h3>relpipe-lib-writer</h3>
		
		<p>Wraps an output stream (usually STDOUT), accepts method calls (relations, attributes) and generates <m:name/> data on the stream.</p>
		
		<h3>relpipe-lib-reader</h3>
		
		<p>
			Wraps an input stream (usually STDIN). The caller creates and sets handlers (zero or more) using <code>addHandler()</code> and then calls <code>process()</code> method.
			During this method call, the reader reads the input and calls the handlers.
			Handlers receive relations and attributes.
		</p>
		
		<h2>Tools</h2>
		
		<h3>relpipe-in-cli</h3>
		<p>
			A tool that generates a single relation. I we want more relations in a single stream, we just call this command multiple times:
		</p>
		
		<m:pre jazyk="bash"><![CDATA[
(relpipe-in-cli ... ; relpipe-in-cli ... ; relpipe-in-cli ... ) | relpipe-out-tabular
]]></m:pre>

		<p>Or concatenate several files or do a combination of both files and commands.</p>
		
		<p>This command accept these arguments:</p>
		
		<ul>
			<li>relation name</li>
			<li>attribute count</li>
			<li>names of attributes</li>
			<li>types of attributes</li>
			<li>attribute values</li>
		</ul>
		
		<p>
			These data might be passed as CLI arguments on the command line or as null-byte (<code>\0</code>) separated list of values on STDIN.
			Both ways can be combined e.g. pass relation name and metadata as CLI arguments and the data on STDIN.
			The tool simply starts with CLI arguments (if any) and continues with values from STDIN (if any).
		</p>
		
		<p>
			This tool is a good entry point to the <m:name/> world because it requires no programming and construction of the argument list or <code>\0</code> separated list can be done in any language or environment.
			Tools like <code>perl</code> or <code>tr</code> can convert almost any data to this form and pass it to <code>relpipe-in-cli</code>.
		</p>
		
		
		<h3>relpipe-in-fstab</h3>
		
		<p>
			A tool that parses <code>fstab</code> (or <code>mtab</code>) file containing a list of devices, mount-points and their options and generates a single relation from it.
		</p>
		
		<p>
			If executed on TTY, it reads data from the default location: <code>/etc/fstab</code>.
			If executed with STDIN attached to a file or another command (in a pipe), it reads data from this stream.
		</p>
		
		<h3>relpipe-out-tabular</h3>
		
		<p>
			A tool that formats relational data as tables with unicode borders and ANSI colors.
			Good for viewing relational data in a terminal or redirecting such view to a file or clipboard (to be pasted anywhere, where fixed-width font is used).
		</p>
		
		<h3>relpipe-out-gui</h3>
		
		<p>
			A tool that views relational data in a GUI window. Relations are displayed as panels with tables.
			Particular implementation might offer also additional features like chart drawing or simple statistics (sum, max, min, avg, percentiles etc.)
		</p>
		
		
		<h3>relpipe-out-xml</h3>
		
		<p>
			A tool that converts relational data to its XML representation.
			Is useful for further processing in other tools (e.g. XSLT procesor that generates XHTML org other XML-based format)
			or for storage of relational data in a text form (good for version control systems, diff, manual editation or review).
		</p>
		
		<h3>relpipe-out-ods</h3>
		
		<p>
			A tool that converts relational data to its ODS (OpenDocument) representation resp. its <em>flat</em> variant (a single XML file instead of a ZIP containing many files).
			This OpenDocument output can be opened in tools like LibreOffice and further processed (add charts, calculations etc.).
		</p>
		
		<h3>relpipe-tr-validator</h3>
		
		<p>
			A tool that behaves like <code>cat</code>, <code>dd</code> or <code>pv</code> commands i.e. reads data from STDIN and outputs the same data on STDOUT.
			But compared to these tools, data are parsed and then converted back to the <m:name/> format.
			Thus if the input was not in this format, the process fails (exit code != 0).
			Errors (if any) are reported on STDERR.
		</p>
		
	</text>

</stránka>