Rename get_dir_size() to get_dir_count()
[libi2ncommon] / src / filefunc.hxx
index 8ea0e1b..6051707 100644 (file)
@@ -26,6 +26,13 @@ on this file might be covered by the GNU General Public License.
 #define __FILEFUNC_HXX
 
 #include "userfunc.hpp"
+#include <set>
+
+// make sure we have proper large file support
+#include <features.h>
+#ifndef _GNU_SOURCE
+    #define _GNU_SOURCE
+#endif
 
 namespace I2n
 {
@@ -60,6 +67,9 @@ public:
    time_t  mtime() const { return Mtime; }
    time_t  ctime() const { return Ctime; }
 
+   // bytes used on disk, calculated from allocated blocks
+   long long bytes_on_disk() const { return BytesOnDisk; }
+
    nlink_t num_hard_links() const { return NumLinks; }
    dev_t   device_type() const { return DeviceType; }
    time_t  last_modified_time() const { return Mtime; }
@@ -124,6 +134,7 @@ protected:
    gid_t   Gid;
    dev_t   DeviceType;
    off_t   Size;
+   long long BytesOnDisk;
    time_t  Atime;
    time_t  Mtime;
    time_t  Ctime;
@@ -145,11 +156,13 @@ protected:
 bool path_exists(const std::string& path);
 bool file_exists(const std::string& path);
 long file_size (const std::string &name);
+bool file_content_differs(const std::string &old_filename, const std::string &new_filename);
 
 time_t file_mtime(const std::string& path);
 
 bool get_dir(const std::string& path, std::vector< std::string >& result, bool include_dot_names= false );
 std::vector< std::string > get_dir(const std::string& path, bool include_dot_names= false );
+int get_dir_count(const std::string& path, bool include_dot_names= false );
 
 bool unlink(const std::string& path);
 
@@ -175,9 +188,13 @@ bool dirsync(const std::string& path);
 bool chmod(const std::string& path, int mode);
 bool chown(const std::string& path, const I2n::User& user, const I2n::Group& group= I2n::Group());
 
-bool recursive_delete(const std::string &path, std::string *error=NULL);
+bool recursive_delete(const std::string &path,
+                      bool keep_parent_dir=false,
+                      std::string *error=NULL);
 
 std::string mkdtemp(const std::string &path_template, std::string *error=NULL);
+// mkstemp: see tmpfstream
+
 bool mkdir(const std::string &path, const mode_t &mode=0700, std::string *error=NULL);
 bool rmdir(const std::string &path, std::string *error=NULL);
 
@@ -186,6 +203,16 @@ bool chdir(const std::string &path, std::string *error=NULL);
 
 mode_t umask(mode_t mask);
 
+long long get_free_diskspace(const std::string& path);
+long long du(const std::string &path, std::string *error=NULL);
+
+/*
+** more specialized tool function(s)
+*/
+bool remove_unlisted_files(const std::string &directory,
+                           const std::set<std::string> &keep_files,
+                           const std::string &prefix="");
+
 }
 
 #endif