Giter Site home page Giter Site logo

pg1003 / golomb Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 1.0 49 KB

A C++ library to compress integer values using Exponential Golomb Encoding

License: MIT License

Makefile 13.19% C++ 86.81%
compression cpp exponential-golomb-encoding golomb-encoding integer-compression logging

golomb's People

Contributors

pg1003 avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

crustashrimp

golomb's Issues

pg::golomb::encode unsafe output iterator

The encode function has a generic type OutputIt.
The name suggests it should be an output iterator.
Maybe a concept/requirement can be used to force the OutputIt to at least be an output iterator of correct type (by using std::output_iterator)
However, since the size of the output is unknown, there is a risk of running out of space in the container.

In the examplecode test.cpp, std::back_inserters are used everywhere. This is always* safe.
However, suppose the vector result was preallocated or was an std::array instead, then it would be unsafe since it might occur that the result takes more than the preallocated amount of elements.
There is no way to know beforehand, and there is no way to test currently, since inside the function, the original container cannot be accessed.

Two suggested solutions:

  • Make the parameter a reference to a container and use the std::back_inserter within the API, so e.g. line 201:
encoder< OutputIt, OutputDataT > e( output, k );

Turns into

encoder< std::back_inserter<OutputContainer>, OutputDataT > e( std::back_inserter<outputcontainer>, k );

, where outputcontainer is required to be some container.
This is still unsafe, since a std::array might not have the correct size either, and the std::back_inserter will fail at some point

  • return a container by moving it out of the encode function. In this way, the correct size is guaranteed.
    The type of container could be specified by template parameter (with requirement of being a container with back_inserter)

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.