Home / News / Bounty - ICDevs.org GZip Encoder Decoder
Austin Fatheree, February 21 2022
This bounty gives the opportunity to
The goal of this bounty is to create an encoder/decoder to gzip/zlib data in motoko canisters written in Motoko. GZip is a compression algorithm that compresses raw data into a manageable file size. It uses the DEFLATE algorithm.
More info about GZip can be found at:
https://git.savannah.gnu.org/cgit/gzip.git/?h=v1.11
http://www.infinitepartitions.com/art001.html
Example GZip/Zlib libraries can be found at:
https://github.com/nodeca/pako
https://github.com/sile/libflate
The library will need to support compressing and uncompressing large data arrays that likely outrun the current cycle limit. You will need to use a library like Pipelinify.mo. Using pipelinify is not required if another, better method is available. The bounty applicant may also enhance pipelinify.mo for their needs.
The library will need to provide the following functions(or equivalent with a different multi-step processing library):
compress(Pipelinify.ProcessRequest) -> Pipelinify.ProcessResponse; //sets up a compress process
compress_process(Pipelinify.StepRequest) -> Result<ProcessResponse,ProcessError>; //executes a step
decompress(Pipelinify.ProcessRequest) -> Pipelinify.ProcessResponse; //sets up a decompress process
decompress_process(Pipelinify.StepRequest) -> Result<ProcessResponse,ProcessError>; //executes a step
compress_result(Pipelinify.ProcessingStatusRequest) -> Buffer<Buffer.Buffer<nat8>>, metadata: ZIP};
decompress_result(Pipelinify.ProcessingStatusRequest) -> Buffer<Buffer.Buffer<nat8>>;
clear_cache(?Pipelinify.ProcessingStatusRequest) -> bool; //clean out any pipelinify cache for a status request, or the entire cache if null
type ZIP = {
//see the spec and define this type
}
The ProcessRequest variables will need to be defined by the developer to conform with the spec. For this bounty, the dev may implement one optimal configuration of the compression inputs. A future bounty can allow for more customization.
Results should generally be returned in Buffer.Buffer<Buffer.Buffer
The developer will need to experiment with process chunking strategies and make recommendations about how much data can be processed during one process cycle. Hopefully, we can remove this requirement once deterministic time slicing is integrated.
The final delivery should include test cases for both single step and multistep compression/decompression.
The package should be deployed as a vessel package.
The ICDevs.org developer’s advisors will propose a vote to award the bounty and the Developer Advisors will vote.
Please keep your ongoing code in a public repository(fork or branch is ok). Please provide regular (at least weekly) updates. Code commits count as updates if you link to your branch/fork from the bounty thread. We just need to be able to see that you are making progress.
The balance of the bounty will be paid out at completion.
Once you have finished, please alert the dev forum thread that you have completed work and where we can find that work. We will review and award the bounty reward if the terms have been met. If there is any coordination work(like a pull request) or additional documentation needed we will inform you of what is needed before we can award the reward.
If you cease work on the bounty for a prolonged(at the Developer Advisory Board’s discretion) or if the quality of work degrades to the point that we think someone else should be working on the bounty we may re-award it. We will be transparent about this and try to work with you to push through and complete the project, but sometimes, it may be necessary to move on or to augment your contribution with another resource which would result in a split bounty.
The bounty was generously funded by the DFINITY Foundation. If you would like to turbocharge this bounty you can seed additional donations of ICP to 77f7c65f6a5b59e8694ab9594ee6ba4fd2d9fb4d8197e869173f22679d8465c8. ICDevs will match the donation 0.25 ICP to this bounty and 0.75 ICP to other ICP Activities. All donations will be tax deductible for US Citizens and Corporations. If you send a donation and need a donation receipt, please email the hash of your donation transaction, physical address, and name to donations@icdevs.org. More information about how you can contribute can be found at our donations page.
The draft bounty is posted to the DFINITY developer’s forum for discussion
The developer advisor’s board will propose a bounty be ratified and a vote will take place to ratify the bounty. Until a bounty is ratified by the Dev it hasn’t been officially adopted. Please take this into consideration if you are considering starting early.
Developers can submit applications to the Dev Forum post. The council will consider these as they come in and propose a vote to award the bounty to one of the applicants. If you would like to apply anonymously you can send an email to austin at icdevs dot org or sending a PM on the dev forum.
A developer is currently working on this bounty, you are free to contribute, but any splitting of the award will need to be discussed with the currently assigned developer.
The Dev Council is reviewing the submission
The award has been given and the bounty is closed.