Jump to content

LibMISB/Examples/Library basic usage: Difference between revisions

m
no edit summary
mNo edit summary
mNo edit summary
Line 16: Line 16:
The input JSON file that is going to be used is as follows:  
The input JSON file that is going to be used is as follows:  


<syntaxhighlight lang=json>
<syntaxhighlight lang="json">
{  
{  
   "key": "060E2B34020B01010E01030101000000",
   "key": "060E2B34020B01010E01030101000000",
Line 138: Line 138:


Or alternitevly if you want to use the 0903 standard:
Or alternitevly if you want to use the 0903 standard:
<syntaxhighlight lang=json>
<syntaxhighlight lang="json">
{  
{  
     "key": "060E2B34020B01010E01030306000000",
     "key": "060E2B34020B01010E01030306000000",
Line 190: Line 190:
And for standard 0102 the example file is the following:
And for standard 0102 the example file is the following:


<syntaxhighlight lang=json>
<syntaxhighlight lang="json">
{  
{  
   "key": "060E2B34020301010E01030302000000",
   "key": "060E2B34020301010E01030302000000",
Line 214: Line 214:
The following command is executed to perform the encoding. The'''--encode''' flag indicates that encoding is to be performed. The '''-i''' flag indicates the input file, where the metadata must be raw without encoding. On the other hand, the '''-o''' flag indicates the output file, which contains the encoded bytes in a binary file. The '''--verbose''' flag shows the KLV bytes encoded on the terminal.  
The following command is executed to perform the encoding. The'''--encode''' flag indicates that encoding is to be performed. The '''-i''' flag indicates the input file, where the metadata must be raw without encoding. On the other hand, the '''-o''' flag indicates the output file, which contains the encoded bytes in a binary file. The '''--verbose''' flag shows the KLV bytes encoded on the terminal.  


<syntaxhighlight lang=bash>
<syntaxhighlight lang="bash">
./misb-converter --verbose --encode -i misb_ST0601_sample.json -o klv.bin
./misb-converter --verbose --encode -i misb_ST0601_sample.json -o klv.bin
</syntaxhighlight>
</syntaxhighlight>
Line 241: Line 241:
</syntaxhighlight>
</syntaxhighlight>


<syntaxhighlight lang=bash>
<syntaxhighlight lang="bash">
./misb-converter --decode -i klv.bin -o output.json
./misb-converter --decode -i klv.bin -o output.json
</syntaxhighlight>
</syntaxhighlight>
Line 247: Line 247:
Once the command is executed, it reports that a decoded file was generated. The content of the output.json file is
Once the command is executed, it reports that a decoded file was generated. The content of the output.json file is


<syntaxhighlight lang=json>
<syntaxhighlight lang="json">
{  
{  
   "key": "060E2B34020B01010E01030101000000",
   "key": "060E2B34020B01010E01030101000000",
Line 370: Line 370:
and for the 0903 and 0102 respectively:
and for the 0903 and 0102 respectively:


<syntaxhighlight lang=json>
<syntaxhighlight lang="json">
{
{
   "key": "060E2B34020B01010E01030306000000",
   "key": "060E2B34020B01010E01030306000000",
Line 423: Line 423:
</syntaxhighlight>
</syntaxhighlight>


<syntaxhighlight lang=json>
<syntaxhighlight lang="json">
{  
{  
   "key": "060E2B34020301010E01030302000000",
   "key": "060E2B34020301010E01030302000000",
Line 450: Line 450:
You can enable the debugging using '''SetLogLevel''' in your application with the LibMISB. For example:
You can enable the debugging using '''SetLogLevel''' in your application with the LibMISB. For example:


<syntaxhighlight lang=cpp>
<syntaxhighlight lang="cpp">
   libmisb::LibMisb libmisb;
   libmisb::LibMisb libmisb;
   libmisb.SetLogLevel(LIBMISB_DEBUG);
   libmisb.SetLogLevel(LIBMISB_DEBUG);
Cookies help us deliver our services. By using our services, you agree to our use of cookies.