Code Monkey home page Code Monkey logo

Comments (1)

tsolomko avatar tsolomko commented on August 18, 2024

Hmm, I am not sure about this.

As far as I understand you would like to have the following function added (as an example, I use Deflate here, but this also applies to other components):

extension Deflate {

    public static func decompress<Result>(data: Data, _ callback: ((???) -> Result)? = nil) throws -> Data {
        /* ... */ 
    }

}

The key question here is what should be the input type of the callback? What value should decompression function pass to the callback function to indicate the progress? Off the top of my head, I can think of two options, both vaguely defined:

  1. Some numerical value indicating how many "internal structures" (blocks, frames, streams, etc.) from the input data has been processed so far. However, in many cases it is impossible to tell ahead of time without processing the entire input, how many of these structures you have in total, and without that this progress value is even more meaningless.
  2. How many bytes of the input have been processed so far. While this is better defined, there is another problem: how often/at what points during the decompression should the callback function be called. Depending on the answer to this question, you may end up with callback function being called too often, which in turn will slow down the decompression even more.

Finally, I should point out that the phrase "show that everything is okay" is also hard to define, because in practice everything is okay by default, and if something is not, an error is thrown. In view of this, I personally think that the callback function is a bit redundant.

from swcompression.

Related Issues (20)

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.