Isis Developer Reference
Isis::PvlObject Class Reference

Contains Pvl Groups and Pvl Objects. More...

#include <PvlObject.h>

Inheritance diagram for Isis::PvlObject:
Inheritance graph
Collaboration diagram for Isis::PvlObject:
Collaboration graph

Public Types

enum  FindOptions { None , Traverse }
 A collection of options to use when finding. More...
 
typedef QList< Isis::PvlGroup >::iterator PvlGroupIterator
 The counter for groups.
 
typedef QList< Isis::PvlGroup >::const_iterator ConstPvlGroupIterator
 
typedef QList< PvlObject >::iterator PvlObjectIterator
 The counter for objects.
 
typedef QList< PvlObject >::const_iterator ConstPvlObjectIterator
 
enum  InsertMode { Append , Replace }
 Contains both modes: Append or Replace. More...
 
typedef QList< PvlKeyword >::iterator PvlKeywordIterator
 The keyword iterator.
 
typedef QList< PvlKeyword >::const_iterator ConstPvlKeywordIterator
 The const keyword iterator.
 

Public Member Functions

 PvlObject ()
 Creates a blank PvlObject.
 
 PvlObject (const QString &name)
 Creates a PvlObject with a specified name.
 
 PvlObject (const PvlObject &other)
 Copy constructor.
 
 PvlObject (const QString &name, const nlohmann::json &jsonobj)
 Creates a PvlObject with a specified name converted from a json object.
 
int groups () const
 Returns the number of groups contained.
 
PvlGroupgroup (const int index)
 Return the group at the specified index.
 
const PvlGroupgroup (const int index) const
 Return the group at the specified index.
 
PvlGroupIterator beginGroup ()
 Returns the beginning group index.
 
ConstPvlGroupIterator beginGroup () const
 Returns the beginning group index.
 
PvlGroupIterator endGroup ()
 Returns the ending group index.
 
ConstPvlGroupIterator endGroup () const
 Returns the const ending group index.
 
PvlGroupIterator findGroup (const QString &name, PvlGroupIterator beg, PvlGroupIterator end)
 Find a group with the specified name, within these indexes.
 
ConstPvlGroupIterator findGroup (const QString &name, ConstPvlGroupIterator beg, ConstPvlGroupIterator end) const
 Find a group with the specified name, within these indexes.
 
PvlKeywordfindKeyword (const QString &kname, FindOptions opts)
 Finds a keyword in the current PvlObject, or deeper inside other PvlObjects and Pvlgroups within this one.
 
bool hasKeyword (const QString &kname, FindOptions opts) const
 See if a keyword is in the current PvlObject, or deeper inside other PvlObjects and Pvlgroups within this one.
 
Isis::PvlGroupfindGroup (const QString &name, FindOptions opts=None)
 Finds a group within the current PvlObject.
 
const Isis::PvlGroupfindGroup (const QString &name, FindOptions opts=None) const
 Finds a group within the current PvlObject.
 
void addGroup (const Isis::PvlGroup &group)
 Add a group to the object.
 
void addLogGroup (Isis::PvlGroup &group)
 Add a group to the object and report it to the log/terminal.
 
void operator+= (const Isis::PvlGroup &group)
 
void operator+= (const Isis::PvlObject &obj)
 
void deleteGroup (const QString &name)
 Remove a group from the current PvlObject.
 
void deleteGroup (const int index)
 Remove a group from the current PvlObject.
 
bool hasGroup (const QString &name) const
 Returns a boolean value based on whether the object has the specified group or not.
 
int objects () const
 Returns the number of objects.
 
PvlObjectobject (const int index)
 Return the object at the specified index.
 
const PvlObjectobject (const int index) const
 Return the object at the specified index.
 
PvlObjectIterator beginObject ()
 Returns the index of the beginning object.
 
ConstPvlObjectIterator beginObject () const
 Returns the const index of the beginning object.
 
PvlObjectIterator endObject ()
 Returns the index of the ending object.
 
ConstPvlObjectIterator endObject () const
 Returns the const index of the ending object.
 
PvlObjectIterator findObject (const QString &name, PvlObjectIterator beg, PvlObjectIterator end)
 Find the index of object with a specified name, between two indexes.
 
ConstPvlObjectIterator findObject (const QString &name, ConstPvlObjectIterator beg, ConstPvlObjectIterator end) const
 Find the index of object with a specified name, between two indexes.
 
PvlObjectfindObject (const QString &name, FindOptions opts=None)
 Find an object within the current PvlObject.
 
const PvlObjectfindObject (const QString &name, FindOptions opts=None) const
 Find an object within the current PvlObject.
 
void addObject (const PvlObject &object)
 Add a PvlObject.
 
void deleteObject (const QString &name)
 Remove an object from the current PvlObject.
 
void deleteObject (const int index)
 Remove an object from the current PvlObject.
 
bool hasObject (const QString &name) const
 Returns a boolean value based on whether the object exists in the current PvlObject or not.
 
bool operator== (const PvlObject &object) const
 Compares two PvlObjects.
 
void clear ()
 Remove everything from the current PvlObject.
 
const PvlObjectoperator= (const PvlObject &other)
 This is an assignment operator.
 
void validateObject (PvlObject &pPvlObj)
 Validate Object.
 
PvlKeywordfindKeyword (const QString &name)
 Find a keyword with a specified name.
 
const PvlKeywordfindKeyword (const QString &name) const
 Find a keyword with a specified name.
 
PvlKeywordIterator findKeyword (const QString &name, PvlKeywordIterator beg, PvlKeywordIterator end)
 Find the index of a keyword, using iterators.
 
ConstPvlKeywordIterator findKeyword (const QString &name, ConstPvlKeywordIterator beg, ConstPvlKeywordIterator end) const
 Find the index of a keyword, using iterators.
 
bool hasKeyword (const QString &name) const
 Check to see if a keyword exists.
 
void operator+= (const PvlKeyword &keyword)
 When you use the += operator with a PvlKeyword, it will call the addKeyword() method.
 
void setName (const QString &name)
 Set the name of the container.
 
QString name () const
 Returns the container name.
 
bool isNamed (const QString &match) const
 Returns whether the given string is equal to the container name or not.
 
QString type () const
 Returns the container type.
 
int keywords () const
 Returns the number of keywords contained in the PvlContainer.
 
void addKeyword (const PvlKeyword &keyword, const InsertMode mode=Append)
 Add a keyword to the container.
 
PvlKeywordIterator addKeyword (const PvlKeyword &keyword, PvlKeywordIterator pos)
 Insert a keyword at the specified iterator position.
 
PvlKeywordoperator[] (const QString &name)
 When you use the [] operator with a (string) name, it will call the findKeyword() method.
 
PvlKeywordoperator[] (const int index)
 Return the PvlKeyword object at the specified index.
 
PvlKeywordoperator[] (const char *name)
 When you use the [] operator with a (char) name, it will call the findKeyword() method.
 
const PvlKeywordoperator[] (const QString &name) const
 When you use the [] operator with a (string) name, it will call the findKeyword() method.
 
const PvlKeywordoperator[] (const int index) const
 Return the PvlKeyword object at the specified index.
 
PvlKeyword operator[] (const char *name) const
 When you use the [] operator with a (char) name, it will call the findKeyword() method.
 
PvlKeywordIterator begin ()
 Return the beginning iterator.
 
ConstPvlKeywordIterator begin () const
 Return the const beginning iterator.
 
PvlKeywordIterator end ()
 Return the ending iterator.
 
ConstPvlKeywordIterator end () const
 Return the const ending iterator.
 
void deleteKeyword (const QString &name)
 Remove a specified keyword.
 
void deleteKeyword (const int index)
 Remove the specified keyword.
 
bool cleanDuplicateKeywords ()
 Removes keywords from the container that have BOTH the same name and value.
 
void operator-= (const QString &name)
 When you use the -= operator with a (string) name, it will call the deleteKeyword() method.
 
void operator-= (const PvlKeyword &key)
 When you use the -= operator with a PvlKeyword object, it will call the deleteKeyword() method.
 
QString fileName () const
 Returns the filename used to initialise the Pvl object.
 
void setFormatTemplate (PvlContainer &ref)
 
bool hasFormatTemplate ()
 
PvlContainerformatTemplate ()
 
PvlFormatformat ()
 
void setFormat (PvlFormat *format)
 
int indent ()
 
void setIndent (int indent)
 
int comments () const
 
QString comment (const int index) const
 
void addComment (const QString &comment)
 
PvlKeywordnameKeyword ()
 
const PvlKeywordnameKeyword () const
 

Protected Member Functions

void init ()
 Sets the filename to blank.
 
void setFileName (const QString &filename)
 Sets the filename to the specified string.
 
void validateAllKeywords (PvlContainer &pPvlCont)
 Validate All the Keywords in a Container comparing with the Template.
 
void validateRepeatOption (PvlKeyword &pPvlTmplKwrd, PvlContainer &pPvlCont)
 Validate the Repeat Option for a Keyword.
 

Protected Attributes

QString m_filename
 This contains the filename used to initialize the pvl object.
 
PvlKeyword m_name
 This is the name keyword.
 
QList< PvlKeywordm_keywords
 This is the vector of PvlKeywords the container is holding.
 
PvlContainerm_formatTemplate
 

Friends

std::ostream & operator<< (std::ostream &os, Isis::PvlObject &object)
 Outputs the PvlObject data to a specified output stream.
 
std::istream & operator>> (std::istream &is, PvlObject &result)
 This method reads a PvlObject from the input stream.
 

Detailed Description

Contains Pvl Groups and Pvl Objects.

Contains Pvl groups and objects. Organizes text on output to be indented correctly.

Author
2002-10-11 Jeff Anderson

Member Typedef Documentation

◆ ConstPvlGroupIterator

◆ ConstPvlKeywordIterator

typedef QList<PvlKeyword>::const_iterator Isis::PvlContainer::ConstPvlKeywordIterator
inherited

The const keyword iterator.

◆ ConstPvlObjectIterator

◆ PvlGroupIterator

The counter for groups.

◆ PvlKeywordIterator

The keyword iterator.

◆ PvlObjectIterator

The counter for objects.

Member Enumeration Documentation

◆ FindOptions

A collection of options to use when finding.

Enumerator
None 

Search only the current level.

Traverse 

Search child objects.

◆ InsertMode

Contains both modes: Append or Replace.

Enumerator
Append 
Replace 

Constructor & Destructor Documentation

◆ PvlObject() [1/4]

Isis::PvlObject::PvlObject ( )

Creates a blank PvlObject.

◆ PvlObject() [2/4]

Isis::PvlObject::PvlObject ( const QString & name)

Creates a PvlObject with a specified name.

Parameters
nameThe name of the PvlObject.

◆ PvlObject() [3/4]

Isis::PvlObject::PvlObject ( const PvlObject & other)

Copy constructor.

◆ PvlObject() [4/4]

Isis::PvlObject::PvlObject ( const QString & name,
const nlohmann::json & jsonobj )

Creates a PvlObject with a specified name converted from a json object.

TODO: Needs to be more robust, right now exists in order to convert an Ale ISD NaifKeywords group over to an ISIS compatible version.

Parameters
nameThe name of the PvlObject.
jsonJson object to convert to PVL

References _FILEINFO_, Isis::PvlKeyword::addJsonValue(), Isis::PvlContainer::addKeyword(), Isis::PvlContainer::name(), Isis::PvlKeyword::setJsonValue(), Isis::PvlKeyword::setName(), and Isis::IException::Unknown.

Member Function Documentation

◆ addComment()

void Isis::PvlContainer::addComment ( const QString & comment)
inlineinherited

◆ addGroup()

◆ addKeyword() [1/2]

void Isis::PvlContainer::addKeyword ( const PvlKeyword & keyword,
const InsertMode mode = Append )
inherited

Add a keyword to the container.

Add a keyword to the PvlContainer object.

Parameters
keywordThe PvlKeyword object to append.
modeUsing the InsertMode value of Append.
keyThe PvlKeyword object to add.
modeThe enum InsertMode has two possible values, Append or Replace. Use Append if you just want to add it to the end, Replace if you want to replace it.

References Isis::PvlContainer::Append, Isis::PvlContainer::findKeyword(), Isis::PvlContainer::hasKeyword(), Isis::PvlContainer::m_keywords, and Isis::PvlKeyword::name().

Referenced by Isis::PvlFormat::add(), Isis::ControlNetDiff::addUniquePoint(), Isis::CameraFactory::Create(), Isis::ControlNetDiff::diff(), Isis::ControlNetDiff::diff(), Isis::PvlContainer::operator+=(), PvlObject(), Isis::ProcessMapMosaic::SetOutputCube(), Isis::Projection::SetUpperLeftCorner(), Isis::Spice::storeValue(), and Isis::SubArea::UpdateLabel().

◆ addKeyword() [2/2]

PvlContainer::PvlKeywordIterator Isis::PvlContainer::addKeyword ( const PvlKeyword & keyword,
PvlKeywordIterator pos )
inherited

Insert a keyword at the specified iterator position.

This method provides the capability to insert a keyword at the specified iterator position. The process follows the description of the STL vector definition along with all the caveats (e.g., invalidation of iterators upon insert operations).

This method will not perform any checks for the existance of the keyword. This could lead to multiple instances of the same keyword in the same container. It is up to the caller to manage this issue.

Parameters
keyKeyword to insert
posIterator position where to insert the new keyword
Returns
PvlContainer::PvlKeywordIterator Returns the position of the inserted keyword per the STL vector documentation.

References Isis::PvlContainer::m_keywords.

◆ addLogGroup()

void Isis::PvlObject::addLogGroup ( Isis::PvlGroup & group)

Add a group to the object and report it to the log/terminal.

Parameters
groupThe PvlGroup object to add.

References addGroup(), group(), and Isis::Application::Log().

◆ addObject()

◆ begin() [1/2]

◆ begin() [2/2]

ConstPvlKeywordIterator Isis::PvlContainer::begin ( ) const
inlineinherited

Return the const beginning iterator.

Returns
The const beginning iterator.

References Isis::PvlContainer::m_keywords.

◆ beginGroup() [1/2]

PvlGroupIterator Isis::PvlObject::beginGroup ( )
inline

Returns the beginning group index.

Returns
The iterator of the beginning group..

Referenced by deleteGroup(), deleteGroup(), findGroup(), findGroup(), and hasGroup().

◆ beginGroup() [2/2]

ConstPvlGroupIterator Isis::PvlObject::beginGroup ( ) const
inline

Returns the beginning group index.

Returns
The iterator of the beginning group..

◆ beginObject() [1/2]

PvlObjectIterator Isis::PvlObject::beginObject ( )
inline

Returns the index of the beginning object.

Returns
The beginning object's index.

Referenced by deleteObject(), deleteObject(), findObject(), findObject(), and hasObject().

◆ beginObject() [2/2]

ConstPvlObjectIterator Isis::PvlObject::beginObject ( ) const
inline

Returns the const index of the beginning object.

Returns
The beginning object's index.

◆ cleanDuplicateKeywords()

bool Isis::PvlContainer::cleanDuplicateKeywords ( )
inherited

Removes keywords from the container that have BOTH the same name and value.

Returns
bool True if one or more keywords were deleted; False if no keywords were deleted.

References Isis::PvlContainer::begin(), Isis::PvlContainer::end(), and Isis::PvlContainer::m_keywords.

◆ clear()

void Isis::PvlObject::clear ( )
inline

Remove everything from the current PvlObject.

References Isis::PvlContainer::clear().

◆ comment()

QString Isis::PvlContainer::comment ( const int index) const
inlineinherited

◆ comments()

int Isis::PvlContainer::comments ( ) const
inlineinherited

◆ deleteGroup() [1/2]

void Isis::PvlObject::deleteGroup ( const int index)

Remove a group from the current PvlObject.

Parameters
indexThe index of the PvlGroup to remove.
Exceptions
IException

References _FILEINFO_, beginGroup(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Isis::PvlContainer::type(), and Isis::IException::Unknown.

◆ deleteGroup() [2/2]

void Isis::PvlObject::deleteGroup ( const QString & name)

Remove a group from the current PvlObject.

Parameters
nameThe name of the PvlGroup to remove.
Exceptions
IException

References _FILEINFO_, beginGroup(), endGroup(), findGroup(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Isis::PvlContainer::type(), and Isis::IException::Unknown.

◆ deleteKeyword() [1/2]

void Isis::PvlContainer::deleteKeyword ( const int index)
inherited

Remove the specified keyword.

Parameters
indexThe index of the keyword to remove.
Exceptions
iException::PvlKeyword doesn't exist.

References _FILEINFO_, Isis::PvlContainer::begin(), Isis::PvlContainer::m_filename, Isis::PvlContainer::m_keywords, Isis::PvlContainer::name(), Isis::PvlContainer::type(), and Isis::IException::Unknown.

◆ deleteKeyword() [2/2]

◆ deleteObject() [1/2]

void Isis::PvlObject::deleteObject ( const int index)

Remove an object from the current PvlObject.

Parameters
indexThe index of the PvlObject to remove.
Exceptions
IException

References _FILEINFO_, beginObject(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Isis::PvlContainer::type(), and Isis::IException::Unknown.

◆ deleteObject() [2/2]

void Isis::PvlObject::deleteObject ( const QString & name)

◆ end() [1/2]

◆ end() [2/2]

ConstPvlKeywordIterator Isis::PvlContainer::end ( ) const
inlineinherited

Return the const ending iterator.

Returns
The const ending iterator.

References Isis::PvlContainer::m_keywords.

◆ endGroup() [1/2]

PvlGroupIterator Isis::PvlObject::endGroup ( )
inline

Returns the ending group index.

Returns
The iterator of the ending group.

Referenced by deleteGroup(), findGroup(), findGroup(), and hasGroup().

◆ endGroup() [2/2]

ConstPvlGroupIterator Isis::PvlObject::endGroup ( ) const
inline

Returns the const ending group index.

Returns
The iterator of the ending group.

◆ endObject() [1/2]

PvlObjectIterator Isis::PvlObject::endObject ( )
inline

Returns the index of the ending object.

Returns
The ending object's index.

Referenced by deleteObject(), findObject(), findObject(), and hasObject().

◆ endObject() [2/2]

ConstPvlObjectIterator Isis::PvlObject::endObject ( ) const
inline

Returns the const index of the ending object.

Returns
The ending object's index.

◆ fileName()

◆ findGroup() [1/4]

ConstPvlGroupIterator Isis::PvlObject::findGroup ( const QString & name,
ConstPvlGroupIterator beg,
ConstPvlGroupIterator end ) const
inline

Find a group with the specified name, within these indexes.

Parameters
nameThe name of the group to look for.
begThe lower index
endThe higher index

References Isis::PvlContainer::end(), and Isis::PvlContainer::name().

◆ findGroup() [2/4]

Isis::PvlGroup & Isis::PvlObject::findGroup ( const QString & name,
PvlObject::FindOptions opts = None )

Finds a group within the current PvlObject.

Parameters
nameThe name of the group to look for.
optsThe FindOptions option (None or Traverse).
Returns
The PvlGroup object sought for.
Exceptions
IException

References _FILEINFO_, beginGroup(), endGroup(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Traverse, and Isis::IException::Unknown.

◆ findGroup() [3/4]

const Isis::PvlGroup & Isis::PvlObject::findGroup ( const QString & name,
PvlObject::FindOptions opts = None ) const

Finds a group within the current PvlObject.

Parameters
nameThe name of the group to look for.
optsThe FindOptions option (None or Traverse).
Returns
The PvlGroup object sought for.
Exceptions
IException

References _FILEINFO_, beginGroup(), endGroup(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Traverse, and Isis::IException::Unknown.

◆ findGroup() [4/4]

PvlGroupIterator Isis::PvlObject::findGroup ( const QString & name,
PvlGroupIterator beg,
PvlGroupIterator end )
inline

Find a group with the specified name, within these indexes.

Parameters
nameThe name of the group to look for.
begThe lower index
endThe higher index

References Isis::PvlContainer::end(), and Isis::PvlContainer::name().

Referenced by Isis::ApolloMetricCamera::ApolloMetricCamera(), Isis::ApolloPanoramicCamera::ApolloPanoramicCamera(), Isis::Camera::Camera(), Isis::ProjectionFactory::Create(), Isis::ProjectionFactory::CreateForCube(), Isis::ProjectionFactory::CreateForCube(), Isis::ProjectionFactory::CreateFromCube(), deleteGroup(), Isis::DemShape::DemShape(), Isis::PvlToPvlTranslationManager::DoTranslation(), Isis::Equirectangular::Equirectangular(), Isis::KernelDb::findAll(), Isis::PvlTranslationTable::findTranslationGroup(), Isis::MosaicSceneWidget::fromPvl(), Isis::Plugin::GetPlugin(), hasGroup(), Isis::IdealCamera::IdealCamera(), Isis::LambertConformal::LambertConformal(), Isis::LunarAzimuthalEqualArea::LunarAzimuthalEqualArea(), Isis::KernelDb::matches(), Isis::Mercator::Mercator(), Isis::Mollweide::Mollweide(), Isis::ObliqueCylindrical::ObliqueCylindrical(), Isis::Orthographic::Orthographic(), Isis::GridPolygonSeeder::Parse(), Isis::LimitPolygonSeeder::Parse(), Isis::PolygonSeeder::Parse(), Isis::StripPolygonSeeder::Parse(), Isis::Planar::Planar(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::Projection::Projection(), Isis::AutoReg::RegTemplate(), Isis::RingCylindrical::RingCylindrical(), Isis::ProjectionFactory::RingsCreate(), Isis::ProjectionFactory::RingsCreateForCube(), Isis::ProjectionFactory::RingsCreateForCube(), Isis::ProjectionFactory::RingsCreateFromCube(), Isis::ProcessMapMosaic::RingsSetOutputCube(), Isis::Robinson::Robinson(), Isis::ProcessMapMosaic::SetOutputCube(), Isis::ControlNet::SetTarget(), Isis::SimpleCylindrical::SimpleCylindrical(), Isis::Sinusoidal::Sinusoidal(), Isis::Target::Target(), and Isis::TransverseMercator::TransverseMercator().

◆ findKeyword() [1/5]

PvlKeyword & Isis::PvlObject::findKeyword ( const QString & kname,
FindOptions opts )

Finds a keyword in the current PvlObject, or deeper inside other PvlObjects and Pvlgroups within this one.

Note: This member has the same name as the PvlContainer and hides those implementations, but with the using statement the parents FindKeyword members ar made visible. Note: If more than one occurance of a Keyword appears below this Object no guarantee is made as to which one is returned.

Parameters
knameThe name of the keyword to look for.
optsThe FindOptions option (None or Traverse).
Returns
The keyword sought
Exceptions
IException

References _FILEINFO_, Isis::PvlContainer::begin(), Isis::PvlContainer::end(), findKeyword(), group(), Isis::PvlContainer::m_filename, None, and Isis::IException::Unknown.

Referenced by Isis::PvlFormat::accuracy(), Isis::ControlNetDiff::compare(), Isis::CSMCamera::CSMCamera(), findKeyword(), Isis::SpicePosition::LoadCache(), Isis::SpiceRotation::LoadCache(), Isis::Spice::readStoredValue(), Isis::Spice::storeValue(), and Isis::PvlFormat::type().

◆ findKeyword() [2/5]

Isis::PvlKeyword & Isis::PvlContainer::findKeyword ( const QString & name)

Find a keyword with a specified name.

Parameters
nameThe name of the keyword to look for.
Returns
The PvlKeyword object.
Exceptions
iException::PvlThe keyword doesn't exist.

◆ findKeyword() [3/5]

const Isis::PvlKeyword & Isis::PvlContainer::findKeyword ( const QString & name) const

Find a keyword with a specified name.

Parameters
nameThe name of the keyword to look for.
Returns
The PvlKeyword object.
Exceptions
IExceptionThe keyword doesn't exist.

◆ findKeyword() [4/5]

PvlContainer::ConstPvlKeywordIterator Isis::PvlContainer::findKeyword ( const QString & name,
PvlContainer::ConstPvlKeywordIterator beg,
PvlContainer::ConstPvlKeywordIterator end ) const

Find the index of a keyword, using iterators.

Parameters
nameThe name of the keyword.
begThe beginning iterator.
endThe ending iterator.
Returns
The keyword index.

◆ findKeyword() [5/5]

PvlContainer::PvlKeywordIterator Isis::PvlContainer::findKeyword ( const QString & name,
PvlContainer::PvlKeywordIterator beg,
PvlContainer::PvlKeywordIterator end )

Find the index of a keyword, using iterators.

Parameters
nameThe name of the keyword.
begThe beginning iterator.
endThe ending iterator.
Returns
The keyword index.

◆ findObject() [1/4]

ConstPvlObjectIterator Isis::PvlObject::findObject ( const QString & name,
ConstPvlObjectIterator beg,
ConstPvlObjectIterator end ) const
inline

Find the index of object with a specified name, between two indexes.

Parameters
nameThe name of the object to find.
begThe lower index.
endThe higher index.
Returns
The index of the object.

References Isis::PvlContainer::end(), and Isis::PvlContainer::name().

◆ findObject() [2/4]

PvlObject & Isis::PvlObject::findObject ( const QString & name,
PvlObject::FindOptions opts = None )

Find an object within the current PvlObject.

Parameters
nameThe object name to look for.
optsThe FindOptions option (None or Traverse).
Returns
The PvlObject sought for.
Exceptions
IException

References _FILEINFO_, beginObject(), endObject(), findObject(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Traverse, and Isis::IException::Unknown.

◆ findObject() [3/4]

const PvlObject & Isis::PvlObject::findObject ( const QString & name,
FindOptions opts = None ) const

Find an object within the current PvlObject.

Parameters
nameThe object name to look for.
optsThe FindOptions option (None or Traverse).
Returns
The PvlObject sought for.
Exceptions
IException

References _FILEINFO_, beginObject(), endObject(), findObject(), Isis::PvlContainer::m_filename, Isis::PvlContainer::name(), Traverse, and Isis::IException::Unknown.

◆ findObject() [4/4]

PvlObjectIterator Isis::PvlObject::findObject ( const QString & name,
PvlObjectIterator beg,
PvlObjectIterator end )
inline

Find the index of object with a specified name, between two indexes.

Parameters
nameThe name of the object to find.
begThe lower index.
endThe higher index.
Returns
The index of the object.

References Isis::PvlContainer::end(), and Isis::PvlContainer::name().

Referenced by Isis::SerialNumberList::add(), Isis::SerialNumberList::add(), Isis::AlphaCube::AlphaCube(), Isis::AutoReg::AutoReg(), Isis::ControlNetDiff::compare(), Isis::Cube::copy(), Isis::CubeIoHandler::CubeIoHandler(), Isis::CubeTileHandler::CubeTileHandler(), Isis::Cube::deleteGroup(), deleteObject(), Isis::Cube::externalCubeFileName(), Isis::ProcessExportPds4::fileAreaObservational(), Isis::KernelDb::findAll(), findObject(), findObject(), Isis::Cube::fromLabel(), Isis::MosaicSceneWidget::fromPvl(), Isis::Equalization::fromPvl(), Isis::CubeViewport::getBandFilterName(), Isis::PvlToPvlTranslationManager::GetContainer(), Isis::PvlToXmlTranslationManager::GetContainer(), Isis::Equalization::getResults(), Isis::Cube::group(), Isis::Cube::hasGroup(), hasObject(), Isis::ImageImporter::import(), Isis::Equalization::importStatistics(), Isis::Cube::isProjected(), Isis::DbAccess::load(), Isis::KernelDb::matches(), Isis::Cube::open(), Isis::AutoReg::Parse(), Isis::ProcessImportPds::ProcessLabel(), Isis::Process::PropagateLabels(), Isis::Cube::putGroup(), Isis::Target::radiiGroup(), Isis::Cube::relocateDnData(), Isis::Process::SetOutputCube(), Isis::ProcessMosaic::SetOutputCube(), Isis::ControlNet::SetTarget(), Isis::ProcessExportPds::StandardAllMapping(), Isis::ProcessExportPds::StandardImageImage(), Isis::ProcessExportPds::StandardJP2Image(), Isis::ControlNetVersioner::toPvl(), Isis::AlphaCube::UpdateGroup(), Isis::SubArea::UpdateLabel(), Isis::CubeTileHandler::updateLabels(), Isis::CubeBsqHandler::updateLabels(), Isis::SpectralPlotTool::updateTool(), validateObject(), and Isis::Pvl::validatePvl().

◆ format()

◆ formatTemplate()

PvlContainer * Isis::PvlContainer::formatTemplate ( )
inlineinherited

◆ group() [1/2]

◆ group() [2/2]

const Isis::PvlGroup & Isis::PvlObject::group ( const int index) const

Return the group at the specified index.

Parameters
indexThe index of the group.
Returns
The PvlGroup sought for.
Exceptions
IException

References _FILEINFO_, Isis::Message::ArraySubscriptNotInRange(), and Isis::IException::Programmer.

◆ groups()

◆ hasFormatTemplate()

bool Isis::PvlContainer::hasFormatTemplate ( )
inlineinherited

◆ hasGroup()

bool Isis::PvlObject::hasGroup ( const QString & name) const
inline

Returns a boolean value based on whether the object has the specified group or not.

Parameters
nameThe name of the group to look for.
Returns
True if the object has the group, false if not.

References beginGroup(), endGroup(), findGroup(), and Isis::PvlContainer::name().

Referenced by Isis::KernelDb::findAll(), Isis::PvlTranslationTable::findTranslationGroup(), Isis::AutoReg::RegTemplate(), and Isis::ControlNet::SetTarget().

◆ hasKeyword() [1/2]

bool Isis::PvlObject::hasKeyword ( const QString & kname,
FindOptions opts ) const

See if a keyword is in the current PvlObject, or deeper inside other PvlObjects and Pvlgroups within this one.

Note: This member has the same name as the PvlContainer and hides those implementations, but with the using statement the parents FindKeyword members ar made visible.

Parameters
knameThe name of the keyword to look for.
optsThe FindOptions option (None or Traverse).
Returns
True if the Keyword exists False otherwise.

References Isis::PvlContainer::begin(), Isis::PvlContainer::end(), group(), hasKeyword(), and None.

Referenced by Isis::PvlFormat::accuracy(), Isis::PvlFormat::add(), Isis::Blob::Find(), hasKeyword(), Isis::Table::initFromBlob(), Isis::SpicePosition::LoadCache(), Isis::SpiceRotation::LoadCache(), Isis::SpiceRotation::loadPCFromTable(), Isis::ProcessExportPds::OutputLabel(), Isis::Spice::readStoredValue(), Isis::Spice::storeValue(), and Isis::PvlFormat::type().

◆ hasKeyword() [2/2]

bool Isis::PvlContainer::hasKeyword ( const QString & name) const

Check to see if a keyword exists.

Parameters
nameThe name of the keyword to check for.
Returns
True if the keyword exists, false if it doesn't.

◆ hasObject()

bool Isis::PvlObject::hasObject ( const QString & name) const
inline

Returns a boolean value based on whether the object exists in the current PvlObject or not.

Parameters
nameThe name of the object to search for.
Returns
True if the current PvlObject has the specified object, false if it does not.

References beginObject(), endObject(), findObject(), and Isis::PvlContainer::name().

Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::KernelDb::findAll(), Isis::MosaicSceneWidget::fromPvl(), Isis::ProjectionFactory::RingsCreateForCube(), and Isis::ControlNet::SetTarget().

◆ indent()

int Isis::PvlContainer::indent ( )
inlineinherited

◆ init()

void Isis::PvlContainer::init ( )
protectedinherited

◆ isNamed()

bool Isis::PvlContainer::isNamed ( const QString & match) const
inlineinherited

Returns whether the given string is equal to the container name or not.

Parameters
matchThe string to compare to the name.
Returns
True if the name and string are the same, false if they are not.

References Isis::PvlContainer::m_name, and Isis::PvlKeyword::stringEqual().

Referenced by Isis::KernelDb::findAll(), Isis::Table::initFromBlob(), and Isis::RemoveHiBlobs().

◆ keywords()

◆ name()

◆ nameKeyword() [1/2]

PvlKeyword & Isis::PvlContainer::nameKeyword ( )
inlineinherited

◆ nameKeyword() [2/2]

const PvlKeyword & Isis::PvlContainer::nameKeyword ( ) const
inlineinherited

◆ object() [1/2]

◆ object() [2/2]

const PvlObject & Isis::PvlObject::object ( const int index) const

Return the object at the specified index.

Parameters
indexThe index of the object.
Returns
The PvlObject sought for.
Exceptions
IException::Programmer

References _FILEINFO_, Isis::Message::ArraySubscriptNotInRange(), and Isis::IException::Programmer.

◆ objects()

int Isis::PvlObject::objects ( ) const
inline

◆ operator+=() [1/3]

void Isis::PvlObject::operator+= ( const Isis::PvlGroup & group)
inline

References addGroup(), and group().

◆ operator+=() [2/3]

void Isis::PvlObject::operator+= ( const Isis::PvlObject & obj)
inline

References addObject().

◆ operator+=() [3/3]

void Isis::PvlContainer::operator+= ( const PvlKeyword & keyword)
inline

When you use the += operator with a PvlKeyword, it will call the addKeyword() method.

Parameters
keywordThe PvlKeyword to be added.

◆ operator-=() [1/2]

void Isis::PvlContainer::operator-= ( const PvlKeyword & key)
inlineinherited

When you use the -= operator with a PvlKeyword object, it will call the deleteKeyword() method.

Parameters
keyThe PvlKeyword object to remove.

References Isis::PvlContainer::deleteKeyword(), and Isis::PvlKeyword::name().

◆ operator-=() [2/2]

void Isis::PvlContainer::operator-= ( const QString & name)
inlineinherited

When you use the -= operator with a (string) name, it will call the deleteKeyword() method.

Parameters
nameThe name of the keyword to remove.

References Isis::PvlContainer::deleteKeyword(), and Isis::PvlContainer::name().

◆ operator=()

const PvlObject & Isis::PvlObject::operator= ( const PvlObject & other)

This is an assignment operator.

References Isis::PvlContainer::operator=().

Referenced by Isis::Pvl::operator=().

◆ operator==()

bool Isis::PvlObject::operator== ( const PvlObject & object) const
inline

Compares two PvlObjects.

Returns a boolean value based on the StringEqual() method.

Parameters
objectThe PvlObject to compare.
Returns
True if they are equal, false if not.

References Isis::PvlContainer::name(), and Isis::PvlKeyword::stringEqual().

◆ operator[]() [1/6]

PvlKeyword & Isis::PvlContainer::operator[] ( const char * name)
inlineinherited

When you use the [] operator with a (char) name, it will call the findKeyword() method.

Parameters
nameThe name of the keyword to find.

References Isis::PvlContainer::name(), and Isis::PvlContainer::operator[]().

◆ operator[]() [2/6]

PvlKeyword Isis::PvlContainer::operator[] ( const char * name) const
inlineinherited

When you use the [] operator with a (char) name, it will call the findKeyword() method.

Parameters
nameThe name of the keyword to find.

References Isis::PvlContainer::name(), and Isis::PvlContainer::operator[]().

◆ operator[]() [3/6]

PvlKeyword & Isis::PvlContainer::operator[] ( const int index)
inherited

Return the PvlKeyword object at the specified index.

Parameters
indexThe index to use.
Returns
The PvlKeyword at the specified index.
Exceptions
iException::MessageThe index is out of bounds.

References _FILEINFO_, Isis::Message::ArraySubscriptNotInRange(), Isis::PvlContainer::m_keywords, and Isis::IException::Programmer.

◆ operator[]() [4/6]

const Isis::PvlKeyword & Isis::PvlContainer::operator[] ( const int index) const
inherited

Return the PvlKeyword object at the specified index.

Parameters
indexThe index to use.
Returns
The PvlKeyword at the specified index.
Exceptions
iException::MessageThe index is out of bounds.

References _FILEINFO_, Isis::Message::ArraySubscriptNotInRange(), Isis::PvlContainer::m_keywords, and Isis::IException::Programmer.

◆ operator[]() [5/6]

PvlKeyword & Isis::PvlContainer::operator[] ( const QString & name)
inlineinherited

When you use the [] operator with a (string) name, it will call the findKeyword() method.

Parameters
nameThe name of the keyword to find.

References Isis::PvlContainer::findKeyword(), and Isis::PvlContainer::name().

Referenced by Isis::PvlContainer::operator[](), and Isis::PvlContainer::operator[]().

◆ operator[]() [6/6]

const PvlKeyword & Isis::PvlContainer::operator[] ( const QString & name) const
inlineinherited

When you use the [] operator with a (string) name, it will call the findKeyword() method.

Parameters
nameThe name of the keyword to find.

References Isis::PvlContainer::findKeyword(), and Isis::PvlContainer::name().

◆ setFileName()

void Isis::PvlContainer::setFileName ( const QString & filename)
inlineprotectedinherited

Sets the filename to the specified string.

Parameters
filenameThe new filename to use.

References Isis::PvlContainer::m_filename.

◆ setFormat()

◆ setFormatTemplate()

void Isis::PvlContainer::setFormatTemplate ( PvlContainer & ref)
inlineinherited

◆ setIndent()

void Isis::PvlContainer::setIndent ( int indent)
inlineinherited

◆ setName()

◆ type()

◆ validateAllKeywords()

void Isis::PvlContainer::validateAllKeywords ( PvlContainer & pPvlCont)
protectedinherited

Validate All the Keywords in a Container comparing with the Template.

Validate all the PvlKeywords in this container.

Author
Sharmila Prasad (9/24/2010)
Parameters
pPvlCont- Container to be Validated
History
2010-10-18 Sharmila Prasad - Added options "Type", "Range", "Value" for the keyword validation

References _FILEINFO_, Isis::PvlContainer::findKeyword(), Isis::PvlContainer::hasKeyword(), Isis::PvlContainer::keywords(), Isis::PvlKeyword::name(), Isis::IException::User, and Isis::PvlContainer::validateRepeatOption().

Referenced by Isis::PvlGroup::validateGroup(), validateObject(), and Isis::Pvl::validatePvl().

◆ validateObject()

void Isis::PvlObject::validateObject ( PvlObject & pPvlObj)

Validate Object.

Validate a PvlObject, comparing against corresponding Template PvlObject.

If the Objects are nested, it will recursively validate the PvlObject.

Template PvlObject has the format: Object = (objectName, optional/required)

Author
Sharmila Prasad (9/22/2010)
Parameters
pvlObj-PvlObject to be validated

References _FILEINFO_, findObject(), group(), groups(), object(), objects(), Isis::IException::User, Isis::PvlContainer::validateAllKeywords(), and Isis::PvlGroup::validateGroup().

◆ validateRepeatOption()

void Isis::PvlContainer::validateRepeatOption ( PvlKeyword & pPvlTmplKwrd,
PvlContainer & pPvlCont )
protectedinherited

Validate the Repeat Option for a Keyword.

Validate Repeat Option in the Template Group.

This option indicates that a particular keyname can be repeated several times

Author
Sharmila Prasad (9/24/2010)
Parameters
pPvlTmplKwrd- Template Keyword wit
pPvlCont- Container with all the Keywords
History
2010-10-18 Sharmila Prasad - Added option "Type" for the keyword validation

References Isis::PvlContainer::findKeyword(), Isis::PvlContainer::hasKeyword(), and Isis::PvlKeyword::name().

Referenced by Isis::PvlContainer::validateAllKeywords().

Friends And Related Symbol Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream & os,
Isis::PvlObject & object )
friend

Outputs the PvlObject data to a specified output stream.

Parameters
osThe output stream to write to.
objectThe PvlObject to send to the output stream.

◆ operator>>

std::istream & operator>> ( std::istream & is,
PvlObject & result )
friend

This method reads a PvlObject from the input stream.

Member Data Documentation

◆ m_filename

◆ m_formatTemplate

◆ m_keywords

◆ m_name


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