Hello! I’m writing a Qt/c++ program that should write and read data on a file, while another process does the same. What file format should I use to prevent conflicts?

  • @ENipo
    link
    91 year ago

    No file format will save you by itself since at the end of the day, xml, json, etc they are all plain text.

    One solution would be to use some database (like sqlite if you are just doing things locally on your computer).

    Another solution would be to have a single process that is responsible for writing the data, while all other processes send messages to it via a queue.

    • tubbaduOP
      link
      fedilink
      21 year ago

      I like the solution of the single process, thank you very much!

  • @[email protected]
    link
    fedilink
    511 months ago

    Can you describe your use case more?

    I don’t think format matters - if you’ve got multiple processes writing simultaneously, you’ll have a potential for corruption. What you want is a lock file. Basically, you just create a separate file called something like my process.lock. When a process wants to write to the other file, you check if the lock file exists - if yes, wait until it doesn’t; if no, create it. In the lock file, store just the process id of the file that has the lock, so you can also add logic to check if the process exists (if it doesn’t, it probably died - you may have to check the file you’re writing to for corruption/recover). When done writing, delete the file to release the lock.

    See https://en.wikipedia.org/wiki/File_locking, and specifically the section on lock files.

    This is a common enough pattern there are probably libraries to handle a lot of the logic for you, though it’s also simple enough to handle yourself.

    • @[email protected]
      link
      fedilink
      Deutsch
      111 months ago

      Or if possible, let the process communicate with the other and let only one write to the file.

    • tubbaduOP
      link
      fedilink
      111 months ago

      Wonderful! Ill look into it, seems very promising, thanks!