Giter VIP home page Giter VIP logo

Comments (5)

spc476 avatar spc476 commented on August 28, 2024

The reason I did CBOR tag 55799 the way I did was due to this bit from RFC-7049 (section 2.4.5):

In many applications, it will be clear from the context that CBOR is being employed for encoding a data item. For instance, a specific protocol might specify the use of CBOR, or a media type is indicated that specifies its use. However, there may be applications where such context information is not available, such as when CBOR data is stored in a file and disambiguating metadata is not in use. Here, it may help to have some distinguishing characteristics for the data itself.

Tag 55799 is defined for this purpose. It does not impart any special semantics on the data item that follows; that is, the semantics of a data item tagged with tag 55799 is exactly identical to the semantics of the data item itself.

It adds no semantic meaning and is meant more for a magic value than anything else.

from cbor.

mischief avatar mischief commented on August 28, 2024

i understand that. however, without my change it is unclear how to:

  • encode a data item with tag 55799
  • decode a data item tagged as 55799

all of the other decoding functions in TAG table work this way, so why not for _magic_cbor too?

from cbor.

spc476 avatar spc476 commented on August 28, 2024

That's the way I wrote it, since tag 55799 has no semantic meaning other than itself. And here's code to encode and decode with that tag:

local cbor = require "org.conman.cbor"
local pre  = { 1 , 2 , 3 , 4 , 5 }
local raw  = cbor.TAG._magic_cbor() .. cbor.encode(pre)
local magic,pos = cbor.decode(raw)

if magic ~= '_magic_cbor' then
  print("error")
end

local post = cbor.decode(raw:sub(pos,-1))

from cbor.

mischief avatar mischief commented on August 28, 2024

you don't think this is a little better, to match the behavior of the other TAG types? if not, feel free to close this issue.

local cbor = require "org.conman.cbor"
local pre  = { 1 , 2 , 3 , 4 , 5 }
local raw = cbor.TAG._magic_cbor(pre)
local post, _, magic = cbor.decode(raw, 1)

from cbor.

spc476 avatar spc476 commented on August 28, 2024

I don't. Because the semantics don't exist past the tag itself, this is the only tag (as I interpret it) that can be immediately followed by another tag, say, #24, which tags the following binary string as CBOR data to be processed at a later time, or a Perl object (#26, an extension). The code you have returns the following item as _magic_cbor, which technically isn't correct.

Think of the tag _magic_cbor, the three bytes 0xD9, 0xD9, 0xF7, as a magic value marking CBOR data, much like the bytes 0x7F, 0x45, 0x4C, 0x46 as marking an ELF executable under Unix, 0x47, 0x49, 0x46, 0x38, 0x39, 0x61 marking a GIF or 0x89, 0x50, 0x4E, 0x47 a PNG.

from cbor.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.