libzypp 17.37.17
inputstream.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_CORE_BASE_INPUTSTREAM_H
13#define ZYPP_CORE_BASE_INPUTSTREAM_H
14
15#include <iosfwd>
16
18#include <zypp-core/base/DefaultIntegral>
19#include <zypp-core/Pathname.h>
20
22namespace zypp
23{
24
26 //
27 // CLASS NAME : InputStream
28 //
57 {
58 public:
61
63 InputStream( std::istream & stream_r,
64 std::string name_r = std::string() );
65
67 InputStream( Pathname file_r );
68
70 InputStream( Pathname file_r,
71 std::string name_r );
72
74 InputStream( const std::string & file_r );
75
77 InputStream( const std::string & file_r,
78 std::string name_r );
79
81 InputStream( const char * file_r );
82
84 InputStream( const char * file_r,
85 std::string name_r );
86
89
93 std::istream & stream() const
94 { return *_stream; }
95
97 operator std::istream &() const
98 { return *_stream; }
99
107 const std::string & name() const
108 { return _name; }
109
111 const Pathname & path() const
112 { return _path; }
113
118 std::streamoff size() const
119 { return _size; }
120
127 void setSize( std::streamoff val_r )
128 { _size = val_r; }
129
130 private:
133 std::string _name;
134 DefaultIntegral<std::streamoff,-1> _size;
135 };
136
137
139 std::ostream & operator<<( std::ostream & str, const InputStream & obj );
140
142} // namespace zypp
144#endif // ZYPP_CORE_BASE_INPUTSTREAM_H
Integral type with defined initial value when default constructed.
Helper to create and pass std::istream.
Definition inputstream.h:57
const std::string & name() const
Name of the std::istream.
std::istream & stream() const
The std::istream.
Definition inputstream.h:93
DefaultIntegral< std::streamoff,-1 > _size
std::streamoff size() const
Size of the input stream (informal).
const Pathname & path() const
Path to the input file or empty if no file.
shared_ptr< std::istream > _stream
std::string _name
InputStream()
Default ctor providing std::cin.
void setSize(std::streamoff val_r)
Set the size of the input stream.
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition Arch.h:247