Disk ARchive  2.7.15
Full featured and portable backup and archiving tool
filesystem_tools.hpp
Go to the documentation of this file.
1 /*********************************************************************/
2 // dar - disk archive - a backup/restoration program
3 // Copyright (C) 2002-2024 Denis Corbin
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // to contact the author, see the AUTHOR file
20 /*********************************************************************/
21 
25 
26 #ifndef FILESYSTEM_TOOLS_HPP
27 #define FILESYSTEM_TOOLS_HPP
28 
29 #include "../my_config.h"
30 
31 extern "C"
32 {
33 
34 } // end extern "C"
35 
36 #include "infinint.hpp"
37 #include "generic_file.hpp"
38 #include "fsa_family.hpp"
39 #include "cat_all_entrees.hpp"
40 #include "crc.hpp"
41 #include "user_interaction.hpp"
42 #include "path.hpp"
43 #include "fichier_local.hpp"
44 
45 #include <string>
46 
47 namespace libdar
48 {
51 
52  bool filesystem_tools_has_immutable(const cat_inode & arg);
53  void filesystem_tools_set_immutable(const std::string & target, bool val, user_interaction &ui);
54  void filesystem_tools_supprime(user_interaction & ui, const std::string & ref);
55  void filesystem_tools_widen_perm(user_interaction & dialog,
56  const cat_inode & ref,
57  const std::string & chem,
58  comparison_fields what_to_check);
59  void filesystem_tools_make_owner_perm(user_interaction & dialog,
60  const cat_inode & ref,
61  const std::string & chem,
62  comparison_fields what_to_check,
63  const fsa_scope & scope);
64  void filesystem_tools_make_date(const cat_inode & ref,
65  const std::string & chem,
66  comparison_fields what_to_check,
67  const fsa_scope & scope);
68 
69  void filesystem_tools_attach_ea(const std::string &chemin,
70  cat_inode *ino,
71  const mask & ea_mask);
72  bool filesystem_tools_is_nodump_flag_set(user_interaction & dialog,
73  const path & chem, const std::string & filename,
74  bool info);
75  path *filesystem_tools_get_root_with_symlink(user_interaction & dialog,
76  const path & root,
77  bool info_details);
78  mode_t filesystem_tools_get_file_permission(const std::string & path);
79 
80  void filesystem_tools_make_delta_patch(const std::shared_ptr<user_interaction> & dialog,
81  const cat_file & existing,
82  const std::string & existing_pathname,
83  const cat_file & patcher,
84  const path & directory);
85 
87 
90  fichier_local *filesystem_tools_create_non_existing_file_based_on(const std::shared_ptr<user_interaction> & dialog,
91  std::string filename,
92  path where,
93  std::string & new_filename);
94 
95  void filesystem_tools_copy_content_from_to(const std::shared_ptr<user_interaction> & dialog,
96  const std::string & source_path,
97  const std::string & destination_path,
98  const crc *expected_crc);
99 
100 
102 
106  bool filesystem_tools_read_linux_birthtime(const std::string & target, datetime & val);
108 
109 } // end of namespace
110 
111 #endif
include file gathering all entree found in a catalogue
pure virtual class defining interface of a CRC object
Definition: crc.hpp:47
stores time information
Definition: datetime.hpp:59
filesystem local files
the class path is here to manipulate paths in the Unix notation: using'/'
Definition: path.hpp:51
class crc definition, used to handle Cyclic Redundancy Checks
class fichier_local definition. This is a full implementation/inherited class of class fichier_global...
filesystem specific attributes available families and fsa_scope definition
class generic_file is defined here as well as class fichier
comparison_fields
how to consider file change during comparison and incremental backup
Definition: archive_aux.hpp:53
std::set< fsa_family > fsa_scope
set of fsa families
Definition: fsa_family.hpp:70
fichier_local * filesystem_tools_create_non_existing_file_based_on(const std::shared_ptr< user_interaction > &dialog, std::string filename, path where, std::string &new_filename)
create in dirname a brand-new filename which name derives from filename
bool filesystem_tools_read_linux_birthtime(const std::string &target, datetime &val)
read the birthtime of target inode
switch module to limitint (32 ou 64 bits integers) or infinint
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47
here is the definition of the path class
defines the interaction interface between libdar and users.