| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Co-Author: Claude Sonnet 4.6 (LLM)
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-19
- * Changed: 2026-06-23
- *
- * */
- #include <ls-std/io/FileReader.hpp>
- #include <ls-std/io/FileWriter.hpp>
- #include <ls-std/io/StorableFile.hpp>
- using ls::standard::core::type::byte_field;
- using ls::standard::io::File;
- using ls::standard::io::FileReader;
- using ls::standard::io::FileWriter;
- using ls::standard::io::StorableFile;
- using std::make_shared;
- using std::shared_ptr;
- using std::string;
- StorableFile::StorableFile(const string &_path)
- {
- this->_init(_path);
- }
- StorableFile::~StorableFile() noexcept = default;
- shared_ptr<File> StorableFile::getFile() const
- {
- return this->file;
- }
- byte_field StorableFile::load()
- {
- FileReader reader{*this->file};
- return reader.read();
- }
- void StorableFile::reset(const string &_path)
- {
- this->_init(_path);
- }
- void StorableFile::save(const byte_field &_data)
- {
- FileWriter writer{*this->file};
- writer.write(_data);
- }
- void StorableFile::_init(const string &_path)
- {
- if (this->file == nullptr)
- {
- this->file = make_shared<File>(_path);
- }
- else
- {
- this->file->reset(_path);
- }
- }
|