/usr/include/dar/libdar.hpp is in libdar-dev 2.4.8-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | /*********************************************************************/
// dar - disk archive - a backup/restoration program
// Copyright (C) 2002-2052 Denis Corbin
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// to contact the author : http://dar.linux.free.fr/email.html
/*********************************************************************/
// NOTE : The following comments are used by doxygen to generate the documentation of reference
/// \mainpage
/// You will find here the reference documentation for the dar and libdar source code, split in several "modules".
/// - API module: contains all information for using libdar within your program
/// - OLD_API_4_4 module: contains the backward compatible API to version 4.4.x
/// - Tools module: contains some routines you may like to have a look at (but using them with caution)
/// - Private module: contains all libdar internal documentation, it is not necessary to read it to be able to use libdar
/// - CMDLINE module: contains the documentation for command-line tools, you might want to have a look for illustration of library usage.
/// .
/// CMDLINE module is out of any namespace as it is not inteded to be used by external application, OLD_API_4_4 module is in the libdar_4_4 namespace. All other modules, are in the libdar namespace.
///
/// Please not that an API tutorial is also available for a higher view of this library.
/// \defgroup API API
/// \brief APlication Interface
///
/// This gather all symbols that may be accessed from an external
/// program. Other symbols are not as much documented, and
/// may change or be removed without any warning or backward
/// compatibility support. So only use the function, macro, types,
/// classes... defined as member of the API module in you external programs.
/// \defgroup Private Private
/// \brief Symbols that are not to be used by external software.
///
/// never use threses symboles (function, macro, variables, types, etc.)
/// they are not intended to be used by external programs
/// and may change or disapear without any warning or backward
/// compatibility. Some are however documented for libdar development ease.
/// \file libdar.hpp
/// \brief the main file of the libdar API definitions
/// \ingroup API
#ifndef LIBDAR_HPP
#define LIBDAR_HPP
#include "/usr/include/dar/libdar_my_config.h"
extern "C"
{
#if LIBDAR_MUTEX_WORKS
#if LIBDAR_HAS_PTHREAD_H
#include <pthread.h>
#endif
#endif
}
#include <string>
#include "/usr/include/dar/compressor.hpp"
#include "/usr/include/dar/path.hpp"
#include "/usr/include/dar/mask.hpp"
#include "/usr/include/dar/integers.hpp"
#include "/usr/include/dar/infinint.hpp"
#include "/usr/include/dar/statistics.hpp"
#include "/usr/include/dar/user_interaction.hpp"
#include "/usr/include/dar/deci.hpp"
#include "/usr/include/dar/archive.hpp"
#include "/usr/include/dar/crypto.hpp"
#include "/usr/include/dar/thread_cancellation.hpp"
#include "/usr/include/dar/compile_time_features.hpp"
/// \addtogroup API
/// @{
/// The following macro are used in the "exception" argument of the *_noexcept() functions
#define LIBDAR_XXXXXXXX
/// normal return no exception has been thrown
#define LIBDAR_NOEXCEPT 0
/// memory has been exhausted
#define LIBDAR_EMEMORY 1
/// internal bug error.
#define LIBDAR_EBUG 2
/// division by zero or other arithmetic error
#define LIBDAR_EINFININT 3
/// limitint overflow
#define LIBDAR_ELIMITINT 4
/// range error
#define LIBDAR_ERANGE 5
/// decimal representation error
#define LIBDAR_EDECI 6
/// feature not (yet) implemented
#define LIBDAR_EFEATURE 7
/// hardware failure
#define LIBDAR_EHARDWARE 8
/// user has aborted the operation
#define LIBDAR_EUSER_ABORT 9
/// data inconsistency, error concerning the treated data
#define LIBDAR_EDATA 10
/// inter slice script failure
#define LIBDAR_ESCRIPT 11
/// libdar invalid call (wrong argument given to call, etc.)
#define LIBDAR_ELIBCALL 12
/// unknown error
#define LIBDAR_UNKNOWN 13
/// feature not activated at compilation time
#define LIBDAR_ECOMPILATION 14
/// thread cancellation has been requested
#define LIBDAR_THREAD_CANCEL 15
/// @}
/// libdar namespace encapsulate all libdar symbols
namespace libdar
{
/// \addtogroup API
/// @{
/// libdar Major version defined at compilation time
const U_I LIBDAR_COMPILE_TIME_MAJOR = 5;
/// libdar Medium version defined at compilation time
const U_I LIBDAR_COMPILE_TIME_MEDIUM = 3;
/// libdar Minor version defined at compilation time
const U_I LIBDAR_COMPILE_TIME_MINOR = 0;
////////////////////////////////////////////////////////////////////////
// LIBDAR INITIALIZATION METHODS //
// //
// A FUNCTION OF THE get_version*() FAMILY *MUST* BE CALLED //
// BEFORE ANY OTHER FUNCTION OF THIS LIBRARY //
// //
// CLIENT PROGRAM MUST CHECK THAT THE MAJOR NUMBER RETURNED //
// BY THIS CALL IS NOT GREATER THAN THE LIBDAR_VERSION USED AT COMPILATION //
// TIME. IF SO, THE PROGRAM MUST ABORT AND RETURN A WARNING TO THE //
// USER TELLING THE DYNAMICALLY LINKED LIBDAR_VERSION IS TOO RECENT AND NOT //
// COMPATIBLE WITH THIS SOFTWARE. THE MESSAGE MUST INVITE THE USER //
// TO UPGRADE HIS SOFTWARE WITH A MORE RECENT LIBDAR_VERSION COMPATIBLE WITH //
// THIS LIBDAR RELEASE. //
////////////////////////////////////////////////////////////////////////
/// return the libdar version, and make libdar initialization (may throw Exceptions)
/// It is mandatory to call this function (or another one of the get_version* family)
/// \param[out] major the major number of the version
/// \param[out] medium the medium number of the version
/// \param[out] minor the minor number of the version
/// \param[in] init_libgcrypt whether to initialize libgcrypt if not already done (not used if libcrypt is not linked with libdar)
/// \note the calling application must match that the major function
/// is the same as the libdar used at compilation time. See API tutorial for a
/// sample code.
extern void get_version(U_I & major, U_I & medium, U_I & minor, bool init_libgcrypt = true);
/// return the libdar version, and make libdar initialization (does not throw exceptions)
/// It is mandatory to call this function (or another one of the get_version* family)
/// \param[out] major the major number of the version
/// \param[out] medium the medium number of the version
/// \param[out] minor the minor number of the version
/// \param[out] exception is to be compared with the LIBDAR_* macro to know whether the call succeeded
/// \param[out] except_msg in case exception is not equal to LIBDAR_NOEXCEPT this argument contains
/// \param[in] init_libgcrypt whether to initialize libgcrypt if not already done (not used if libcrypt is not linked with libdar)
/// a human readable explaination of the error met.
/// \note the calling application must match that the major function
/// is the same as the libdar used at compilation time. See API tutorial for a
/// sample code.
extern void get_version_noexcept(U_I & major, U_I & medium, U_I & minor, U_16 & exception, std::string & except_msg, bool init_libgcrypt = true);
///////////////////////////////////////////////
// CLOSING/CLEANING LIBDAR //
///////////////////////////////////////////////
// while libdar has only a single boolean as global variable
// that defines whether the library is initialized or not
// it must proceed to mutex, and dependent libraries initializations
// (liblzo, libgcrypt, etc.), which is done during the get_version() call
// Some library also need to clear some data so the following call
// is provided in that aim and must be called when libdar will no more
// be used by the application.
extern void close_and_clean();
//////////
// WRAPPER FUNCTIONS AROUND archive class methods to trap exceptions and convert them in error code and message
// these are intended for C program/programmers not enough confident with C++.
//
// FOR LIBDAR C++ APPLICATIONS, YOU WOULD RATHER USE THE archive C++ CLASS THAN THESE FOLLOWING WRAPPERS
//
//////////
/// this is a wrapper around the archive constructor known as the "read" constructor
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern archive* open_archive_noexcept(user_interaction & dialog,
const path & chem, const std::string & basename,
const std::string & extension,
const archive_options_read & options,
U_16 & exception,
std::string & except_msg);
/// this is a wrapper around the archive constructor known as the "create" constructor
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern archive *create_archive_noexcept(user_interaction & dialog,
const path & fs_root,
const path & sauv_path,
const std::string & filename,
const std::string & extension,
const archive_options_create & options,
statistics * progressive_report,
U_16 & exception,
std::string & except_msg);
/// this is a wrapper around the archive constructor known as the "isolate" constructor
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern archive *isolate_archive_noexcept(user_interaction & dialog,
const path &sauv_path,
archive *ref_arch,
const std::string & filename,
const std::string & extension,
const archive_options_isolate & options,
U_16 & exception,
std::string & except_msg);
/// this is a wrapper around the archive constructor known as the "merging" constructor
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern archive *merge_archive_noexcept(user_interaction & dialog,
const path & sauv_path,
archive *ref_arch1,
const std::string & filename,
const std::string & extension,
const archive_options_merge & options,
statistics * progressive_report,
U_16 & exception,
std::string & except_msg);
/// this is wrapper around the archive destructor
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern void close_archive_noexcept(archive *ptr,
U_16 & exception,
std::string & except_msg);
/// this is wrapper around the op_extract method
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern statistics op_extract_noexcept(user_interaction & dialog,
archive *ptr,
const path &fs_root,
const archive_options_extract & options,
statistics * progressive_report,
U_16 & exception,
std::string & except_msg);
/// this is wrapper around the op_listing method
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern void op_listing_noexcept(user_interaction & dialog,
archive *ptr,
const archive_options_listing & options,
U_16 & exception,
std::string & except_msg);
/// this is wrapper around the op_diff method
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern statistics op_diff_noexcept(user_interaction & dialog,
archive *ptr,
const path & fs_root,
const archive_options_diff & options,
statistics * progressive_report,
U_16 & exception,
std::string & except_msg);
/// this is wrapper around the op_test method
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern statistics op_test_noexcept(user_interaction & dialog,
archive *ptr,
const archive_options_test & options,
statistics * progressive_report,
U_16 & exception,
std::string & except_msg);
/// this is wrapper around the get_children_of method
/// check the archive class for details
/// for an explaination of the two extra arguments exception and except_msg check
/// the get_version_noexcept function
extern bool get_children_of_noexcept(user_interaction & dialog,
archive *ptr,
const std::string & dir,
U_16 & exception,
std::string & except_msg);
///////////////////////////////////////////////
// TOOLS ROUTINES //
///////////////////////////////////////////////
/// routine provided to convert std::string to char *
/// \param[in] x the string to convert
/// \param[out] exception the return status of the call
/// \param[out] except_msg the message taken from the caught exception in case of error
/// for an explaination of the two last arguments exception and except_msg check
/// the get_version_noexcept function
/// \return the address of a newly allocated memory
/// which must be released calling the "delete []"
/// operator when no more needed.
/// \return NULL in case of error
extern char *libdar_str2charptr_noexcept(const std::string & x, U_16 & exception, std::string & except_msg);
///////////////////////////////////////////////
// THREAD CANCELLATION ROUTINES //
///////////////////////////////////////////////
#if LIBDAR_MUTEX_WORKS
/// thread cancellation activation
/// ask that any libdar code running in the thread given as argument be cleanly aborted
/// when the execution will reach the next libdar checkpoint
/// \param[in] tid is the Thread ID to cancel libdar in
/// \param[in] immediate whether to cancel thread immediately or just signal the request to the thread
/// \param[in] flag an arbitrary value passed as-is through libdar
inline extern void cancel_thread(pthread_t tid, bool immediate = true, U_64 flag = 0) { thread_cancellation::cancel(tid, immediate, flag); }
/// consultation of the cancellation status of a given thread
/// \param[in] tid is the tid of the thread to get status about
/// \return false if no cancellation has been requested for the given thread
inline extern bool cancel_status(pthread_t tid) { return thread_cancellation::cancel_status(tid); }
/// thread cancellation deactivation
/// abort the thread cancellation for the given thread
/// \return false if no thread cancellation was under process for that thread
/// or if there is no more pending cancellation (thread has already been canceled).
inline extern bool cancel_clear(pthread_t tid) { return thread_cancellation::clear_pending_request(tid); }
#endif
/// @}
} // end of namespace
#endif
|