Disk ARchive  2.7.14
Full featured and portable backup and archiving tool
tuyau.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 
30 
31 #ifndef TUYAU_HPP
32 #define TUYAU_HPP
33 
34 #include "../my_config.h"
35 #include "infinint.hpp"
36 #include "generic_file.hpp"
37 #include "thread_cancellation.hpp"
38 #include "mem_ui.hpp"
39 
40 namespace libdar
41 {
42 
45 
47 
48  class tuyau : public generic_file, public thread_cancellation, protected mem_ui
49  {
50  public:
51  tuyau(const std::shared_ptr<user_interaction> & dialog,
52  int fd
53  );
54  tuyau(const std::shared_ptr<user_interaction> & dialog,
55  int fd,
56  gf_mode mode
57  );
58  tuyau(const std::shared_ptr<user_interaction> & dialog,
59  const std::string &filename,
60  gf_mode mode
61  );
62 
63  tuyau(const std::shared_ptr<user_interaction> & dialog);
64  tuyau(const tuyau & ref) = default;
65  tuyau(tuyau && ref) noexcept = default;
66  tuyau & operator = (const tuyau & ref) = default;
67  tuyau & operator = (tuyau && ref) noexcept = default;
68  ~tuyau();
69 
72  int get_read_fd() const;
73 
75 
79  void close_read_fd();
80 
83 
84  // inherited from generic_file
85  virtual bool skippable(skippability direction, const infinint & amount) override;
86  virtual bool skip(const infinint & pos) override;
87  virtual bool skip_to_eof() override;
88  virtual bool skip_relative(signed int x) override;
89  virtual bool truncatable(const infinint & pos) const override { return pos >= position; };
90  virtual infinint get_position() const override { return position; };
91 
92  bool has_next_to_read();
93 
94  protected:
95  virtual void inherited_read_ahead(const infinint & amount) override {}; // relying on the operating system
96  virtual U_I inherited_read(char *a, U_I size) override;
97  virtual void inherited_write(const char *a, U_I size) override;
98  virtual void inherited_truncate(const infinint & pos) override { if(pos < position) throw SRC_BUG; };
99  virtual void inherited_sync_write() override {};
100  virtual void inherited_flush_read() override {};
101  virtual void inherited_terminate() override;
102 
103  private:
104  enum
105  {
108  pipe_both
111  int filedesc;
113  std::string chemin;
116 
117  void ouverture();
118 
120 
124 
126  bool read_to_eof();
127  };
128 
130 
131 } // end of namespace
132 
133 #endif
this is the interface class from which all other data transfer classes inherit
the arbitrary large positive integer class
class mem_ui to keep a copy of a user_interaction object
Definition: mem_ui.hpp:55
class to be used as parent to provide checkpoints to inherited classes
pipe implementation under the generic_file interface.
Definition: tuyau.hpp:49
bool read_to_eof()
skip to eof by reading data
std::string chemin
in pipe_path mode only, this holds the named pipe to be open
Definition: tuyau.hpp:113
virtual void inherited_terminate() override
destructor-like call, except that it is allowed to throw exceptions
int other_end_fd
in pipe_both mode, this holds the reading side of the anonymous pipe
Definition: tuyau.hpp:112
tuyau(const std::shared_ptr< user_interaction > &dialog, int fd)
bool read_and_drop(infinint byte)
skip forward by reading data
virtual bool skippable(skippability direction, const infinint &amount) override
whether the implementation is able to skip
virtual infinint get_position() const override
get the current read/write position
Definition: tuyau.hpp:90
virtual void inherited_read_ahead(const infinint &amount) override
tells the object that several calls to read() will follow to probably obtain at least the given amoun...
Definition: tuyau.hpp:95
virtual bool skip_to_eof() override
skip to the end of file
void do_not_close_read_fd()
ask to not close the read descriptor upon object destruction (the fd survives the object)
virtual U_I inherited_read(char *a, U_I size) override
implementation of read() operation
virtual bool skip(const infinint &pos) override
skip at the absolute position
virtual void inherited_write(const char *a, U_I size) override
implementation of the write() operation
void close_read_fd()
closes the read fd of the anonymous pipe (this is to be used by a writer)
int get_read_fd() const
tuyau(const std::shared_ptr< user_interaction > &dialog)
creates a anonymous pipe and bind itself to the writing end. The reading end can be obtained by get_r...
infinint position
recorded position in the stream
Definition: tuyau.hpp:110
tuyau(const std::shared_ptr< user_interaction > &dialog, const std::string &filename, gf_mode mode)
virtual void inherited_flush_read() override
reset internal engine, flush caches in order to read the data at current position
Definition: tuyau.hpp:100
virtual bool truncatable(const infinint &pos) const override
whether the implementation is able to truncate to the given position
Definition: tuyau.hpp:89
int filedesc
file descriptors of the pipe
Definition: tuyau.hpp:111
char next_to_read
when has_one_to_read is true, contains the next to read byte
Definition: tuyau.hpp:115
bool has_one_to_read
if true, the next char to read is placed in "next_to_read"
Definition: tuyau.hpp:114
tuyau(const std::shared_ptr< user_interaction > &dialog, int fd, gf_mode mode)
enum libdar::tuyau::@4 pipe_mode
defines how the object's status (which possible values defined by the anonymous enum above)
virtual void inherited_sync_write() override
write down any pending data
Definition: tuyau.hpp:99
virtual void inherited_truncate(const infinint &pos) override
truncate file at the give offset
Definition: tuyau.hpp:98
@ pipe_path
holds a filename to be openned (named pipe)
Definition: tuyau.hpp:107
@ pipe_fd
holds a single file descriptor for the pipe
Definition: tuyau.hpp:106
@ pipe_both
holds a pair of file descriptors
Definition: tuyau.hpp:108
class generic_file is defined here as well as class fichier
gf_mode
generic_file openning modes
Definition: gf_mode.hpp:44
switch module to limitint (32 ou 64 bits integers) or infinint
class mem_ui definition. This class is to be used as parent class to handle user_interaction object m...
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47
to be able to cancel libdar operation while running in a given thread.