LSST Applications g0265f82a02+c6dfa2ddaf,g1162b98a3f+b2075782a9,g2079a07aa2+1b2e822518,g2bbee38e9b+c6dfa2ddaf,g337abbeb29+c6dfa2ddaf,g3ddfee87b4+a60788ef87,g50ff169b8f+2eb0e556e8,g52b1c1532d+90ebb246c7,g555ede804d+a60788ef87,g591dd9f2cf+ba8caea58f,g5ec818987f+864ee9cddb,g858d7b2824+9ee1ab4172,g876c692160+a40945ebb7,g8a8a8dda67+90ebb246c7,g8cdfe0ae6a+4fd9e222a8,g99cad8db69+5e309b7bc6,g9ddcbc5298+a1346535a5,ga1e77700b3+df8f93165b,ga8c6da7877+aa12a14d27,gae46bcf261+c6dfa2ddaf,gb0e22166c9+8634eb87fb,gb3f2274832+d0da15e3be,gba4ed39666+1ac82b564f,gbb8dafda3b+5dfd9c994b,gbeb006f7da+97157f9740,gc28159a63d+c6dfa2ddaf,gc86a011abf+9ee1ab4172,gcf0d15dbbd+a60788ef87,gdaeeff99f8+1cafcb7cd4,gdc0c513512+9ee1ab4172,ge79ae78c31+c6dfa2ddaf,geb67518f79+ba1859f325,geb961e4c1e+f9439d1e6f,gee10cc3b42+90ebb246c7,gf1cff7945b+9ee1ab4172,w.2024.12
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | Protected Attributes | Friends | List of all members
ast::Stream Class Reference

A stream for ast::Channel. More...

#include <Stream.h>

Inheritance diagram for ast::Stream:
ast::FileStream ast::StringStream

Public Member Functions

 Stream (std::istream *istreamPtr, std::ostream *ostreamPtr)
 Construct a Stream from input and output std::streams.
 
 Stream ()
 
virtual ~Stream ()
 
 Stream (Stream const &)=default
 
 Stream (Stream &&)=default
 
Streamoperator= (Stream const &)=default
 
Streamoperator= (Stream &&)=default
 
bool hasStdStream ()
 Return true if this Stream has an input or output std::stream.
 
char const * source ()
 Source (read) from the stream.
 
bool sink (char const *cstr)
 Sink (write) to the stream.
 
bool getIsFits () const
 get isfits
 

Protected Member Functions

void setIsFits (bool isFits)
 set isFits
 

Protected Attributes

std::shared_ptr< std::istream_istreamPtr
 input stream
 
std::shared_ptr< std::ostream_ostreamPtr
 output stream
 
std::string _sourceStr
 string containing a local copy of sourced data, so source can return a char * that won't disappear right away
 
bool _isFits
 is this a FITS stream?
 

Friends

class Channel
 

Detailed Description

A stream for ast::Channel.

Definition at line 41 of file Stream.h.

Constructor & Destructor Documentation

◆ Stream() [1/4]

ast::Stream::Stream ( std::istream * istreamPtr,
std::ostream * ostreamPtr )
inlineexplicit

Construct a Stream from input and output std::streams.

Parameters
[in]istreamPtrsource/input stream; may match ostreamPtr; may be nullptr if sourcing not needed
[in]ostreamPtrsink/output stream; may match istreamPtr; may be nullptr if sinking not needed

Definition at line 51 of file Stream.h.

52 : _istreamPtr(), _ostreamPtr(), _sourceStr(), _isFits(false) {
53 if (istreamPtr) {
54 _istreamPtr = std::make_shared<std::istream>(istreamPtr->rdbuf());
55 }
56 if (ostreamPtr) {
57 _ostreamPtr = std::make_shared<std::ostream>(ostreamPtr->rdbuf());
58 }
59 }
bool _isFits
is this a FITS stream?
Definition Stream.h:136
std::string _sourceStr
string containing a local copy of sourced data, so source can return a char * that won't disappear ri...
Definition Stream.h:135
std::shared_ptr< std::ostream > _ostreamPtr
output stream
Definition Stream.h:132
std::shared_ptr< std::istream > _istreamPtr
input stream
Definition Stream.h:131
T rdbuf(T... args)

◆ Stream() [2/4]

ast::Stream::Stream ( )
inlineexplicit

Definition at line 61 of file Stream.h.

61: Stream(nullptr, nullptr) {}

◆ ~Stream()

virtual ast::Stream::~Stream ( )
inlinevirtual

Definition at line 63 of file Stream.h.

63{}

◆ Stream() [3/4]

ast::Stream::Stream ( Stream const & )
default

◆ Stream() [4/4]

ast::Stream::Stream ( Stream && )
default

Member Function Documentation

◆ getIsFits()

bool ast::Stream::getIsFits ( ) const
inline

get isfits

Definition at line 125 of file Stream.h.

125{ return _isFits; }

◆ hasStdStream()

bool ast::Stream::hasStdStream ( )
inline

Return true if this Stream has an input or output std::stream.

Definition at line 73 of file Stream.h.

73{ return _istreamPtr || _ostreamPtr; }

◆ operator=() [1/2]

Stream & ast::Stream::operator= ( Stream && )
default

◆ operator=() [2/2]

Stream & ast::Stream::operator= ( Stream const & )
default

◆ setIsFits()

void ast::Stream::setIsFits ( bool isFits)
inlineprotected

set isFits

Definition at line 129 of file Stream.h.

129{ _isFits = isFits; }

◆ sink()

bool ast::Stream::sink ( char const * cstr)
inline

Sink (write) to the stream.

Parameters
[in]cstrdata to write; a newline is then written if _isFits false
Returns
true on success or if there is no stream pointer (a normal mode), false if the stream pointer is in a bad state after writing
Note
this function is not virtual because of type slicing: this function is called from code that casts a void pointer to a Stream pointer without knowing which kind of Stream it is.

Definition at line 110 of file Stream.h.

110 {
111 if (_ostreamPtr) {
112 (*_ostreamPtr) << cstr;
113 if (!_isFits) {
114 (*_ostreamPtr) << std::endl;
115 }
116 return static_cast<bool>(*_ostreamPtr);
117 } else {
118 return true;
119 }
120 }
T endl(T... args)

◆ source()

char const * ast::Stream::source ( )
inline

Source (read) from the stream.

Returns
the data read as a C string, or nullptr if there is no source stream or the source stream is empty or in an error state. The Stream owns the string buffer, and it will be invalidated on the next call to this function.

Definition at line 84 of file Stream.h.

84 {
85 if ((_istreamPtr) && (*_istreamPtr)) {
86 if (_isFits) {
87 // http://codereview.stackexchange.com/a/28759
88 _sourceStr.resize(detail::FITSLEN);
89 _istreamPtr->read(&_sourceStr[0], detail::FITSLEN);
90 } else {
92 }
93 if (*_istreamPtr) {
94 return _sourceStr.c_str();
95 }
96 }
97 return nullptr;
98 }
T c_str(T... args)
T getline(T... args)
T read(T... args)
T resize(T... args)

Friends And Related Symbol Documentation

◆ Channel

friend class Channel
friend

Definition at line 122 of file Stream.h.

Member Data Documentation

◆ _isFits

bool ast::Stream::_isFits
protected

is this a FITS stream?

Definition at line 136 of file Stream.h.

◆ _istreamPtr

std::shared_ptr<std::istream> ast::Stream::_istreamPtr
protected

input stream

Definition at line 131 of file Stream.h.

◆ _ostreamPtr

std::shared_ptr<std::ostream> ast::Stream::_ostreamPtr
protected

output stream

Definition at line 132 of file Stream.h.

◆ _sourceStr

std::string ast::Stream::_sourceStr
protected

string containing a local copy of sourced data, so source can return a char * that won't disappear right away

Definition at line 135 of file Stream.h.


The documentation for this class was generated from the following file: