Referência ao ficheiro src/vapiXML.h

General functions to handle xml files. Mais...

#include <libxml/xmlwriter.h>
#include <libxml/xmlreader.h>

Diagrama de dependências de inclusão para vapiXML.h:

Este grafo mostra quais são os ficheiros que incluem directamente ou indirectamente este ficheiro:

Ir para o código fonte deste ficheiro.

Funções

int vapiXMLNextElement (xmlTextReader *xmlInput)
 Goes for the next xml Element.
int vapiXMLNextElementNamed (xmlTextReader *xmlInput, char *nodeName)
 goes for the next xml Element, that the name "name".


Descrição detalhada

General functions to handle xml files.

Definido no ficheiro vapiXML.h.


Documentação das funções

int vapiXMLNextElement ( xmlTextReader *  xmlInput  ) 

Goes for the next xml Element.

Retorna:
the state for the action

Definido na linha 6 do ficheiro vapiXML.c.

Referenciado por vapiIOConfiguredListFromXML(), vapiMacroFromXML() e vapiMacroFromXMLSetName().

00007 {
00008         int ret = 0, status = 1;
00009 
00010         while (status == 1 && ret != 1)
00011         {
00012                 status = xmlTextReaderRead (xmlInput);
00013                 ret = xmlTextReaderNodeType (xmlInput);
00014 
00015         }
00016         return status;
00017 }

Here is the caller graph for this function:

int vapiXMLNextElementNamed ( xmlTextReader *  xmlInput,
char *  nodeName 
)

goes for the next xml Element, that the name "name".

Parâmetros:
nodeName The next element name to search for.
Retorna:
the state for the action

Definido na linha 20 do ficheiro vapiXML.c.

Referenciado por vapiOptionsXMLSetBooleans(), vapiOptionsXMLSetChars(), vapiOptionsXMLSetChoices(), vapiOptionsXMLSetFloats(), vapiOptionsXMLSetInts(), vapiOptionsXMLSetOptions() e vapiOptionsXMLSetOptionsOperation().

00021 {
00022 
00023         int status = 1, ret = 0, ends = 0;
00024         while (status == 1)
00025         {
00026 
00027                 status = xmlTextReaderRead (xmlInput);
00028 
00029                 ret = xmlTextReaderNodeType (xmlInput);
00030 
00031 
00032                 if (ret == 15)
00033                 {
00034                         ends++;
00035                         /*
00036                          * Terminou a Operação. Não há Mais Opções.
00037                          */
00038                         if (ends == 2)
00039                         {
00040                                 return 0;
00041                         }
00042                 }
00043 
00044                 if (ret == 1)
00045                 {
00046 
00047                         if (!strcmp
00048                             ((char *) xmlTextReaderLocalName (xmlInput),
00049                              nodeName))
00050                         {
00051 
00052                                 return 1;
00053                         }
00054 
00055 
00056                 }
00057 
00058         }
00059 
00060         return -1;
00061 }

Here is the caller graph for this function:


Gerado em Tue Jul 24 10:39:51 2007 para Vapi por  doxygen 1.5.1