Disk ARchive  2.6.8
Full featured and portable backup and archiving tool
i_database.hpp
Go to the documentation of this file.
1 /*********************************************************************/
2 // dar - disk archive - a backup/restoration program
3 // Copyright (C) 2002-2020 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 : http://dar.linux.free.fr/email.html
20 /*********************************************************************/
21 
25 
26 
27 #ifndef I_DATABASE_HPP
28 #define I_DATABASE_HPP
29 
30 #include "../my_config.h"
31 
32 #include <list>
33 
34 #include "archive.hpp"
35 #include "generic_file.hpp"
36 #include "data_dir.hpp"
37 #include "storage.hpp"
38 #include "mem_ui.hpp"
39 #include "database_options.hpp"
40 #include "database_archives.hpp"
41 #include "database.hpp"
42 #include "tools.hpp"
43 
44 namespace libdar
45 {
46 
49 
51 
53  {
54  public:
56  i_database(const std::shared_ptr<user_interaction> & dialog);
57 
59  i_database(const std::shared_ptr<user_interaction> & dialog,
60  const std::string & base,
61  const database_open_options & opt);
62 
64  i_database(const i_database & ref) = delete;
65 
67  i_database(i_database && ref) noexcept = delete;
68 
70  i_database & operator = (const i_database & ref) = delete;
71 
73  i_database & operator = (i_database && ref) noexcept = delete;
74 
76  ~i_database();
77 
79  void dump(const std::string & filename, const database_dump_options & opt) const;
80 
81  // SETTINGS
82 
84  void add_archive(const archive & arch, const std::string & chemin, const std::string & basename, const database_add_options & opt);
85 
88 
91 
93  void change_name(archive_num num, const std::string & basename, const database_change_basename_options &opt);
94 
96  void set_path(archive_num num, const std::string & chemin, const database_change_path_options & opt);
97 
99  void set_options(const std::vector<std::string> &opt) { options_to_dar = opt; };
100 
102  void set_dar_path(const std::string & chemin) { dar_path = chemin; };
103 
105  void set_compression(compression algozip) { algo = algozip; };
106 
107 
108  // "GETTINGS"
109 
112 
114  std::vector<std::string> get_options() const { return options_to_dar; }; // show option passed to dar
115 
117  std::string get_dar_path() const { return dar_path; }; // show path to dar command
118 
120  compression get_compression() const { return algo; };
121 
123  std::string get_database_version() const { return tools_uint2str(cur_db_version); };
124 
127  void *context,
128  archive_num num,
129  const database_used_options & opt) const;
130 
133  void *context,
134  path chemin) const;
135 
138  void *context) const;
139 
140  // "ACTIONS" (not available with partially extracted databases)
141 
143  void restore(const std::vector<std::string> & filename,
144  const database_restore_options & opt);
145 
147  bool check_order() const
148  {
149  bool initial_warn = true;
150 
151  if(files == nullptr)
152  throw SRC_BUG;
154  return files->check_order(get_ui(), path("."), initial_warn) && initial_warn;
155  else
156  return true;
157  }
158 
159 
160  private:
161 
164  {
165  std::string chemin;
166  std::string basename;
168  };
169 
170  std::deque<struct archive_data> coordinate;
171  std::vector<std::string> options_to_dar;
172  std::string dar_path;
176  unsigned char cur_db_version;
178 
179  void build(generic_file & f, bool partial, bool read_only, unsigned char db_version);
180  archive_num get_real_archive_num(archive_num num, bool revert) const;
181 
182  const datetime & get_root_last_mod(const archive_num & num) const;
183  };
184 
186 
187 } // end of namespace
188 
189 #endif
tools.hpp
a set of general purpose routines
archive.hpp
the archive class is defined in this module
libdar::data_dir
the data_dir class inherits from data_tree and holds the directory tree's parent relationship
Definition: data_dir.hpp:52
libdar::database::i_database::algo
compression algo
compression used/to use when writing down the base to file
Definition: i_database.hpp:177
libdar::database::i_database::restore
void restore(const std::vector< std::string > &filename, const database_restore_options &opt)
restore files calling dar on the appropriated archive
libdar::mem_ui::get_ui
user_interaction & get_ui() const
get access to the user_interaction object
Definition: mem_ui.hpp:95
libdar::database_listing_statistics_callback
void(*)(void *context, U_I number, const infinint &data_count, const infinint &total_data, const infinint &ea_count, const infinint &total_ea) database_listing_statistics_callback
called with teh information of statistics for each archive in turn
Definition: database_listing_callback.hpp:86
libdar::database::i_database::i_database
i_database(const std::shared_ptr< user_interaction > &dialog)
this constructor build an empty database
libdar::database::i_database
the class i_database is the implementation of class database
Definition: i_database.hpp:52
libdar::compression
compression
the different compression algorithm available
Definition: compression.hpp:45
libdar::database::i_database::get_version
void get_version(database_listing_get_version_callback callback, void *context, path chemin) const
list the archive where a give file is present
libdar::database_restore_options
options for restoration from database
Definition: database_options.hpp:210
libdar::database::i_database::build
void build(generic_file &f, bool partial, bool read_only, unsigned char db_version)
used by constructors
database.hpp
this file holds the database class definition
libdar::database_change_path_options
options for changing a given archive's path
Definition: database_options.hpp:186
libdar::database::i_database::change_name
void change_name(archive_num num, const std::string &basename, const database_change_basename_options &opt)
change one's archive basename recorded in the database
libdar::storage
arbitrary large storage structure
Definition: storage.hpp:52
libdar::database::i_database::set_permutation
void set_permutation(archive_num src, archive_num dst)
change order of archive within the database
libdar::database::i_database::check_order_asked
bool check_order_asked
whether order check has been asked
Definition: i_database.hpp:175
libdar::database::i_database::get_options
std::vector< std::string > get_options() const
return the options used with dar for restoration
Definition: i_database.hpp:114
libdar::database::i_database::set_options
void set_options(const std::vector< std::string > &opt)
change the default options given to dar when performing restoration
Definition: i_database.hpp:99
libdar::database::i_database::get_files
void get_files(database_listing_show_files_callback callback, void *context, archive_num num, const database_used_options &opt) const
list files which are present in a given archive
libdar::database::i_database::files
data_dir * files
structure containing files and their status in the set of archive used for that database (is set to n...
Definition: i_database.hpp:173
database_options.hpp
this file holds the options for database operations
libdar::database::i_database::set_compression
void set_compression(compression algozip)
change compression to use when storing base on file
Definition: i_database.hpp:105
libdar::database::i_database::check_order
bool check_order() const
check that all files's Data and EA are more recent when archive number grows within the database,...
Definition: i_database.hpp:147
libdar::database::i_database::set_dar_path
void set_dar_path(const std::string &chemin)
change the path to dar command
Definition: i_database.hpp:102
libdar::database_open_options
options to open a database
Definition: database_options.hpp:43
libdar::database::i_database::dar_path
std::string dar_path
path to dar
Definition: i_database.hpp:172
libdar::database_archives_list
std::deque< database_archives > database_archives_list
list of archives found in a database
Definition: database_archives.hpp:75
libdar::database::i_database::remove_archive
void remove_archive(archive_num min, archive_num max, const database_remove_options &opt)
remove an archive from a database
libdar::database::i_database::archive_data::basename
std::string basename
basename of the archive
Definition: i_database.hpp:166
libdar::database::i_database::get_dar_path
std::string get_dar_path() const
returns the path for dar
Definition: i_database.hpp:117
libdar::mem_ui
class mem_ui to keep a copy of a user_interaction object
Definition: mem_ui.hpp:54
generic_file.hpp
class generic_file is defined here as well as class fichier
libdar::database::i_database::archive_data
holds the archive used to create the database
Definition: i_database.hpp:163
libdar::path
the class path is here to manipulate paths in the Unix notation: using'/'
Definition: path.hpp:50
libdar::database::i_database::get_database_version
std::string get_database_version() const
return the database format version
Definition: i_database.hpp:123
libdar::database_listing_get_version_callback
void(*)(void *context, archive_num num, db_etat data_presence, bool has_data_date, datetime data, db_etat ea_presence, bool has_ea_date, datetime ea) database_listing_get_version_callback
called with the information of presence for an entry in archive number num
Definition: database_listing_callback.hpp:70
database_archives.hpp
this file stores the list of archives a database has been built from. it is part of the database head...
libdar::datetime
stores time information
Definition: datetime.hpp:58
libdar::database::i_database::operator=
i_database & operator=(const i_database &ref)=delete
disabling assignement operator
data_dir.hpp
classes used to store directory tree information in dar_manager databases
libdar::generic_file
this is the interface class from which all other data transfer classes inherit
Definition: generic_file.hpp:76
libdar::database::i_database::options_to_dar
std::vector< std::string > options_to_dar
options to use when calling dar for restoration
Definition: i_database.hpp:171
libdar::database::i_database::data_files
storage * data_files
when reading archive in partial mode, this is where is located the "not readed" part of the archive (...
Definition: i_database.hpp:174
libdar::database::i_database::~i_database
~i_database()
i_database destructor (no implicit file saving)
libdar::database::i_database::get_contents
database_archives_list get_contents() const
provides the list of archive used to build the database
libdar::database::i_database::dump
void dump(const std::string &filename, const database_dump_options &opt) const
write the database to a file (see database_header first)
libdar::database::i_database::show_most_recent_stats
void show_most_recent_stats(database_listing_statistics_callback callback, void *context) const
compute some statistics about the location of most recent file versions
libdar::archive
the archive class realizes the most general operations on archives
Definition: archive.hpp:64
libdar::database_dump_options
options to write a database to file
Definition: database_options.hpp:92
libdar::archive_num
class archive_num stores the position of an archive inside a dar_manager database
Definition: archive_num.hpp:46
libdar::database::i_database::add_archive
void add_archive(const archive &arch, const std::string &chemin, const std::string &basename, const database_add_options &opt)
add an archive to the database
libdar::database_add_options
options to add an archive to base
Definition: database_options.hpp:122
libdar::database::i_database::cur_db_version
unsigned char cur_db_version
current db version (for informational purposes)
Definition: i_database.hpp:176
libdar::database_used_options
options for file "used" in archive
Definition: database_options.hpp:280
libdar::data_dir::check_order
virtual bool check_order(user_interaction &dialog, const path &current_path, bool &initial_warn) const override
check date order between archives withing the database ; throw Erange if problem found with date orde...
storage.hpp
contains a class that permits arbitrary large data storage
libdar::ea_saved_status::partial
EA present in filesystem but not stored (ctime used to check changes)
libdar::database_remove_options
options to remove an archive from the base
Definition: database_options.hpp:137
libdar::database::i_database::set_path
void set_path(archive_num num, const std::string &chemin, const database_change_path_options &opt)
change one's archive path recorded in the database
libdar::database::i_database::get_compression
compression get_compression() const
returns the compression algorithm used on filesystem
Definition: i_database.hpp:120
libdar::database_change_basename_options
options for changing a given archive's basename
Definition: database_options.hpp:161
libdar::database::i_database::coordinate
std::deque< struct archive_data > coordinate
list of archive used to build the database
Definition: i_database.hpp:170
libdar::database::i_database::archive_data::root_last_mod
datetime root_last_mod
last modification date of the root directory
Definition: i_database.hpp:167
libdar::database_listing_show_files_callback
void(*)(void *context, const std::string &filename, bool available_data, bool available_ea) database_listing_show_files_callback
called by the database::get_files() routine
Definition: database_listing_callback.hpp:51
libdar::database::i_database::archive_data::chemin
std::string chemin
path to the archive
Definition: i_database.hpp:165
mem_ui.hpp
class mem_ui definition. This class is to be used as parent class to handle user_interaction object m...
libdar
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:46