Giter Club home page Giter Club logo

libespfs's Introduction

About FrogFS

FrogFS (Fast Read-Only General-purpose File System) is a read-only filesystem designed for embedded use. It can be easily used with a CMake project โ€” including ESP-IDF. It has built-in filters to save space. Files in frogfs-clockwise-demo are reduced by about half using the default filters. Here are links to the example repositories:

Transform filters include:

  • babel-convert
  • babel-minify
  • deflate
  • gzip
  • brotli
  • html-minifier
  • rename
  • terminate
  • uglify-js
  • uglifycss

Compression filters include:

Transform filters are intended to be compile-time operations that do not incur a run-time cost while compression filters are expected to incur a run-time decompression cost.

This means for an HTTP server, zlib (deflate), brotli (br) or gzip compressed files can be passed through untouched! This saves processing time and bandwidth.

Getting started with ESP-IDF

To use this component with ESP-IDF, within your projects directory run

idf.py add-dependency jkent/frogfs

Embedding a FrogFS image

Embed FrogFS within your project binary with the folowing CMake function:

target_add_frogfs(<target> [CONFIG yaml] [NAME name])

If CONFIG is not specified, frogfs.yaml will be used. If NAME is not specified, it will default to frogfs.

As an example for ESP-IDF, in your project's toplevel CMakeLists.txt:

cmake_minimum_required(VERSION 3.16)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(my_project)

target_add_frogfs(${PROJECT_NAME}.elf)

In C, this results in these two global symbols being available to your application:

extern const uint8_t frogfs_bin[];
extern const size_t frogfs_bin_len;

Making a FrogFS binary and flashing it

You have the option of creating a binary without linking it with your application. A CMake function is provided to output a binary with target generate_${name}.

declare_frogfs_bin(path [CONFIG yaml] [NAME name])

If CONFIG is not specified, frogfs.yaml is used. If NAME is not specifed, frogfs is used.

Here's an example of what you can add to your toplevel CMakeLists.txt:

set(FROGFS_NAME frogfs)
declare_frogfs_bin(NAME ${FROGFS_NAME})

idf_component_get_property(main_args esptool_py FLASH_ARGS)
idf_component_get_property(sub_args esptool_py FLASH_SUB_ARGS)
esptool_py_flash_target(${FROGFS_NAME}-flash "${main_args}" "${sub_args}" ALWAYS_PLAINTEXT)

esptool_py_flash_to_partition(${FROGFS_NAME}-flash storage ${BUILD_DIR}/CMakeFiles/${FROGFS_NAME}.bin)
add_dependencies(${FROGFS_NAME}-flash generate_${FROGFS_NAME}_bin)

You can invoke the flash process by running idf.py frogfs-flash.

Configuration

FrogFS expects a yaml configuration file. There are 3 different sections: define, collect and filter. All but collect is optional.

Define is a list or dict of variable definitions. There are 2 predefined variables: $cwd and $frogfs. You can also reference environment variables with the ${ENV:varname} syntax.

Collect 'gathers' up files and directories and places them in the frogfs root. Glob patterns are allowed in the 'basename' component of the path. There are 3 ways to specify sources; they cn be a string, list, or dictionary. If it's a string, the path(s) become the root directory. If a list, the paths are merged in order and become the root directory. If a dict is used, the paths are merged into the destination of choice; empty string being the root directory. Variables are expanded for both source and destination.

Filter allows you to do post-processing on the files before they are integrated. Filter is a list or dict of dicts; with a glob pattern to a list of verbs. Varibales are expanded and all patterns are evaluated for each file or directory, top down. Transforms are applied first, then an optional final compression before caching the file.

Verbs are applied in descending order. You can prefix a transforms or the compress verb with no to disable it. There are a couple of special verbs: discard which prevents inclusion and cache (default), which caches the file in the build cache. See frogfs_example.yaml for example usage.

Usage

Two interfaces are available: the bare API or when using IDF there is the VFS interface which builds on top of the bare API. You should use the VFS interface in IDF projects, as it uses the portable and familiar posix and stdio C functions with it. There is nothing preventing you from mix and matching both at the same time, however.

Shared initialization

Configuration requries defining a frogfs_config_t structure and passing it to frogfs_init. Two different ways to specify the filesystem:

  1. a memory address using the addr variable:
frogfs_config_t frogfs_config = {
    .addr = frogfs_bin,
};
  1. a partition name using the part_label string:
frogfs_config_t frogfs_config = {
    .part_label = "storage",
};

Then it is just a matter of passing the frogfs_config to frogfs_init function and checking its return variable:

frogfs_fs_t *fs = frogfs_init(&frogfs_config);
assert(fs != NULL);

When done, and all file handles are closed, you can call frogfs_deinit:

frogfs_deinit(fs);

VFS interface

The VFS interface has a similar method of initialization; you define a frogfs_vfs_conf_t structure:

  • base_path - path to mount FrogFS
  • fs - a frogfs_fs_t instance
  • max_files - max number of files that can be open at a time
frogfs_vfs_conf_t frogfs_vfs_conf = {
    .base_path = "/frogfs",
    .fs = fs,
    .max_files = 5,
};
frogfs_vfs_register(&frogfs_vfs_conf);

Bare API

Filesystem functions:

Object functions:

Directory Functions:

How it works

Under the hood there is a hash table consisting of djb2 path hashes to entry offsets, which allow for fast lookups using a binary search algorithm. All entries except the root entry have a parent locator offset. Directory entries have a sorted list of offsets to child entries.

FrogFS binaries can be either embedded in your application, or accessed using memory mapped I/O. It is not possible (at this time) to use FrogFS without the file system binary existing in data address space.

Creation of a FrogFS filesystem is handled by a single tool, tools/mkfrogfs.py. It uses transforms in the tools directory, or you can add your own transforms by creating a tools directory in your projects root directory, with a filename starting with transform- and ending with .js or .py. Transform tools take data on stdin and produce output on stdout.

Both transform and compresors can accept arguments. See frogfs_example.yaml for an example.

History and Acknowledgements

FrogFS was split off of Chris Morgan (chmorgan)'s libesphttpd project (MPL 2.0), which is a fork of Jeroen Domburg (Sprite_tm)'s libesphttpd (BEER-WARE). This project would never have existed without them.

Thank you to all the contributors to this project!

libespfs's People

Contributors

arex-ebee avatar jkent avatar jrspruitt avatar khassounah-ample avatar llaemmle avatar m-bab avatar maxsydney avatar meowthink avatar pchevali avatar phatpaul avatar sanjay900 avatar simap avatar spider84 avatar x-ryl669 avatar xobs avatar

Watchers

 avatar  avatar

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.