Chemical Data Processing Library Python API - Version 1.4.0
Public Member Functions | Properties | List of all members
CDPL.Pharm.FeatureContainerWriter Class Reference

Writer for pharmacophore data in any supported format. More...

+ Inheritance diagram for CDPL.Pharm.FeatureContainerWriter:

Public Member Functions

None __init__ (str file_name, OpenMode mode=Base.IOStream.OpenMode(60))
 Constructs a MultiFormatDataWriter that opens file_name and deduces the output format from its name. More...
 
None __init__ (str file_name, str fmt, OpenMode mode=Base.IOStream.OpenMode(60))
 Constructs a MultiFormatDataWriter that opens file_name and uses the output handler matching the Base.DataFormat fmt. More...
 
None __init__ (str file_name, Base.DataFormat fmt, OpenMode mode=Base.IOStream.OpenMode(12))
 Constructs a MultiFormatDataWriter that opens file_name and uses the output handler matching the Base.DataFormat fmt. More...
 
None __init__ (Base.IOStream ios, str fmt)
 Constructs a MultiFormatDataWriter that wraps ios and uses the output handler matching the Base.DataFormat fmt. More...
 
None __init__ (Base.IOStream ios, Base.DataFormat fmt)
 Constructs a MultiFormatDataWriter that wraps ios and uses the output handler matching the Base.DataFormat fmt. More...
 
Base.DataFormat getDataFormat ()
 Returns the data format actually used by the wrapped output handler. More...
 
- Public Member Functions inherited from CDPL.Pharm.FeatureContainerWriterBase
None __init__ ()
 Initializes the FeatureContainerWriterBase instance.
 
FeatureContainerWriterBase write (FeatureContainer cntnr)
 Writes the FeatureContainer object cntnr. More...
 
None close ()
 Writes format dependent data (if required) to mark the end of output. More...
 
bool __bool__ ()
 
bool __nonzero__ ()
 
- Public Member Functions inherited from CDPL.Base.DataIOBase
int registerIOCallback (VoidDataIOBaseFunctor func)
 Registers an I/O callback target function. More...
 
None unregisterIOCallback (int id)
 Unregisters the I/O callback function specified by id. More...
 
None invokeIOCallbacks (float progress)
 Invokes all registered I/O callback functions with the argument self. More...
 
None clearIOCallbacks ()
 Clears all registered I/O callback functions.
 
- Public Member Functions inherited from CDPL.Base.ControlParameterContainer
None setParameter (LookupKey key, Any value)
 
bool removeParameter (LookupKey key)
 Removes the entry for the control-parameter specified by key. More...
 
Any getParameter (LookupKey key, bool throw_=False, bool local=False)
 Returns the value of the control-parameter specified by key. More...
 
Any getParameterOrDefault (LookupKey key, Any def_value, bool local=False)
 
bool isParameterSet (LookupKey key, bool local=False)
 Tells whether or not a value has been assigned to the control-parameter specified by key. More...
 
None clearParameters ()
 Erases all container entries. More...
 
None addParameters (ControlParameterContainer cntnr)
 Adds the control-parameter value entries in the ControlParameterContainer instance cntnr. More...
 
None copyParameters (ControlParameterContainer cntnr)
 Replaces the current set of properties by a copy of the entries in cntnr. More...
 
int getNumParameters ()
 Returns the number of container entries. More...
 
int registerParameterChangedCallback (VoidLookupKeyAnyFunctor func)
 Registers a callback target function that gets invoked when the value of a control-parameter has changed. More...
 
None unregisterParameterChangedCallback (int id)
 Unregisters the callback specified by id. More...
 
int registerParameterRemovedCallback (VoidLookupKeyFunctor func)
 Registers a callback target function that gets invoked when a control-parameter entry has been removed. More...
 
None unregisterParameterRemovedCallback (int id)
 Unregisters the callback specified by id. More...
 
int registerParentChangedCallback (VoidFunctor func)
 Registers a callback target function that gets invoked when the parent container has been changed or was detached. More...
 
None unregisterParentChangedCallback (int id)
 Unregisters the callback specified by id. More...
 
ControlParameterContainer getParent ()
 Returns a reference to the parent control-parameter container. More...
 
None setParent (ControlParameterContainer cntnr)
 Sets or removes the parent control-parameter container used to resolve requests for missing entries. More...
 
list getParameterKeys ()
 
list getParameterValues ()
 
list getParameters ()
 Returns a reference to itself. More...
 
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
Any __getitem__ (LookupKey key)
 
None __setitem__ (LookupKey key, Any value)
 
bool __delitem__ (LookupKey key)
 
bool __contains__ (LookupKey key)
 Returns the result of the membership test operation key in self. More...
 
int __len__ ()
 

Properties

 dataFormat = property(getDataFormat)
 
- Properties inherited from CDPL.Base.ControlParameterContainer
 objectID = property(getObjectID)
 
 parent = property(getParent, setParent)
 
 parameterKeys = property(getParameterKeys)
 
 parameterValues = property(getParameterValues)
 
 parameters = property(getParameters)
 
 numParameters = property(getNumParameters)
 

Detailed Description

Writer for pharmacophore data in any supported format.

Constructor & Destructor Documentation

◆ __init__() [1/5]

None CDPL.Pharm.FeatureContainerWriter.__init__ ( str  file_name,
OpenMode   mode = Base.IOStream.OpenMode(60) 
)

Constructs a MultiFormatDataWriter that opens file_name and deduces the output format from its name.

Parameters
file_nameThe output-file name.
modeThe open mode of the underlying file stream.
Exceptions
Base.IOErrorif no matching output handler was found.

◆ __init__() [2/5]

None CDPL.Pharm.FeatureContainerWriter.__init__ ( str  file_name,
str  fmt,
OpenMode   mode = Base.IOStream.OpenMode(60) 
)

Constructs a MultiFormatDataWriter that opens file_name and uses the output handler matching the Base.DataFormat fmt.

Parameters
file_nameThe output-file name.
fmtThe output format identifier.
modeThe open mode of the underlying file stream.
Exceptions
Base.IOErrorif no matching output handler was found.

◆ __init__() [3/5]

None CDPL.Pharm.FeatureContainerWriter.__init__ ( str  file_name,
Base.DataFormat  fmt,
OpenMode   mode = Base.IOStream.OpenMode(12) 
)

Constructs a MultiFormatDataWriter that opens file_name and uses the output handler matching the Base.DataFormat fmt.

Parameters
file_nameThe output-file name.
fmtThe output format identifier.
modeThe open mode of the underlying file stream.
Exceptions
Base.IOErrorif no matching output handler was found.

◆ __init__() [4/5]

None CDPL.Pharm.FeatureContainerWriter.__init__ ( Base.IOStream  ios,
str  fmt 
)

Constructs a MultiFormatDataWriter that wraps ios and uses the output handler matching the Base.DataFormat fmt.

Parameters
iosThe output stream to wrap.
fmtThe output format identifier.
Exceptions
Base.IOErrorif no matching output handler was found.

◆ __init__() [5/5]

None CDPL.Pharm.FeatureContainerWriter.__init__ ( Base.IOStream  ios,
Base.DataFormat  fmt 
)

Constructs a MultiFormatDataWriter that wraps ios and uses the output handler matching the Base.DataFormat fmt.

Parameters
iosThe output stream to wrap.
fmtThe output format identifier.
Exceptions
Base.IOErrorif no matching output handler was found.

Member Function Documentation

◆ getDataFormat()

Base.DataFormat CDPL.Pharm.FeatureContainerWriter.getDataFormat ( )

Returns the data format actually used by the wrapped output handler.

Returns
A reference to the resolved Base.DataFormat.