Skip to content

jubako/jubako

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jubako

What is Jubako ?

Jūbako is the traditional lunch box used in Japan to store Bentos. It is a small box that stores food in small compartments.

Jubako is a container format to store things in organized manner. It is composed of packs that can be composed as needed.

It is container format extensible to fulfill specific need. As any container format it allow to store content in the container. It has some specificity :

  • Content can be compressed or not. Decide whether the content is compressed or not is made at content level.
  • Direct access. You don't need to decompress the whole archive on the file system or in memory to access a content.
  • Content is accessed using one or several entries stored in indexes.
  • The metadata (stored in the entries) are not defined. Each use case can (and must) specify which metadata to store.
  • Each entry can point to one content (basic use case) but it is not necessary. An entry can point to several contents or none.
  • The content can come in different variants. For example, images can be in low and high resolution.
  • Jubako can be incremental. It is possible to create archive containing only the difference between an existing archive and the content you want to store. (To implement)
  • Content can be put in different packs inside a container. Packs may be missing or reused in another Jubako container.

What Jubako is not ?

Jubako is a (directly usable) file format.

As xml, Jubako is a format describing how to store content and how it is structured. It doesn't specify what is stored and the hierarchy between those content.

The classical usage Jubako is to be used as base structure for a real life container.

Using Jubako

Jubako library is the low level library to read and write Jubako container. Jubako format is somehow a metaformat, each user (vendor) of Jubako has to specify its own format based on Jubako.

So, the classic use case is to create a library on top of jubako to wrap jubako structure and provide high level implementation.

You can have a look to arx which is files archive based on Jubako or waj to store website.

But as all Jubako files are in Jubako format. hether they are waj, arx or anything else are Jubako files. Jubako provide some tools to manipulate them in a generic way.

You can install thoses tools using: cargo install https://github.com/jubako/jubako --features build_bin

Jubako global structure

A Jubako container/archive is kind of conceptual container composed of (at least) three parts (called packs):

  • A manifest pack.
  • A directory pack.
  • One or several content pack.

All thoses packs can be stored separatly as different files or be put in one Jubako container file.

The manifest pack is the entrypoint pack, listing all packs being part of the archive. The directory pack is the pack listing the entries in the archive, containing metadata and pointing to content stored in the content packs. The content packs store raw (compressed) contents without any metadata.

Each pack (mostly content pack) can be shared between Jubako container, this can be used to avoid duplication or handle incremental archive.

jbk tool can be used to explore and manipulate packs.

Specification

You can find the specification and other documentation in the spec directory.