4 releases

0.1.3 Aug 9, 2021
0.1.2 Aug 2, 2021
0.1.1 Jul 28, 2021
0.1.0 Jul 28, 2021

#5 in #persist

MIT license

13KB
262 lines

perseverance

A rust library for simplifying the process of maintaining persistency between runtimes.

Usage

To use the generic type that implements Persist use the feature types.

To use perseverance in async the async feature can be used which will enable the PersistAsync trait, this will also enable the #[async_trait] macro which is re-exported from the async_trait crate.

Here is an example implementation for having simple persistency for a textfile that can, either be saved directly or on a set interval.

The type of storage will not matter as any config needed will be inside the Config type, this means that it should be possible to for example switch between saving to file and saving to a database relatively easily.

Example


    fn using_struct() {
        let mut persistent_text = TextFile::new(PathBuf::from("test.json")); // Setup struct
        load(&mut persistent_text);

        persistent_text.data = "Hello World!".into(); // Change Data
        persist(&persistent_text); // Persist

        // Do other work...

        persistent_text.data = "Bye!".into();
        persist(&persistent_text);
    }

    fn using_generic_struct() {
        let path = PathBuf::from("generic.json");

        let mut persistent_text: JsonPreserve<String> = JsonPreserve::new("".into(), path);
        load(&mut persistent_text);

        // Do other work...

        *persistent_text = "Bye!".into();
        persist(&persistent_text);
    }

    fn load<T>(persist: &mut T)
    where
        T: Persist,
    {
        persist.load().unwrap();
    }

    fn persist<T>(persist: &T)
    where
        T: Persist,
    {
        persist.persist().unwrap();
    }

    #[derive(Debug)]
    pub struct TextFile {
        pub data: String,
        config: PathBuf,
    }

    impl TextFile {
        fn new(config: PathBuf) -> Self {
            TextFile {
                data: "".into(),
                config,
            }
        }
    }

    impl Persist for TextFile {
        type Error = std::io::Error;

        type Config = PathBuf;

        fn persist(&self) -> Result<(), Self::Error> {
            // Save to file
        }

        fn load(&mut self) -> Result<(), Self::Error> {
            // Load from file
        }
    }

Dependencies

~0–305KB