Jpp 21.0.0-rc.3
the software that should make you happy
Loading...
Searching...
No Matches
JPARSER::JParserTemplateElement< bool > Class Reference

Template specialisation of JPARSER::JParserTemplateElement for type bool. More...

#include <JParser.hh>

Inheritance diagram for JPARSER::JParserTemplateElement< bool >:
JPARSER::JParserElementInterface JLANG::JStreamInput JLANG::JStreamOutput

Public Member Functions

 JParserTemplateElement (bool &object, const std::string &name="arg", const std::string &help="")
 Constructor.
 
virtual std::istream & read (std::istream &in) override
 Stream input.
 
virtual std::ostream & write (std::ostream &out) const override
 Stream output.
 
virtual bool getStatus () const override
 Status of object.
 
virtual bool getInitialisationStatus () const override
 Get initialisation status of parameter.
 
virtual void setInitialiationStatus (const bool value) override
 Set initialisation status of parameter.
 
virtual bool gcount () const override
 Read counter.
 
const std::string & getName () const
 Get name of parameter.
 
const std::string & getHelp () const
 Get help of parameter.
 
virtual void print (std::ostream &out) const
 Print.
 

Protected Attributes

std::string __name
 
std::string __help
 

Private Attributes

bool & object
 

Detailed Description

Template specialisation of JPARSER::JParserTemplateElement for type bool.

The value is by default set to false and set to true in method read() without reading any data. This makes it possible to parse mutiple options in one go (e.g. -abc). This class implements the JPARSER::JParserElementInterface interface.

Definition at line 1218 of file JParser.hh.

Constructor & Destructor Documentation

◆ JParserTemplateElement()

JPARSER::JParserTemplateElement< bool >::JParserTemplateElement ( bool & object,
const std::string & name = "arg",
const std::string & help = "" )
inline

Constructor.

The constructor assigns the default value false to the referenced parameter.

Parameters
objectreference to object
namename of object
helphelp of object

Definition at line 1231 of file JParser.hh.

1231 :
1232 JParserElementInterface(name, help),
1233 object(object)
1234 {
1235 this->object = false;
1236 }
JParserElementInterface(const std::string &name="arg", const std::string &help="")
Constructor.
Definition JParser.hh:512

Member Function Documentation

◆ read()

virtual std::istream & JPARSER::JParserTemplateElement< bool >::read ( std::istream & in)
inlineoverridevirtual

Stream input.

This method sets the value to true, without reading any data.

Parameters
ininput stream
Returns
input stream

Implements JLANG::JStreamInput.

Definition at line 1246 of file JParser.hh.

1247 {
1248 this->object = true;
1249
1250 return in;
1251 }

◆ write()

virtual std::ostream & JPARSER::JParserTemplateElement< bool >::write ( std::ostream & out) const
inlineoverridevirtual

Stream output.

Parameters
outoutput stream
Returns
output stream

Implements JLANG::JStreamOutput.

Definition at line 1260 of file JParser.hh.

1261 {
1262 return out << object;
1263 }

◆ getStatus()

virtual bool JPARSER::JParserTemplateElement< bool >::getStatus ( ) const
inlineoverridevirtual

Status of object.

Returns
true

Implements JPARSER::JParserElementInterface.

Definition at line 1271 of file JParser.hh.

1272 {
1273 return true;
1274 }

◆ getInitialisationStatus()

virtual bool JPARSER::JParserTemplateElement< bool >::getInitialisationStatus ( ) const
inlineoverridevirtual

Get initialisation status of parameter.

Returns
true

Implements JPARSER::JParserElementInterface.

Definition at line 1282 of file JParser.hh.

1283 {
1284 return true;
1285 }

◆ setInitialiationStatus()

virtual void JPARSER::JParserTemplateElement< bool >::setInitialiationStatus ( const bool value)
inlineoverridevirtual

Set initialisation status of parameter.

This implementation doesn't do anything.

Parameters
valueinitialisation status

Implements JPARSER::JParserElementInterface.

Definition at line 1294 of file JParser.hh.

1295 {}

◆ gcount()

virtual bool JPARSER::JParserTemplateElement< bool >::gcount ( ) const
inlineoverridevirtual

Read counter.

Returns
true if at least one character to be read; else false

Reimplemented from JPARSER::JParserElementInterface.

Definition at line 1303 of file JParser.hh.

1304 {
1305 return false;
1306 }

◆ getName()

const std::string & JPARSER::JParserElementInterface::getName ( ) const
inlineinherited

Get name of parameter.

Returns
name

Definition at line 525 of file JParser.hh.

526 {
527 return __name;
528 }

◆ getHelp()

const std::string & JPARSER::JParserElementInterface::getHelp ( ) const
inlineinherited

Get help of parameter.

Returns
help

Definition at line 536 of file JParser.hh.

537 {
538 return __help;
539 }

◆ print()

virtual void JPARSER::JParserElementInterface::print ( std::ostream & out) const
inlinevirtualinherited

Print.

Parameters
outoutput stream

Reimplemented in JPARSER::JParserTemplateElement< JType_t, true >.

Definition at line 571 of file JParser.hh.

572 {
573 using namespace std;
574
575 out << "<" << getName() << ">";
576
577 if (getStatus() && !getShortprint(out)) {
578
579 int width = WIDTH - getName().length();
580
581 if (width > 0) {
582 out << setw(width) << " ";
583 }
584
585 out << " = ";
586
587 write(out);
588 }
589
590 if (getLongprint(out) && getHelp() != "") {
591 out << " \"" << getHelp() << "\"";
592 }
593 }
bool getShortprint(std::ostream &out)
Get short print option.
Definition JManip.hh:75
bool getLongprint(std::ostream &out)
Get long print option.
Definition JManip.hh:121
virtual std::ostream & write(std::ostream &out) const =0
Stream output.
virtual bool getStatus() const =0
Get status of parameter.
const std::string & getName() const
Get name of parameter.
Definition JParser.hh:525
const std::string & getHelp() const
Get help of parameter.
Definition JParser.hh:536
Auxiliary data structure for alignment of data.
Definition JManip.hh:231

Member Data Documentation

◆ object

bool& JPARSER::JParserTemplateElement< bool >::object
private

Definition at line 1310 of file JParser.hh.

◆ __name

std::string JPARSER::JParserElementInterface::__name
protectedinherited

Definition at line 608 of file JParser.hh.

◆ __help

std::string JPARSER::JParserElementInterface::__help
protectedinherited

Definition at line 609 of file JParser.hh.


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