Skip to content

Yet another archive format, mainly made for my own amusement, but please feel free to use

License

Notifications You must be signed in to change notification settings

dabraude/YetAnotherArchive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YetAnotherArchive

Yet another archive format, mainly made for my own amusement, but I designed it around being included into other people's software. The goal is to have something that could be easy to distribute to customers for say license files, models, game files ... but also something just for keeping things together.

I wanted something that fufills the following:

  • Random access of indiviual files / entries
  • Easy to modify
  • Self verification
  • Individual entries can be treated different (encryption / compression / data-recovery)
  • Free to use
  • No hard limits on space (in principle, maybe not in this implementation)
  • Reference implementation in C++ with C API and Python bindings for it
  • if no entries are in the archive, the entire thing should be text

I'm sure something like this exists already, but I couldn't find it with a 5 second Google.

You may be asking about the last requirement. This is so that an empty archive it could be used a license file if all the license info was in the archive header, and this can in turn be put into a JSON. Thus saving an extra file type, and you can use something like IoT Device shadows to update info.

Format specification:

  • Start of the file magic string and version number YAA_MAGIC_STRING(1) where the 1 is the format version number

  • End of file in order from the back, hashes / number etx are written in lower case ascii:

    • 40 characters are the SHA1 hash of the entire file other than the signature and the checksum
    • the size of the signature (decimal)
    • the signature, must be a valid JSON, but may be empty ie {}
    • the size of the header JSON (decimal)
    • The header
  • The header format, must be a valid JSON: - an index of entities in the archive call entities, list of strings - other than that anything may be included

The minimal file is thus:

YAA_MAGIC_STRING(1){}2{}25dda7a6d74ad57464328f99f485bd3404e3d399a

Each files entry looks like this:

        {
          "name":"name",
          "size" : 0,
          "metadata":{
          }
         }

Obviously the name and size need to be replaced as appropriate. The metadata is required but can be empty.

The SHA1 hash show be used for only for an checksum of the data check and is used because the signatures takes longer to calculate.

Building

requires the openssl developement libraries

init & build the submodules (cJSON)

This will be updated if I think of anything else.

Development

Use PEP-7 coding style

About

Yet another archive format, mainly made for my own amusement, but please feel free to use

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published