Isis 3 Programmer Reference
|
Construct Token list from a stream. More...
#include <PvlTokenizer.h>
Public Member Functions | |
PvlTokenizer () | |
Constructs a Tokenizer with an empty token list. More... | |
~PvlTokenizer () | |
Destroys the Tokenizer object and token list. More... | |
void | Load (std::istream &stream, const QString &terminator="END") |
Loads the Token list from a stream. More... | |
void | Clear () |
Empties the token list. More... | |
std::vector< Isis::PvlToken > & | GetTokenList () |
Protected Member Functions | |
QString | ReadComment (std::istream &stream) |
Reads and returns a comment from the stream. More... | |
QString | ReadToken (std::istream &stream) |
Reads and returns a token from the stream. More... | |
bool | SkipWhiteSpace (std::istream &stream) |
Skips over whitespace so long as it is not inside quotes. More... | |
QString | ReadToSingleQuote (std::istream &stream) |
QString | ReadToDoubleQuote (std::istream &stream) |
QString | ReadToParen (std::istream &stream) |
QString | ReadToBrace (std::istream &stream) |
void | ParseCommaList (Isis::PvlToken &t, const QString &cl) |
This routine parses a QString containing a comma separated list. More... | |
void | ValidateCharacter (int c) |
Make sure a character is valid printable (non-control) character. More... | |
Protected Attributes | |
std::vector< Isis::PvlToken > | tokens |
The array of Tokens parse out of the stream. More... | |
Construct Token list from a stream.
This class tokenizes a stream. That is, it will take a stream, from a file or a string, and break the contents of the stream into keyword-value pairs. Examples of such are PDS labels, the standard Isis command line, and VICAR labels. Note that this does not validate the stream to ensure it is of PDS- or VICAR-type. It simply creates a list of keyword-value pairs which can be parsed by another object. The ruleset for tokenizing is straightforward. Consider SPACECRAFT=MARS_GLOBAL_SURVEYOR. The keyword would be SPACECRAFT and the value would be MARS_GLOBAL_SURVEYOR. Other valid examples include: LINES=5, FOCAL_LENGTH=12.4, INSTRUMENT="CAMERA_A", LIST=(0,1,5), and DOGS=("LAB","PUG","BULL"). The later examples, are considered arrays and therefore, will have multiple values associated with the keyword. Comments are allowed in the stream and are indicated by either "#" or "/ *" as the first character on the line.
Definition at line 92 of file PvlTokenizer.h.
Isis::PvlTokenizer::PvlTokenizer | ( | ) |
Constructs a Tokenizer with an empty token list.
Definition at line 37 of file PvlTokenizer.cpp.
Isis::PvlTokenizer::~PvlTokenizer | ( | ) |
Destroys the Tokenizer object and token list.
Definition at line 42 of file PvlTokenizer.cpp.
void Isis::PvlTokenizer::Clear | ( | ) |
Empties the token list.
Definition at line 47 of file PvlTokenizer.cpp.
void Isis::PvlTokenizer::Load | ( | std::istream & | stream, |
const QString & | terminator = "END" |
||
) |
Loads the Token list from a stream.
The loading will be terminated upon reaching either 1) end-of-stream, or 2) a programmer specified terminator QString
stream | The input stream to tokenize |
terminator | If the tokenizer see's this QString as a token in the input stream it will cease tokenizing. Defaults to "END" |
Isis::iException::Parse |
Definition at line 63 of file PvlTokenizer.cpp.
References _FILEINFO_, Isis::PvlToken::addValue(), Isis::PvlToken::key(), Isis::PvlToken::keyUpper(), and Isis::Message::KeywordValueBad().
|
protected |
This routine parses a QString containing a comma separated list.
Each of the items in the list is stored as a value in the Token.
t | Token to load the comma separated list |
cl | QString containing comma separated list |
Definition at line 464 of file PvlTokenizer.cpp.
References Isis::PvlToken::addValue().
|
protected |
Reads and returns a comment from the stream.
stream | Input stream to read from |
Definition at line 220 of file PvlTokenizer.cpp.
|
protected |
Reads and returns a token from the stream.
A token is delimited by either whitespace or an equal sign. In the case of whitespace the token will be considered valueless. That is, there will be no value in the value side of the token (e.g., KEYWORD=).
stream | Input stream to read from |
Definition at line 248 of file PvlTokenizer.cpp.
|
protected |
Skips over whitespace so long as it is not inside quotes.
Whitespace is tabs, blanks, line feeds, carriage returns, and NULLs.
stream | Input stream to read from |
Definition at line 272 of file PvlTokenizer.cpp.
|
protected |
Make sure a character is valid printable (non-control) character.
c | Character to be validated |
Definition at line 511 of file PvlTokenizer.cpp.
References _FILEINFO_.
|
protected |
The array of Tokens parse out of the stream.
Definition at line 95 of file PvlTokenizer.h.