Read files from .asar
archives with built-in caching.
Pack and Unpack to and from .asar
archives.
Add this to your application's shard.yml
:
dependencies:
asar-cr:
github: GeopJr/asar-cr
require "asar-cr"
asar = Asar::Reader.new "path/to/your/archive.asar"
io = asar.get "/awesome/image.png"
slice = asar.get_bytes "/awesome/story.txt"
asar.files # Returns an Array(String) of all files in the archive.
asar.files_cached # Returns an Array(String) of all files in the cache.
require "asar-cr"
asar = Asar::Extract.new "path/to/your/archive.asar"
asar.extract "path/to/your/folder" # Returns true if completed successfully.
require "asar-cr"
asar = Asar::Pack.new "path/to/your/folder"
asar.pack "path/to/your/archive.asar" # Returns true if completed successfully.
> crystal run spec/benchmark_read.cr --release
get 9.33M (107.18ns) (± 5.87%) 96.0B/op 3.23× slower
get_bytes 30.11M ( 33.22ns) (± 1.18%) 0.0B/op fastest
read_raw 280.96k ( 3.56µs) (± 6.42%) 8.17kB/op 107.15× slower
Note: Benchmark was done on an SSD and the test file was small.
The methods get
and get_bytes
cache a file at first read.
get
returns anIO::Memory
created from the cached fileget_bytes
returns the cached fileread_raw
reads directly from the filesIO
, bypassing the cache
> crystal run spec/benchmark_extract.cr --release
extract 4.95k (201.90µs) (± 6.65%) 29.5kB/op fastest
Note: Couldn't benchmark benchmark_pack.cr due to
Too many open files (File::Error)
.
- Updated to latest Crystal version
- Use of Path, allowing cross-platform usage.
- Added extract and pack functionality.
- Crycord: A Discord Client mod
- Fork it ( https://github.com/GeopJr/asar-cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request