Code Monkey home page Code Monkey logo

asyncstreamcopycpp's Introduction

Async Stream-Copy CPP

What

This is a simple crossplatform c++ implementation of copying one stream to another asynchronously, typically for IO (netowork/file/usb/etc) access. It consists of only two files (.cpp/.h).

Why

There are many great stackoverflow questions (such as [this] (http://stackoverflow.com/questions/1540658/net-asynchronous-stream-read-write) one) that give good examples on how to asyncrously read from one stream, and asyncrounously write to another. However, I couldn't find anyone proposing a solution to the same problem, but for c++.

This is really needed for doing IO access to custom locations. Sure, windows has the FILE_FLAG_OVERLAPPED support, but what about when the source/destination is something the OS knows nothing about?

Use case

A good use case would be copying a file to an iOS device (using libimobiledevice). The write operation to iOS over USB is slow. Synchronously, this problem gets worse because between each write, you have to read from the file system. If done asynchronously, we can ensure that the write operation has a continous stream of bytes that have been read from another thread. The copy performance improves greatly when doing this asynchronously.

Supported environments

  • Windows
  • Linux*
  • Mac*

* This implementation has currently only been tested using Windows. Please, feel free to use it on Linux/Mac and let me know how it works. Bonus points if you submit a pull-request!

asyncstreamcopycpp's People

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.