File.hpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-15
  6. * Changed: 2022-05-11
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_HPP
  10. #define LS_STD_FILE_HPP
  11. #include <ls_std/core/Class.hpp>
  12. #include <string>
  13. #include <vector>
  14. #include <list>
  15. #include <ctime>
  16. #include <regex>
  17. #if defined(unix) || defined(__APPLE__)
  18. #include <dirent.h>
  19. #endif
  20. #ifdef _WIN32
  21. #include <windows.h>
  22. #endif
  23. namespace ls
  24. {
  25. namespace std
  26. {
  27. namespace io
  28. {
  29. class File : public ls::std::core::Class
  30. {
  31. public:
  32. explicit File(::std::string _absoluteFilePath);
  33. ~File() override = default;
  34. // comparison operators
  35. bool operator==(ls::std::io::File &_file);
  36. bool operator!=(ls::std::io::File &_file);
  37. // additional functionality
  38. bool canExecute();
  39. bool canRead();
  40. bool canWrite();
  41. void createNewFile();
  42. bool exists();
  43. ::std::string getAbsoluteFilePath();
  44. ::std::string getName();
  45. ::std::string getParent();
  46. static ::std::string getWorkingDirectory();
  47. long getSize();
  48. bool isDirectory();
  49. bool isFile();
  50. time_t lastModified();
  51. ::std::list<::std::string> list();
  52. ::std::list<::std::string> listFiles();
  53. void makeDirectory();
  54. void makeDirectories();
  55. void remove();
  56. bool renameTo(const ::std::string &_newName);
  57. void reset(const ::std::string &_newPath);
  58. private:
  59. ::std::string absoluteFilePath{};
  60. #if defined(unix) || defined(__APPLE__)
  61. static void _addToFileListUnix(const ::std::string &_path, bool _withDirectories, dirent *directoryEntity, ::std::list<::std::string> &_list);
  62. #endif
  63. #ifdef _WIN32
  64. static void _addToFileListWindows(const ::std::string &_path, bool _withDirectories, WIN32_FIND_DATA _data, ::std::list<::std::string> &_list);
  65. #endif
  66. static bool _equals(ls::std::io::File &_file, ls::std::io::File &_foreignFile);
  67. static bool _exists(const ::std::string &_path);
  68. static ::std::string _getParent(const ::std::string &_path);
  69. #if defined(unix) || defined(__APPLE__)
  70. static ::std::string _getWorkingDirectoryUnix();
  71. #endif
  72. #ifdef _WIN32
  73. static ::std::string _getWorkingDirectoryWindows();
  74. #endif
  75. static bool _isDirectory(const ::std::string &_path);
  76. static bool _isExecutable(const ::std::string &_path);
  77. static bool _isFile(const ::std::string &_path);
  78. #if defined(unix) || defined(__APPLE__)
  79. static bool _isReadableUnix(const ::std::string &_path);
  80. #endif
  81. #ifdef _WIN32
  82. static bool _isReadableWindows(const ::std::string &_path);
  83. #endif
  84. static bool _isWritable(const ::std::string &_path);
  85. static time_t _lastModified(const ::std::string &_path);
  86. static ::std::list<::std::string> _list(const ::std::string &_path);
  87. static ::std::list<::std::string> _listFiles(const ::std::string &_path);
  88. #if defined(unix) || defined(__APPLE__)
  89. static ::std::list<::std::string> _listUnix(const ::std::string &_path, bool withDirectories);
  90. #endif
  91. #ifdef _WIN32
  92. static ::std::list<::std::string> _listWindows(const ::std::string &_path, bool withDirectories);
  93. #endif
  94. static int _mkdir(const ::std::string &_path);
  95. static ::std::string _normalizePath(::std::string _path);
  96. static ::std::string _reduceSeparators(const ::std::string &_path);
  97. static void _remove(const ::std::string &_path);
  98. #if defined(unix) || defined(__APPLE__)
  99. static void _removeUnix(const ::std::string &_path);
  100. #endif
  101. #ifdef _WIN32
  102. static void _removeWindows(const ::std::string &_path);
  103. #endif
  104. static bool _renameTo(const ::std::string &_oldName, const ::std::string &_newName);
  105. static ::std::string _replaceWrongSeparator(::std::string _path);
  106. static ::std::vector<::std::string> _splitIntoSubDirectoryNames(const ::std::string &_path);
  107. };
  108. }
  109. }
  110. }
  111. #endif