Disk ARchive 2.7.16
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-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 FSA_FAMILY_HPP
27#define FSA_FAMILY_HPP
28
29#include <string>
30#include <set>
31
32#include "integers.hpp"
33
34namespace libdar
35{
38
39
41
42 enum fsa_family { fsaf_hfs_plus, fsaf_linux_extX };
43 // note: adding new fsa_family need updating all_fsa_family()
44
45
46
48 enum fsa_nature { fsan_unset,
49 fsan_creation_date,
50 fsan_append_only,
51 fsan_compressed,
52 fsan_no_dump,
53 fsan_immutable,
54 fsan_data_journaling,
55 fsan_secure_deletion,
56 fsan_no_tail_merging,
57 fsan_undeletable,
58 fsan_noatime_update,
59 fsan_synchronous_directory,
60 fsan_synchronous_update,
61 fsan_top_of_dir_hierarchy };
62
64 extern std::string fsa_family_to_string(fsa_family f);
65
67 extern std::string fsa_nature_to_string(fsa_nature n);
68
70 using fsa_scope = std::set<fsa_family>;
71
74
77
80
82 extern std::string fsa_scope_to_string(bool saved, const fsa_scope & scope);
83
85
86} // end of namespace
87
88#endif
the arbitrary large positive integer class
std::string fsa_family_to_string(fsa_family f)
convert fsa family to readable std::string
fsa_scope all_fsa_families()
provides a scope containing all FSA families
std::set< fsa_family > fsa_scope
set of fsa families
Definition: fsa_family.hpp:70
fsa_scope infinint_to_fsa_scope(const infinint &ref)
convert an infinint to fsa_scape
std::string fsa_nature_to_string(fsa_nature n)
convert fsa nature to readable std::string
std::string fsa_scope_to_string(bool saved, const fsa_scope &scope)
convert an fsa scope to readable string
infinint fsa_scope_to_infinint(const fsa_scope &val)
convert an fsa scope to infinint
fsa_family
FSA family.
Definition: fsa_family.hpp:42
fsa_nature
FSA nature.
Definition: fsa_family.hpp:48
are defined here basic integer types that tend to be portable
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47