Disk ARchive  2.5.15
Full featured and portable backup and archiving tool
fsa_family.hpp
Go to the documentation of this file.
1 /*********************************************************************/
2 // dar - disk archive - a backup/restoration program
3 // Copyright (C) 2002-2052 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 //
19 // to contact the author : http://dar.linux.free.fr/email.html
20 /*********************************************************************/
21 
25 
26 #ifndef FSA_FAMILY_HPP
27 #define FSA_FAMILY_HPP
28 
29 #include <string>
30 #include <set>
31 
32 #include "integers.hpp"
33 #include "crc.hpp"
34 
35 namespace libdar
36 {
39 
40 
42  enum fsa_family { fsaf_hfs_plus, fsaf_linux_extX };
43  // note: adding new fsa_family need updating all_fsa_family()
44 
46  enum fsa_nature { fsan_unset,
47  fsan_creation_date,
48  fsan_append_only,
49  fsan_compressed,
50  fsan_no_dump,
51  fsan_immutable,
52  fsan_data_journaling,
53  fsan_secure_deletion,
54  fsan_no_tail_merging,
55  fsan_undeletable,
56  fsan_noatime_update,
57  fsan_synchronous_directory,
58  fsan_synchronous_update,
59  fsan_top_of_dir_hierarchy };
60 
61  extern std::string fsa_family_to_string(fsa_family f);
62  extern std::string fsa_nature_to_string(fsa_nature n);
63 
64  typedef std::set<fsa_family> fsa_scope;
65 
67  extern fsa_scope all_fsa_families();
68 
69  extern infinint fsa_scope_to_infinint(const fsa_scope & val);
70  extern fsa_scope infinint_to_fsa_scope(const infinint & ref);
71  extern std::string fsa_scope_to_string(bool saved, const fsa_scope & scope);
72 
74 
75 } // end of namespace
76 
77 #endif
are defined here basic integer types that tend to be portable
fsa_family
FSA family.
Definition: fsa_family.hpp:42
class crc definition, used to handle Cyclic Redundancy Checks
fsa_nature
FSA nature.
Definition: fsa_family.hpp:46
the arbitrary large positive integer class
fsa_scope all_fsa_families()
provides a scope containing all FSA families
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47