libSBML Python API  5.18.0
SBMLReader.h File Reference

Detailed Description

Reads an SBML Document into memory.

Author
Ben Bornstein
Include dependency graph for SBMLReader.h:

Classes

class  SBMLReader
  File and text-string SBML reader. More...
 

Functions

SBMLDocument_t * readSBML (const char *filename)
 Reads an SBML document from the given file. More...
 
SBMLDocument_t * readSBMLFromFile (const char *filename)
 Reads an SBML document from the given file. More...
 
SBMLDocument_t * readSBMLFromString (const char *xml)
 Reads an SBML document from a text string. More...
 

Function Documentation

SBMLDocument_t* readSBML ( const char *  filename)

Reads an SBML document from the given file.

If the file named filename does not exist or its content is not valid SBML, one or more errors will be logged with the SBMLDocument object returned by this method. Callers can use the methods on SBMLDocument such as SBMLDocument.getNumErrors(), SBMLDocument::getNumErrors() and SBMLDocument.getError() to get the errors. The object returned by SBMLDocument.getError() is an SBMLError object, and it has methods to get the error code, category, and severity level of the problem, as well as a textual description of the problem. The possible severity levels range from informational messages to fatal errors; see the documentation for SBMLError for more information.

If the file filename could not be read, the file-reading error will appear first. The error code can provide a clue about what happened. For example, a file might be unreadable (either because it does not actually exist or because the user does not have the necessary access privileges to read it) or some sort of file operation error may have been reported by the underlying operating system. Callers can check for these situations using a program fragment such as the following:

1 reader = SBMLReader()
2 if reader == None:
3  # Handle the truly exceptional case of no object created here.
4 
5 doc = reader.readSBMLFromFile(filename)
6 if doc.getNumErrors() > 0:
7  if doc.getError(0).getErrorId() == XMLFileUnreadable:
8  # Handle case of unreadable file here.
9  elif doc.getError(0).getErrorId() == XMLFileOperationError:
10  # Handle case of other file error here.
11  else:
12  # Handle other error cases here.
If the given filename ends with the suffix ".gz" (for example, "myfile.xml.gz"), the file is assumed to be compressed in gzip format and will be automatically decompressed upon reading. Similarly, if the given filename ends with ".zip" or ".bz2", the file is assumed to be compressed in zip or bzip2 format (respectively). Files whose names lack these suffixes will be read uncompressed. Note that if the file is in zip format but the archive contains more than one file, only the first file in the archive will be read and the rest ignored.
To read a gzip/zip file, libSBML needs to be configured and linked with the zlib library at compile time. It also needs to be linked with the bzip2 library to read files in bzip2 format. (Both of these are the default configurations for libSBML.) Errors about unreadable files will be logged if a compressed filename is given and libSBML was not linked with the corresponding required library.
SBMLDocument_t* readSBMLFromFile ( const char *  filename)

Reads an SBML document from the given file.

If the file named filename does not exist or its content is not valid SBML, one or more errors will be logged with the SBMLDocument object returned by this method. Callers can use the methods on SBMLDocument such as SBMLDocument.getNumErrors(), SBMLDocument::getNumErrors() and SBMLDocument.getError() to get the errors. The object returned by SBMLDocument.getError() is an SBMLError object, and it has methods to get the error code, category, and severity level of the problem, as well as a textual description of the problem. The possible severity levels range from informational messages to fatal errors; see the documentation for SBMLError for more information.

If the file filename could not be read, the file-reading error will appear first. The error code can provide a clue about what happened. For example, a file might be unreadable (either because it does not actually exist or because the user does not have the necessary access privileges to read it) or some sort of file operation error may have been reported by the underlying operating system. Callers can check for these situations using a program fragment such as the following:

1 reader = SBMLReader()
2 if reader == None:
3  # Handle the truly exceptional case of no object created here.
4 
5 doc = reader.readSBMLFromFile(filename)
6 if doc.getNumErrors() > 0:
7  if doc.getError(0).getErrorId() == XMLFileUnreadable:
8  # Handle case of unreadable file here.
9  elif doc.getError(0).getErrorId() == XMLFileOperationError:
10  # Handle case of other file error here.
11  else:
12  # Handle other error cases here.
If the given filename ends with the suffix ".gz" (for example, "myfile.xml.gz"), the file is assumed to be compressed in gzip format and will be automatically decompressed upon reading. Similarly, if the given filename ends with ".zip" or ".bz2", the file is assumed to be compressed in zip or bzip2 format (respectively). Files whose names lack these suffixes will be read uncompressed. Note that if the file is in zip format but the archive contains more than one file, only the first file in the archive will be read and the rest ignored.
To read a gzip/zip file, libSBML needs to be configured and linked with the zlib library at compile time. It also needs to be linked with the bzip2 library to read files in bzip2 format. (Both of these are the default configurations for libSBML.) Errors about unreadable files will be logged if a compressed filename is given and libSBML was not linked with the corresponding required library.
Parameters
filenamethe name or full pathname of the file to be read.
Returns
a pointer to the SBMLDocument structure created from the SBML content in filename.
SBMLDocument_t* readSBMLFromString ( const char *  xml)

Reads an SBML document from a text string.

This method is flexible with respect to the presence of an XML declaration at the beginning of the string. In particular, if the string in xml does not begin with the XML declaration

<?xml version='1.0' encoding='UTF-8'?>

then this method will automatically prepend the declaration to xml.

This method will log a fatal error if the content given in the parameter xml is not in SBML format. See the method documentation for SBMLReader::readSBML() for an example of code for testing the returned error code.

Parameters
xmla string containing a full SBML model.
Returns
a pointer to the SBMLDocument structure created from the SBML content in xml.
Note
When using this method to read an SBMLDocument that uses the SBML Level 3 Hierarchical Model Composition package (comp) the document location cannot be set automatically. Thus, if the model contains references to ExternalModelDefinition objects, it will be necessary to manually set the document URI location (SBMLDocument::setLocationURI() ) in order to facilitate resolving these models.