Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heremaps/flatdata
Write-once, read-many, minimal overhead binary structured file format.
https://github.com/heremaps/flatdata
cpp memory-mapped python3 rust serialization storage
Last synced: about 23 hours ago
JSON representation
Write-once, read-many, minimal overhead binary structured file format.
- Host: GitHub
- URL: https://github.com/heremaps/flatdata
- Owner: heremaps
- License: apache-2.0
- Created: 2018-01-18T20:34:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T14:26:33.000Z (7 months ago)
- Last Synced: 2024-04-25T02:41:08.040Z (7 months ago)
- Topics: cpp, memory-mapped, python3, rust, serialization, storage
- Language: Python
- Homepage:
- Size: 1.8 MB
- Stars: 176
- Watchers: 20
- Forks: 27
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flatdata [![Build Status](https://api.travis-ci.com/heremaps/flatdata.svg?branch=master)](https://travis-ci.com/heremaps/flatdata/)
_Write-once, read-many, minimal overhead binary structured file format._
Flatdata is a library providing data structures for convenient creation, storage and access of packed memory-mappable structures with minimal overhead.
With `flatdata`, the user defines a schema of the data format using a very simple schema language that supports plain structs, vectors and multivectors. The schema is then used to generate builders and readers for serialization and deserialization of the data to an archive of files on disk.
The data is serialized in a portable way which allows zero-overhead random access to it by using memory mapped storage: the operating system facilities are used for loading, caching and paging of the data, and most important, accessing it as if it were in memory.
## Why `flatdata`
Flatdata helps creating efficient _read-only_ datasets:
* Zero overhead random access
* Support for bit and byte packing
* Structuring data using a schema definition
* Optimized for large read-only datasets
* Portable, with support for multiple languagesFlatdata _doesn't_ provide:
* Backwards compatible schema evolution
* Support for mutable datasets
* Portable floating point serializationFor more details read [why flatdata](docs/why-flatdata.md).
## Using `flatdata`
### Creating a schema
Define a flatdata archive:
```cpp
namespace loc {
struct Point {
x : u32 : 32;
y : u32 : 32;
}
archive Locations {
pois : vector< Point >;
}
}
```The full schema documentation can be found [here](docs/schema-language.md).
### Generating a module
Flatdata relies on a generator that takes a flatdata schema file as an input and
generates a module for one of the supported languages.The following languages are supported:
* First-class citizen implementations:
* **[C++](./flatdata-cpp)** - used extensively, tested excessively normally receives features first
* **[Rust](./flatdata-rs)** - the newest addition to the family
* Read-only implementations:
* **[Python](./flatdata-py)** - used mostly for inspecting the data
* **[Dot](./flatdata-dot)** - used to generate diagrams of the schema
* **[Go](./flatdata-go)** - beta implementation### Generate code
See the [generator's README](./flatdata-py/generator/README.md#usage) for instructions.
## License
Copyright (c) 2017-2020 HERE Europe B.V.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this document by you, as defined in the Apache-2.0 license,
without any additional terms or conditions.