libSBML C++ API
5.18.0
|
This class of objects is defined by libSBML only and has no direct equivalent in terms of SBML components. It is a class used in the implementation of extra functionality provided by libSBML.
LibSBML provides a number of converters that can perform transformations on SBML documents. The properties of SBML converters are communicated using objects of class ConversionProperties, and within such objects, individual options are encapsulated using ConversionOption objects. The ConversionProperties class provides numerous methods for setting and getting options.
ConversionProperties objects are also used to determine the target SBML namespace when an SBML converter's behavior depends on the intended Level+Version combination of SBML. In addition, it is conceivable that conversions may be affected by SBML Level 3 packages being used by an SBML document; consequently, the packages in use are also communicated by the values of the SBML namespaces set on a ConversionProperties object.
The use of all the converters follows a similar approach. First, one creates a ConversionProperties object and calls ConversionProperties::addOption() on this object with one argument: a text string that identifies the desired converter. (The text string is specific to each converter; consult the documentation for a given converter to find out how it should be enabled.)
Next, for some converters, the caller can optionally set some converter-specific properties using additional calls to ConversionProperties::addOption(). Many converters provide the ability to configure their behavior to some extent; this is realized through the use of properties that offer different options. The default property values for each converter can be interrogated using the method SBMLConverter::getDefaultProperties() on the converter class in question .
Finally, the caller should invoke the method SBMLDocument::convert() with the ConversionProperties object as an argument.
The following code fragment illustrates an example using SBMLReactionConverter, which is invoked using the option string "replaceReactions"
:
In the case of SBMLReactionConverter, there are no options to affect its behavior, so the next step is simply to invoke the converter on an SBMLDocument object. Continuing the example code:
Here is an example of using a converter that offers an option. The following code invokes SBMLStripPackageConverter to remove the SBML Level 3 Layout package from a model. It sets the name of the package to be removed by adding a value for the option named "package"
defined by that converter:
LibSBML provides a number of built-in converters; by convention, their names end in Converter. The following are the built-in converters provided by libSBML 5.18.0:
Public Member Functions | |
virtual void | addOption (const ConversionOption &option) |
Adds a copy of the given option to this properties object. More... | |
virtual void | addOption (const std::string &key, const std::string value="", ConversionOptionType_t type=CNV_TYPE_STRING, const std::string description="") |
Adds a new ConversionOption object with the given parameters. More... | |
virtual void | addOption (const std::string &key, const char *value, const std::string description="") |
Adds a new ConversionOption object with the given parameters. More... | |
virtual void | addOption (const std::string &key, bool value, const std::string description="") |
Adds a new ConversionOption object with the given parameters. More... | |
virtual void | addOption (const std::string &key, double value, const std::string description="") |
Adds a new ConversionOption object with the given parameters. More... | |
virtual void | addOption (const std::string &key, float value, const std::string description="") |
Adds a new ConversionOption object with the given parameters. More... | |
virtual void | addOption (const std::string &key, int value, const std::string description="") |
Adds a new ConversionOption object with the given parameters. More... | |
virtual ConversionProperties * | clone () const |
Creates and returns a deep copy of this ConversionProperties object. More... | |
ConversionProperties (SBMLNamespaces *targetNS=NULL) | |
Constructor that initializes the conversion properties with a specific SBML target namespace. More... | |
ConversionProperties (const ConversionProperties &orig) | |
Copy constructor. More... | |
virtual bool | getBoolValue (const std::string &key) const |
Returns the value of the given option as a Boolean. More... | |
virtual const std::string & | getDescription (const std::string &key) const |
Returns the description string for a given option in this properties object. More... | |
virtual double | getDoubleValue (const std::string &key) const |
Returns the value of the given option as a double . More... | |
virtual float | getFloatValue (const std::string &key) const |
Returns the value of the given option as a float . More... | |
virtual int | getIntValue (const std::string &key) const |
Returns the value of the given option as an integer. More... | |
virtual int | getNumOptions () const |
Returns the number of options in this Conversion Properties object. More... | |
virtual ConversionOption * | getOption (const std::string &key) const |
Returns the ConversionOption object for a given key. More... | |
virtual ConversionOption * | getOption (int index) const |
Returns the ConversionOption object for the given index . More... | |
virtual SBMLNamespaces * | getTargetNamespaces () const |
Returns the current target SBML namespace. More... | |
virtual ConversionOptionType_t | getType (const std::string &key) const |
Returns the type of a given option in this properties object. More... | |
virtual const std::string & | getValue (const std::string &key) const |
Returns the value of the given option as a string. More... | |
virtual bool | hasOption (const std::string &key) const |
Returns true if this properties object contains an option with the given key. More... | |
virtual bool | hasTargetNamespaces () const |
Returns true if the target SBML namespace has been set. More... | |
ConversionProperties & | operator= (const ConversionProperties &rhs) |
Assignment operator for conversion properties. More... | |
virtual ConversionOption * | removeOption (const std::string &key) |
Removes the option with the given key from this properties object. More... | |
virtual void | setBoolValue (const std::string &key, bool value) |
Sets the value of the given option to a Boolean. More... | |
virtual void | setDoubleValue (const std::string &key, double value) |
Sets the value of the given option to a double . More... | |
virtual void | setFloatValue (const std::string &key, float value) |
Sets the value of the given option to a float . More... | |
virtual void | setIntValue (const std::string &key, int value) |
Sets the value of the given option to an integer. More... | |
virtual void | setTargetNamespaces (SBMLNamespaces *targetNS) |
Sets the target namespace. More... | |
virtual void | setValue (const std::string &key, const std::string &value) |
Sets the value of the given option to a string. More... | |
virtual | ~ConversionProperties () |
Destructor. More... | |
ConversionProperties::ConversionProperties | ( | SBMLNamespaces * | targetNS = NULL | ) |
Constructor that initializes the conversion properties with a specific SBML target namespace.
targetNS | the target namespace to convert to. |
ConversionProperties::ConversionProperties | ( | const ConversionProperties & | orig | ) |
Copy constructor.
orig | the object to copy. |
|
virtual |
Destructor.
|
virtual |
Adds a copy of the given option to this properties object.
option | the option to add. |
|
virtual |
Adds a new ConversionOption object with the given parameters.
key | the key for the new option. |
value | (optional) the value of that option. |
type | (optional) the type of the option (see the documentation for ConversionOption for more information about the types). |
description | (optional) the description for the option. |
|
virtual |
Adds a new ConversionOption object with the given parameters.
key | the key for the new option. |
value | the string value of that option. |
description | (optional) the description for the option. |
|
virtual |
Adds a new ConversionOption object with the given parameters.
key | the key for the new option. |
value | the boolean value of that option. |
description | (optional) the description for the option. |
|
virtual |
Adds a new ConversionOption object with the given parameters.
key | the key for the new option. |
value | the double value of that option. |
description | (optional) the description for the option. |
|
virtual |
Adds a new ConversionOption object with the given parameters.
key | the key for the new option. |
value | the float value of that option. |
description | (optional) the description for the option. |
|
virtual |
Adds a new ConversionOption object with the given parameters.
key | the key for the new option. |
value | the integer value of that option. |
description | (optional) the description for the option. |
|
virtual |
Creates and returns a deep copy of this ConversionProperties object.
|
virtual |
Returns the value of the given option as a Boolean.
key | the key for the option. |
|
virtual |
Returns the description string for a given option in this properties object.
key | the key for the option. |
|
virtual |
Returns the value of the given option as a double
.
key | the key for the option. |
|
virtual |
Returns the value of the given option as a float
.
key | the key for the option. |
|
virtual |
Returns the value of the given option as an integer.
key | the key for the option. |
|
virtual |
Returns the number of options in this Conversion Properties object.
|
virtual |
Returns the ConversionOption object for a given key.
key | the key for the option. |
|
virtual |
Returns the ConversionOption object for the given index
.
index | the index for the option. |
index
.
|
virtual |
Returns the current target SBML namespace.
|
virtual |
Returns the type of a given option in this properties object.
key | the key for the option. |
|
virtual |
Returns the value of the given option as a string.
key | the key for the option. |
|
virtual |
Returns true
if this properties object contains an option with the given key.
key | the key of the option to find. |
true
if an option with the given key
exists in this properties object, false
otherwise.
|
virtual |
Returns true
if the target SBML namespace has been set.
true
if the target namespace has been set, false
otherwise. ConversionProperties & ConversionProperties::operator= | ( | const ConversionProperties & | rhs | ) |
Assignment operator for conversion properties.
rhs | the object whose values are used as the basis of the assignment. |
|
virtual |
Removes the option with the given key from this properties object.
key | the key for the new option to remove. |
|
virtual |
Sets the value of the given option to a Boolean.
key | the key for the option. |
value | the new Boolean value. |
|
virtual |
Sets the value of the given option to a double
.
key | the key for the option. |
value | the new double value. |
|
virtual |
Sets the value of the given option to a float
.
key | the key for the option. |
value | the new float value. |
|
virtual |
Sets the value of the given option to an integer.
key | the key for the option. |
value | the new integer value. |
|
virtual |
Sets the target namespace.
targetNS | the target namespace to use. |
|
virtual |
Sets the value of the given option to a string.
key | the key for the option. |
value | the new value. |