FileOutputStream.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-09
  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. * */
  19. namespace ls::std::io
  20. {
  21. class LS_STD_DYNAMIC_GOAL FileOutputStream : public ls::std::core::Class, public ls::std::core::interface_type::IWriter
  22. {
  23. public:
  24. explicit FileOutputStream(const ls::std::io::File &_file);
  25. explicit FileOutputStream(const ls::std::io::File &_file, bool _append);
  26. ~FileOutputStream() noexcept override;
  27. void close();
  28. bool write(const ls::std::core::type::byte_field &_data) override; // nodiscard is optional here
  29. private:
  30. bool append{};
  31. ls::std::io::File file;
  32. ::std::ofstream outputStream{};
  33. void _close();
  34. void _init();
  35. };
  36. }
  37. #endif