Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Core::IDash::XmlQuerySet::ReadData ( String  docName,
Util::IOBuffer ioBuf 
) [inline, private]

Definition at line 85 of file XmlQuerySet.h.

References Impala::Util::XmlDoc::GetAttributeValue(), Impala::Util::XmlDoc::GetChildNode(), Impala::Util::XmlDoc::GetElementValue(), ILOG_DEBUG, mId, mValid, mVideosLink, and Impala::Persistency::XmlFileReader::Read().

Referenced by XmlQuerySet().

00086     {
00087         mValid = false;
00088         Persistency::XmlFileReader reader;
00089         DOMDocument* doc = reader.Read(docName, ioBuf);
00090         if (!doc)
00091             return;
00092         DOMNode* qSet = GetChildNode(doc, "querySet", true);
00093         DOMNode* id = GetChildNode(qSet, "id", true);
00094         mId = GetElementValue(id);
00095         ILOG_DEBUG("id = " << mId);
00096 
00097         DOMNode* videos = GetChildNode(qSet, "videos", true);
00098         mVideosLink = GetAttributeValue(videos, "xlink:href");
00099         ILOG_DEBUG("videos = " << mVideosLink);
00100         mValid = true;
00101     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:53 2011 for ImpalaSrc by  doxygen 1.5.1