Background: I am working on a Python project where, given a set of input files (text/image/audio), it generates an executable game. The text files are there to describe the rules of the game.

Currently, the program reads and parses the files upon each startup, and builds a Python class that contains these rules, as well as links to image/audio files. This is fine for now, but I don’t want the end executable to have to bundle these files and re-parse them each time it gets run.

My question: Is there a way to persist the instance of my class to disk, as it exists in memory? Kind of like a snapshot of the object. Since this is a Python project, my question is specific to Python. But, I’d be curious if this concept exists anywhere else. I’ve never heard of it.

My aim is not to serialize/de-serialize the class to a text file, but instead load the 1’s and 0’s that existed before into an instance of a class.

  • GBU_28@lemm.ee
    link
    fedilink
    English
    arrow-up
    0
    ·
    14 days ago

    Pickle.

    But, depending on the needs, writing to SQLite can be blazing fast and you could store your data as BLOB as needed

  • UnfortunateShort@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    15 days ago

    I think pickle is what you want.

    Keep in mind that this might have a huge performance impact if you do it all the time - it’s still IO even when it’s not parsing.

    • spacemanspiffy@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      15 days ago

      My idea would be to load one larger file one time and not parse anything, and keep it in memory the entire time. Versus what it does now which is load the files and parse them and keep everything in memory.

      But three people responding here so far with “pickle” so maybe that is the way.

  • jerkface@lemmy.ca
    link
    fedilink
    English
    arrow-up
    0
    ·
    15 days ago

    The Zope Object Data Base (aka ZODB) exists for more complex persistence use cases. It’s been a long time, though, there are probably more modern options.

  • solrize@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    15 days ago

    The quick answer is to use a serialization/deserialization library like pickle. You can’t just dump a binary image and reload it in any simple way.

  • WolfLink@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    15 days ago

    What is the “executable” in this context? I’m kinda confused as to what you are looking for.

    What’s wrong with parsing the input files at runtime? Is it performance? Do you want one file to load instead of multiple?

    Many have suggested pickle, which is kinda what you are asking for, but on some level it’s not much different from parsing the input files. Also, depending on your code, you may have to write custom serialization code as part of getting pickle to work.

    Note that pretty much every modern game is a bundle of often multiple pieces of executable code alongside a whole bunch of separate assets.

  • jerkface@lemmy.ca
    link
    fedilink
    English
    arrow-up
    0
    ·
    14 days ago

    I took a closer look at what you are asking for and no, you cannot hand a reference to a python structure to a library and have it write the binary data from memory out to disk, then read that same binary data back into living Python instances later. That’s just not how Python works. For one thing, any such structure is full of pointers which would be invalid unless you re-load to the same address in memory, which is not practical. You have to serialize and de-serialize.