Scippy

SCIP

Solving Constraint Integer Programs

xml.h File Reference

Detailed Description

declarations for XML parsing

Author
Thorsten Koch
Marc Pfetsch

Definition in file xml.h.

Go to the source code of this file.

Typedefs

typedef struct XML_ATTR_struct XML_ATTR
 
typedef struct XML_NODE_struct XML_NODE
 

Functions

XML_NODExmlProcess (const char *filename)
 
XML_NODExmlNewNode (const char *name, int lineno)
 
XML_ATTRxmlNewAttr (const char *name, const char *value)
 
void xmlAddAttr (XML_NODE *n, XML_ATTR *a)
 
void xmlAppendChild (XML_NODE *parent, XML_NODE *child)
 
void xmlFreeNode (XML_NODE *node)
 
void xmlShowNode (const XML_NODE *root)
 
const char * xmlGetAttrval (const XML_NODE *node, const char *name)
 
const XML_NODExmlFirstNode (const XML_NODE *node, const char *name)
 
const XML_NODExmlNextNode (const XML_NODE *node, const char *name)
 
const XML_NODExmlFindNode (const XML_NODE *node, const char *name)
 
const XML_NODExmlFindNodeMaxdepth (const XML_NODE *node, const char *name, int depth, int maxdepth)
 
const XML_NODExmlNextSibl (const XML_NODE *node)
 
const XML_NODExmlPrevSibl (const XML_NODE *node)
 
const XML_NODExmlFirstChild (const XML_NODE *node)
 
const XML_NODExmlLastChild (const XML_NODE *node)
 
const char * xmlGetName (const XML_NODE *node)
 
int xmlGetLine (const XML_NODE *node)
 
const char * xmlGetData (const XML_NODE *node)
 
const char * xmlFindPcdata (const XML_NODE *node, const char *name)
 

Typedef Documentation

◆ XML_ATTR

typedef struct XML_ATTR_struct XML_ATTR

Definition at line 32 of file xml.h.

◆ XML_NODE

typedef struct XML_NODE_struct XML_NODE

Definition at line 41 of file xml.h.

Function Documentation

◆ xmlProcess()

◆ xmlNewNode()

XML_NODE* xmlNewNode ( const char *  name,
int  lineno 
)

create new node

Definition at line 1167 of file xmlparse.c.

References BMSallocMemory, BMSclearMemory, BMSduplicateMemoryArray, and NULL.

Referenced by handleDecl(), handleStarttag(), procPcdata(), and xmlProcess().

◆ xmlNewAttr()

XML_ATTR* xmlNewAttr ( const char *  name,
const char *  value 
)

create new attribute

Definition at line 1186 of file xmlparse.c.

References a, BMSallocMemory, BMSclearMemory, BMSduplicateMemoryArray, and NULL.

Referenced by procInTag(), and xmlProcess().

◆ xmlAddAttr()

void xmlAddAttr ( XML_NODE n,
XML_ATTR a 
)

add attribute

Definition at line 1206 of file xmlparse.c.

References a, and NULL.

Referenced by procInTag(), and xmlProcess().

◆ xmlAppendChild()

void xmlAppendChild ( XML_NODE parent,
XML_NODE child 
)

append child node

Definition at line 1219 of file xmlparse.c.

References NULL.

Referenced by handleDecl(), handleStarttag(), and procPcdata().

◆ xmlFreeNode()

void xmlFreeNode ( XML_NODE node)

free node

Definition at line 1266 of file xmlparse.c.

References BMSfreeMemory, BMSfreeMemoryArray, NULL, and xmlFreeAttr().

Referenced by readXmlSolFile(), SCIP_DECL_READERREAD(), and xmlProcess().

◆ xmlShowNode()

void xmlShowNode ( const XML_NODE root)

output node

Definition at line 1300 of file xmlparse.c.

References a, infoMessage, and NULL.

Referenced by SCIP_DECL_READERREAD().

◆ xmlGetAttrval()

const char* xmlGetAttrval ( const XML_NODE node,
const char *  name 
)

◆ xmlFirstNode()

const XML_NODE* xmlFirstNode ( const XML_NODE node,
const char *  name 
)

return first node

Definition at line 1353 of file xmlparse.c.

References NULL.

Referenced by xmlNextNode().

◆ xmlNextNode()

const XML_NODE* xmlNextNode ( const XML_NODE node,
const char *  name 
)

return next node

Definition at line 1373 of file xmlparse.c.

References NULL, and xmlFirstNode().

◆ xmlFindNode()

const XML_NODE* xmlFindNode ( const XML_NODE node,
const char *  name 
)

find node

Definition at line 1385 of file xmlparse.c.

References parse_stack_struct::node, NULL, and r.

Referenced by xmlFindPcdata().

◆ xmlFindNodeMaxdepth()

const XML_NODE* xmlFindNodeMaxdepth ( const XML_NODE node,
const char *  name,
int  depth,
int  maxdepth 
)

find node with bound on the depth

Parameters
nodecurrent node - use start node to begin
namename of tag to search for
depthcurrent depth - start with 0 for root
maxdepthmaximal depth

Definition at line 1410 of file xmlparse.c.

References parse_stack_struct::node, NULL, and r.

Referenced by readConstraints(), readLinearCoefs(), readNConstraints(), readNonlinearExprs(), readObjective(), readQuadraticCoefs(), readSOScons(), readVariables(), readXmlSolFile(), and SCIP_DECL_READERREAD().

◆ xmlNextSibl()

const XML_NODE* xmlNextSibl ( const XML_NODE node)

◆ xmlPrevSibl()

const XML_NODE* xmlPrevSibl ( const XML_NODE node)

return previous sibling

Definition at line 1450 of file xmlparse.c.

References NULL.

◆ xmlFirstChild()

const XML_NODE* xmlFirstChild ( const XML_NODE node)

◆ xmlLastChild()

const XML_NODE* xmlLastChild ( const XML_NODE node)

return last child

Definition at line 1470 of file xmlparse.c.

References NULL.

◆ xmlGetName()

const char* xmlGetName ( const XML_NODE node)

return name of node

Definition at line 1480 of file xmlparse.c.

References NULL.

Referenced by readExpression(), readLinearCoefs(), readNonlinearExprs(), readQuadraticCoefs(), and readSOScons().

◆ xmlGetLine()

int xmlGetLine ( const XML_NODE node)

get line number

Definition at line 1490 of file xmlparse.c.

References NULL.

◆ xmlGetData()

const char* xmlGetData ( const XML_NODE node)

get data

Definition at line 1500 of file xmlparse.c.

References NULL.

Referenced by readLinearCoefs(), readObjective(), and SCIP_DECL_READERREAD().

◆ xmlFindPcdata()

const char* xmlFindPcdata ( const XML_NODE node,
const char *  name 
)

find PCDATA

Definition at line 1510 of file xmlparse.c.

References NULL, and xmlFindNode().