ARTS  2.2.66
SourceText Class Reference

A smart class to hold the text for parsing. More...

#include <sourcetext.h>

Public Member Functions

 SourceText ()
 Default constructor. More...
 
void AppendFile (const String &name)
 Appends contents of file to the source text. More...
 
char Current ()
 Return the current character. More...
 
bool reachedEot ()
 Check if the current position reached the end. More...
 
void AdvanceChar ()
 Advance position pointer by one character. More...
 
void AdvanceLine ()
 Advances position pointer by one line. More...
 
const StringFile ()
 Return the filename associated with the current position. More...
 
Index Line ()
 Return the line number, but for the file that is associated with the current position. More...
 
Index LineRaw ()
 Return the line index. More...
 
Index ColumnRaw ()
 Return the column index. More...
 
Index Column ()
 Return the current column. More...
 
void SetPosition (Index line, Index column)
 Set current position. More...
 
void Init ()
 This sets the pointer to the first existing character in the text. More...
 
bool & LineBreak ()
 Read the line break flag. More...
 
bool LineBreak () const
 Const version of LineBreak. More...
 

Private Attributes

ArrayOfString mText
 The text. More...
 
Index mLine
 Line position in the text. More...
 
Index mColumn
 Column position in the text. More...
 
ArrayOfIndex mSfLine
 Remember where which source file starts. More...
 
ArrayOfString mSfName
 Names associated with. More...
 
bool mLineBreak
 Is set to true if the last operation caused a line break. More...
 

Friends

std::ostream & operator<< (std::ostream &os, const SourceText &text)
 Output operator for SourceText. More...
 

Detailed Description

A smart class to hold the text for parsing.

A variable of this class can hold not only the text of the ARTS Control file, but also a position in the text. This is handy for parsing. There is also a function to return the current character and functions to advance the position. (AdvanceChar advances the position to the next character, doing a line break if necessary; AdvanceLine goes to the next line.)

mLine and mColumn are 0 based, but Line and Column are 1 based.

Author
Stefan Buehler

Definition at line 37 of file sourcetext.h.

Constructor & Destructor Documentation

◆ SourceText()

SourceText::SourceText ( )
inline

Default constructor.

Definition at line 41 of file sourcetext.h.

Member Function Documentation

◆ AdvanceChar()

◆ AdvanceLine()

void SourceText::AdvanceLine ( )

Advances position pointer by one line.

Exceptions
EotThe end of the text is reached.

Definition at line 66 of file sourcetext.cc.

References Column(), File(), Line(), mColumn, mLine, mLineBreak, mText, and Array< base >::nelem().

Referenced by ArtsParser::eat_whitespace().

◆ AppendFile()

void SourceText::AppendFile ( const String name)

Appends contents of file to the source text.

See also
read_text_from_file

Definition at line 23 of file sourcetext.cc.

References mSfLine, mSfName, mText, Array< base >::nelem(), and read_text_from_file().

Referenced by ArtsParser::ArtsParser().

◆ Column()

◆ ColumnRaw()

Index SourceText::ColumnRaw ( )
inline

Return the column index.

Definition at line 84 of file sourcetext.h.

References mColumn.

Referenced by ArtsParser::find_named_arguments(), ArtsParser::parse_method_args(), and ArtsParser::skip_to_next_argument().

◆ Current()

◆ File()

◆ Init()

void SourceText::Init ( )

This sets the pointer to the first existing character in the text.

(First few lines could be empty).

Definition at line 118 of file sourcetext.cc.

References Column(), File(), Line(), mColumn, mLine, mLineBreak, mText, and Array< base >::nelem().

Referenced by ArtsParser::parse_main().

◆ Line()

◆ LineBreak() [1/2]

bool& SourceText::LineBreak ( )
inline

Read the line break flag.

Set this to false before an operation that you want to monitor and check it afterwards.

Definition at line 102 of file sourcetext.h.

References mLineBreak.

Referenced by ArtsParser::parse_String(), ArtsParser::read_integer(), ArtsParser::read_name(), and ArtsParser::read_numeric().

◆ LineBreak() [2/2]

bool SourceText::LineBreak ( ) const
inline

Const version of LineBreak.

See also
LineBreak

Definition at line 106 of file sourcetext.h.

References mLineBreak.

◆ LineRaw()

Index SourceText::LineRaw ( )
inline

Return the line index.

Definition at line 81 of file sourcetext.h.

References mLine.

Referenced by ArtsParser::find_named_arguments(), ArtsParser::parse_method_args(), and ArtsParser::skip_to_next_argument().

◆ reachedEot()

bool SourceText::reachedEot ( )
inline

Check if the current position reached the end.

Definition at line 57 of file sourcetext.h.

References mColumn, mLine, mText, and Array< base >::nelem().

Referenced by Current(), and ArtsParser::parse_main().

◆ SetPosition()

void SourceText::SetPosition ( Index  line,
Index  column 
)
inline

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  os,
const SourceText text 
)
friend

Output operator for SourceText.

(Only used for debugging)

Definition at line 152 of file sourcetext.cc.

Member Data Documentation

◆ mColumn

Index SourceText::mColumn
private

Column position in the text.

(0 based!)

Definition at line 120 of file sourcetext.h.

Referenced by AdvanceChar(), AdvanceLine(), Column(), ColumnRaw(), Current(), Init(), reachedEot(), and SetPosition().

◆ mLine

Index SourceText::mLine
private

Line position in the text.

(0 based!)

Definition at line 117 of file sourcetext.h.

Referenced by AdvanceChar(), AdvanceLine(), Current(), File(), Init(), Line(), LineRaw(), reachedEot(), and SetPosition().

◆ mLineBreak

bool SourceText::mLineBreak
private

Is set to true if the last operation caused a line break.

Has to be cleared explicitly!

Definition at line 130 of file sourcetext.h.

Referenced by AdvanceChar(), AdvanceLine(), Init(), and LineBreak().

◆ mSfLine

ArrayOfIndex SourceText::mSfLine
private

Remember where which source file starts.

Definition at line 123 of file sourcetext.h.

Referenced by AppendFile(), File(), and Line().

◆ mSfName

ArrayOfString SourceText::mSfName
private

Names associated with.

See also
mSfLine.

Definition at line 126 of file sourcetext.h.

Referenced by AppendFile(), and File().

◆ mText

ArrayOfString SourceText::mText
private

The text.

Definition at line 114 of file sourcetext.h.

Referenced by AdvanceChar(), AdvanceLine(), AppendFile(), Current(), Init(), operator<<(), and reachedEot().


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