Git Product home page Git Product logo

Comments (4)

mosquito avatar mosquito commented on May 27, 2024 1

@h4l I think should trying to add asyncio.Lock. Of course create a PR, I will assist to fix it.

from aiofile.

mosquito avatar mosquito commented on May 27, 2024

I intentionally didn't put any locks on it. Here the behavior completely repeats the behavior of the operating system. Usually the user has to take care of opening and closing the file correctly, tell us why you want to open the same instance in different coroutines?

from aiofile.

h4l avatar h4l commented on May 27, 2024

I use the AIOFile in a class. Its methods which operate on the file assume it may not have been opened, so they await the AIOFile object before using it to ensure it's open. I don't think there's a way to check if an AIOFile was already opened (without poking at the private _file_obj) so my __init__() can't enforce that the file is open when instances are created. And if I opened it in init myself, I'd have to create an asyncio.Task for the async open to handle failures.

I will probably refactor to do the open once in my __aenter__(). I guess I don't really want to open it multiple times, but doing so was the simplest way to ensure it was open, and I didn't expect that doing that would cause this kind of bug.

from aiofile.

h4l avatar h4l commented on May 27, 2024

Are you happy with the current behaviour, or would you be open to a PR to change it? A few options come to mind:

  1. Use a lock so that concurrent open() calls can't result in the actual file being opened more than once
  2. Don't lock, but take an optimistic concurrency control approach — after getting a file handle, check again if one was opened while waiting, and don't overwrite the existing FD if so
  3. As 2. but raise an error if the file was concurrently opened more than once (assuming you feel it's not a valid use of the API to call open() concurrently)
  4. Something else?

I'd be happy to contribute a PR.

from aiofile.

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.