Git Product home page Git Product logo

go-streaming-globber's Introduction

Streaming Globber for Go

This repository contains a package that provides functionality very similar to filepath.Glob, but avoids the following pitfalls (at the expense of complexity):

  • filepath.Glob cannot be cancelled. If it starts running on an extremely large directory tree, your goroutine is blocked until it finishes.

  • filepath.Glob collects each directory's entire contents in a slice and sorts it - this is expensive for large directories.

This is not an officially supported Google product.

Aside from avoiding those pitfalls (and, by necessity, dropping the un-spoken promise that filepath.Glob returns directory contents sorted), this library strives to produce the same results as filepath.Glob. In fact, if when reading the code you think "this is an awkward retrofit of asynchronous API on to a synchronous algorithm", your observation is correct. This code was copy-pasted from the Go standard library and modified to provide asynchronous operation without altering the fundamental globbing algorithm: confidence in the algorithm's equivalence to filepath.Glob is valued before the code's independent beauty.

go-streaming-globber's People

Contributors

bjackman avatar gnoack avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

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.