FileOutputStream.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-20
  6. * Changed: 2024-09-13
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_OUTPUT_STREAM_HPP
  10. #define LS_STD_FILE_OUTPUT_STREAM_HPP
  11. #include "File.hpp"
  12. #include <fstream>
  13. #include <ls-std/core/Class.hpp>
  14. #include <ls-std/core/interface/IWriter.hpp>
  15. #include <ls-std/os/dynamic-goal.hpp>
  16. /*
  17. * @doc: class(name: 'FileOutputStream', package: 'io')
  18. * @doc: io.FileOutputStream.description('This class can be used for writing to a file stream.')
  19. * */
  20. namespace ls::std::io
  21. {
  22. class LS_STD_DYNAMIC_GOAL FileOutputStream : public ls::std::core::Class, public ls::std::core::interface_type::IWriter
  23. {
  24. public:
  25. explicit FileOutputStream(const ls::std::io::File &_file);
  26. explicit FileOutputStream(const ls::std::io::File &_file, bool _append);
  27. ~FileOutputStream() noexcept override;
  28. void close();
  29. bool write(const ls::std::core::type::byte_field &_data) override; // nodiscard is optional here
  30. private:
  31. bool append{};
  32. ls::std::io::File file;
  33. ::std::ofstream outputStream{};
  34. void _close();
  35. void _init();
  36. };
  37. }
  38. #endif