gofileseq

A library for parsing/building frame ranges and sequences. A port of the python fileseq library, for Go and C++(https://github.com/justinfx/fileseq)

MIT License

Stars
55

Bot releases are visible (Hide)

gofileseq - Patch v2.2.3

Published by justinfx over 8 years ago

New in v2.2.3

2.2.3

  • #8 - Bug: Use deterministic resolution of the padding character in findSequencesOnDisk()

Previous releases:

2.2.2

  • cmd/seqinfo - New tool for parsing and printing info about one or more file seq patterns
  • Refactored vendoring into cmd/ location

2.2.1

  • waf c++ build flags updated for static lib to avoid errors about -fPIC when link into another C++ lib
gofileseq -

Published by justinfx over 8 years ago

Changes:

  • Major refactor to the underlying logic of resolving ranges. Use an optimized storage and iteration approach, in order to
    handle arbitrarily large ranges. Avoids memory allocation crashes, and very slow construction of FrameSet/FileSequence

Known Issues:

  • While creating a FrameSet from a massive range like "1-10000000000x2" will be very quick, creating
    FrameSets from multi-ranges with massive components like "20,50,60-10000000000" may be slow.
    Improvements are still needed to the process of detecting unique values in the previously added
    range components.
  • Invert/Normalize functions are not as optimized as they could be. While they are much faster now for the common case of source
    ranges like "1-10x2,50-100x3", they are significantly slower for less common cases where the source range is a massive amount
    of individual values like "1,2,3,4,...,100000"
gofileseq - 2.0.1

Published by justinfx over 8 years ago

Changes:

  • cmd/seqls - Detect symlinks to directories and don't interpret them as discovered sequences