ML Reference
ml::Host Class Reference

The Host is the central image processing class in the ML. More...

#include <mlHost.h>

List of all members.

Public Member Functions

void setProgressCB (void *userData, MLHostProgressCB *callback)
 Sets callback for progress/busy cursor updates.
MLHostProgressCBgetProgressCB () const
 Returns current callback for progress/busy cursor updates.
void * getProgressCBUserData () const
 Returns user data of current callback for progress/busy cursor updates.
void updateProgress (const char *info1, const char *info2)
 Calls the busy cursor/progress callback if it is set.
void setBreakCheckCB (void *userData, MLHostBreakCheckCB *callback)
 Sets callback for break checking.
MLHostBreakCheckCBgetBreakCheckCB () const
 Returns current callback for break checking.
void * getBreakCheckCBUserData () const
 Returns user data of current callback for break checking.
bool shouldTerminate () const
 Checks if current calculation should be terminated.
FieldgetPressedNotifyField ()
 Checks if a notify button was pressed (outside of normal notification) It returns the notify field or NULL if nothing was pressed.
void setMaxNumThreads (MLint32 numThreads)
 Sets maximum number of permitted worker threads to numThreads.
MLint32 getMaxNumThreads () const
 Returns maximum number of permitted worker threads.
void setRestrictMaxNumThreads (MLint32 numThreads)
 Restricts the maximum number of permitted worker threads to be lower or equal to numThreads.
MLint32 getRestrictMaxNumThreads () const
 Get the restriction for setMaxNumThreads().
MLuint32 isProcessingActive () const
 Non-zero return values mean that (image) processing is currently active.
ClassicHostgetClassicHostDebug ()
 Get access to classic ML host (for debugging purposes only!)
void setUseClassicHost (bool flag)
 Enable/disable usage of classic ML host.
bool getUseClassicHost () const
 Returns if classic ML host is used.
PageRequestProcessorgetPageRequestProcessor ()
 Get the currently responsible page request processor.
ProcessingTimeLinegetProcessingTimeLine ()
 Get access to the processing time line.
void enableTimeLineProfiling (bool flag)
 Enable/disable time line profiling.
Computation of image data in different memory allocation variations
MLErrorCode getTile (PagedImage &outputImage, SubImageBox location, MLDataType dataType, void **data, const ScaleShiftData &scaleShiftData=ScaleShiftData()) ML_RETURN_VALUE_SHOULD_BE_USED
 Requests the image region location from the image outputImage.
MLErrorCode getTile (PagedImage &outputImage, SubImage &subImage, const ScaleShiftData &scaleShiftData=ScaleShiftData()) ML_RETURN_VALUE_SHOULD_BE_USED
 Requests the image region subImage.getBox() from output image outputImage.
void freeTile (void *data)
 Frees (image) memory which has been allocated with any getTile() function of the Host class.
Sequential image processing.
MLErrorCode processAllPages (Module &module, MLint outputIndex, SubImageBox region=SubImageBox()) ML_RETURN_VALUE_SHOULD_BE_USED
 See Module::processAllPages() for details on this method.
MLErrorCode processAllPages (Module &module, ProcessAllPagesHandler &handler, SubImageBox region=SubImageBox()) ML_RETURN_VALUE_SHOULD_BE_USED
 Processes input images with a ProcessAllPagesHandler on a temporary output image (which allocates no data) For details, see Module::processAllPages()
MLErrorCode processMissingPages (Module &module, MLint outputIndex, SubImageBox region=SubImageBox()) ML_RETURN_VALUE_SHOULD_BE_USED
 See Module::processMissingPages() for details on this method.
Update image properties at module output.
MLErrorCode updateImageProperties (Module &module, MLint outputIndex) ML_RETURN_VALUE_SHOULD_BE_USED
 /deprecated Updates the module graph under module and including the output image at outputIndex of module.
MLErrorCode updateImageProperties (PagedImage &outputImage) ML_RETURN_VALUE_SHOULD_BE_USED
 Updates the module graph under outputImage->getModule() and including outputImage.

Static Public Member Functions

static HostgetDefaultHost ()
 Return a reference to the always existing default Host.
static void destroyDefaultHost ()
 Destroys and cleans up allocated memory of default Host.
static MLErrorCode pushDefaultHost ()
 Creates a new Host instance with initialization state, sets it as default host and pushes the previous default Host on a stack.
static MLErrorCode popDefaultHost ()
 Destroys the current default Host and uses the previous one from stack as default Host.
static unsigned int getMemoryManagerId ()
 Returns the memory manager id that is used for allocation of memory by the ML.
static SubImageBox calculateInputSubImageBoxDebug (Module &module, int inIndex, const SubImageBox &outputSubImageBox, int outputIndex)
 This is a method that allows access to the (otherwise protected) calculateInputSubImageBox of a module, which should only be used for diagnosis purposes.

Protected Member Functions

void _setProcessingActive ()
 Enables the flag that indicates active image processing.
void _unsetProcessingActive ()
 Disables the flag that indicates active image processing.

Friends

class PageRequestProcessor
class SingleThreadedPageRequestProcessor
class MultiThreadedPageRequestProcessor
class ClassicHost

Initialization

static void registerWithMemoryManager ()
 Registers the Host as library using the memory manager and initializes the memory manager id.
 Host ()
 Constructor.
virtual ~Host ()
 Destructor.

Deprecated methods.

static SubImageBox calcInSubImageBoxDebug (Module &module, int inIndex, const SubImageBox &outSubImgBox, int outIndex)
MLErrorCode getTile (Module &op, MLint outIndex, SubImageBox loc, MLDataType dataType, void **data, const ScaleShiftData &scaleShiftData=ScaleShiftData()) ML_RETURN_VALUE_SHOULD_BE_USED
MLErrorCode getTile (Module &op, MLint outIndex, SubImage &subImg, const ScaleShiftData &scaleShiftData=ScaleShiftData()) ML_RETURN_VALUE_SHOULD_BE_USED
MLErrorCode updateImageProps (Module &op, MLint outIndex) ML_RETURN_VALUE_SHOULD_BE_USED

Detailed Description

The Host is the central image processing class in the ML.

It contains the entire management of pages, their transport between modules, their (temporary) storage in the Cache, the parallel processing of pages (multithreading) and the (de)composition of images and image fragments from/to pages or subimages.

The host operates on a network of modules derived from the class Module which must be a organized in a directed and non cyclic graph.

Typically modules are only working on demand - all of their image processing behavior is completely controlled by the Host - it is responsible to solve an image processing request by making use of the module interface available by the Module class interface. The image processing interface of a module it basically defined by the virtual calculate* method defined in the Module class interface.

Note: The Host typically works in the "background": Direct calls to Host functionality are usually forbidden. All important stuff is wrapped as static functions in the Module interface. Including the mlHost.h or using its functions is typically an error and should be avoided since it limits the possibility of Host revisions without changing the module database.

Properties of image processing:

  • For the memory optimized image processing of images or image fragments each module supports the so called page-based image processing, i.e., each image is decomposed into pages (up to 6d-retangular, non overlapping subimages). These pages are processed and propagated subsequently through the modules and at the end they are composed to the result (sub)image. The extents of those pages is an image property which can be controlled by any module and which is also supported by many (unfortunately not all) file formats (e.g., Tiff). So also page based loading and saving of images is available by certain modules. Using pages with extents of the entire image should be avoided because it degrades page based image processing to standard image processing. This however sometimes can be difficult; please read ML literature for specialized base classes which support global image processing without leaving the page based approach. (E.g., see VirtualVolume, Module::processAllPages, slice based image processing, mlKernel(Base)Module, etc.)
  • For the time optimized image processing all calculated result pages of each module are stored within the Cache (a Host instance always has a Cache member) as long as they do not need more than Cache::setMaxCacheSizeKB() which is set by default or by the environment variable ML_CACHE_SIZE_IN_KB. So already calculated pages can be recycled without recalculation. This can drastically speed up applications using the ML. If the cache reaches its limit then pages are cleaned up dependent on their priority which is assigned to them when they are calculated. So expensive pages (in the context of calculation time) are maintained longer than pages which can be recalculated fast.

Exception handling is controlled by mlUtils. If MLIsExceptionHandlingEnabled==0 (False), exceptions typically cause program termination. This is especially useful for debugging purposes. So Module::Module (mlAPI) Module::~Module (mlAPI) Module::calculateOutputSubImage (mlHost) Module::calculateInputSubImageBox (mlHost) Module::calculateOutputImageProperties (mlHost) Module::handleNotification (mlHost) are not checked with exception catching, i.e., the ML crashes on errors. Otherwise exceptions are caught and redirected to the ErrorOutput class.

The default is off in debug mode so that all bugs lead to a crash which needs to be debugged. In release mode, this flag will always be set to true so that all exceptions are passed to the ML error output class to handled the errors.

Definition at line 128 of file mlHost.h.


Constructor & Destructor Documentation

ml::Host::Host ( )

Constructor.

In the current ML version there should be only one Host instance which is automatically created as a singleton accessible by Host::getDefaultHost().

virtual ml::Host::~Host ( ) [virtual]

Destructor.


Member Function Documentation

void ml::Host::_setProcessingActive ( ) [protected]

Enables the flag that indicates active image processing.

Note that this flag is counted; i.e., many calls require as many _unsetProcessActive() calls.

void ml::Host::_unsetProcessingActive ( ) [protected]

Disables the flag that indicates active image processing.

Note that this flag is counted; i.e., each set call requires an unset call. A really disabled flag, however, remains disabled.

static SubImageBox ml::Host::calcInSubImageBoxDebug ( Module module,
int  inIndex,
const SubImageBox outSubImgBox,
int  outIndex 
) [inline, static]
Deprecated:
Use calculateInputSubImageBoxDebug() instead.

Definition at line 397 of file mlHost.h.

static SubImageBox ml::Host::calculateInputSubImageBoxDebug ( Module module,
int  inIndex,
const SubImageBox outputSubImageBox,
int  outputIndex 
) [static]

This is a method that allows access to the (otherwise protected) calculateInputSubImageBox of a module, which should only be used for diagnosis purposes.

static void ml::Host::destroyDefaultHost ( ) [static]

Destroys and cleans up allocated memory of default Host.

void ml::Host::enableTimeLineProfiling ( bool  flag)

Enable/disable time line profiling.

void ml::Host::freeTile ( void *  data)

Frees (image) memory which has been allocated with any getTile() function of the Host class.

It is explicitly permitted to pass NULL pointer which then will be ignored.

MLHostBreakCheckCB* ml::Host::getBreakCheckCB ( ) const

Returns current callback for break checking.

void* ml::Host::getBreakCheckCBUserData ( ) const

Returns user data of current callback for break checking.

ClassicHost* ml::Host::getClassicHostDebug ( ) [inline]

Get access to classic ML host (for debugging purposes only!)

Definition at line 353 of file mlHost.h.

static Host& ml::Host::getDefaultHost ( ) [static]

Return a reference to the always existing default Host.

MLint32 ml::Host::getMaxNumThreads ( ) const

Returns maximum number of permitted worker threads.

static unsigned int ml::Host::getMemoryManagerId ( ) [inline, static]

Returns the memory manager id that is used for allocation of memory by the ML.

Definition at line 346 of file mlHost.h.

PageRequestProcessor* ml::Host::getPageRequestProcessor ( )

Get the currently responsible page request processor.

Field* ml::Host::getPressedNotifyField ( )

Checks if a notify button was pressed (outside of normal notification) It returns the notify field or NULL if nothing was pressed.

Note that more than one field may have been notified; so use a loop until NULL is returned to be sure that all NotifyFields have been checked.

ProcessingTimeLine& ml::Host::getProcessingTimeLine ( )

Get access to the processing time line.

MLHostProgressCB* ml::Host::getProgressCB ( ) const

Returns current callback for progress/busy cursor updates.

void* ml::Host::getProgressCBUserData ( ) const

Returns user data of current callback for progress/busy cursor updates.

MLint32 ml::Host::getRestrictMaxNumThreads ( ) const [inline]

Get the restriction for setMaxNumThreads().

Definition at line 229 of file mlHost.h.

MLErrorCode ml::Host::getTile ( Module op,
MLint  outIndex,
SubImageBox  loc,
MLDataType  dataType,
void **  data,
const ScaleShiftData scaleShiftData = ScaleShiftData() 
)
Deprecated:
Use getTile() with PagedImage instead.
MLErrorCode ml::Host::getTile ( PagedImage &  outputImage,
SubImageBox  location,
MLDataType  dataType,
void **  data,
const ScaleShiftData scaleShiftData = ScaleShiftData() 
)

Requests the image region location from the image outputImage.

If *data is a non NULL pointer, it must be large enough to hold the entire requested image data. If *data is NULL, the getTile function will allocate enough memory for the image data. The image data will be stored in that memory as data type dataType. The data will be scaled linearly dependent on the settings of the scaleShiftData (see ScaleShiftData). The return value data then pointer to the allocated memory. IMPORTANT: Memory allocated with any Host::getTile function must be freed with the Host::freeTile function or with the corresponding mapped freeTile function of the class Module.

MLErrorCode ml::Host::getTile ( PagedImage &  outputImage,
SubImage subImage,
const ScaleShiftData scaleShiftData = ScaleShiftData() 
)

Requests the image region subImage.getBox() from output image outputImage.

If subImage.getData() is a non NULL pointer, it must be large enough to hold the entire requested image data. If subImage.getData() is NULL, the getTile function will allocate enough memory for the image data and update the pointer in subImage. The image data will be stored in that memory as data type subImage.getDataType. The data will be scaled linearly dependent on the settings of the scaleShiftData (see ScaleShiftData). The value subImage.getData() then will point to the (allocated) image data. IMPORTANT: Memory allocated with any Host::getTile function must be freed with the Host::freeTile function or with the corresponding mapped freeTile function of the class Module. This subImg will only be a wrapper for that memory chunk but it will not deallocate it if subImg is deleted or changed.

MLErrorCode ml::Host::getTile ( Module op,
MLint  outIndex,
SubImage subImg,
const ScaleShiftData scaleShiftData = ScaleShiftData() 
)
Deprecated:
Use getTile() with PagedImage instead.
bool ml::Host::getUseClassicHost ( ) const [inline]

Returns if classic ML host is used.

Definition at line 359 of file mlHost.h.

MLuint32 ml::Host::isProcessingActive ( ) const

Non-zero return values mean that (image) processing is currently active.

static MLErrorCode ml::Host::popDefaultHost ( ) [static]

Destroys the current default Host and uses the previous one from stack as default Host.

On success, ML_RESULT_OK is returned, otherwise a code describing the problem. Trying to pop from an empty stack will leave the current default Host unchanged and returns the ML_TOO_MANY_POPS_OR_REMOVES code.

MLErrorCode ml::Host::processAllPages ( Module module,
MLint  outputIndex,
SubImageBox  region = SubImageBox() 
)

See Module::processAllPages() for details on this method.

MLErrorCode ml::Host::processAllPages ( Module module,
ProcessAllPagesHandler handler,
SubImageBox  region = SubImageBox() 
)

Processes input images with a ProcessAllPagesHandler on a temporary output image (which allocates no data) For details, see Module::processAllPages()

MLErrorCode ml::Host::processMissingPages ( Module module,
MLint  outputIndex,
SubImageBox  region = SubImageBox() 
)

See Module::processMissingPages() for details on this method.

static MLErrorCode ml::Host::pushDefaultHost ( ) [static]

Creates a new Host instance with initialization state, sets it as default host and pushes the previous default Host on a stack.

static void ml::Host::registerWithMemoryManager ( ) [static]

Registers the Host as library using the memory manager and initializes the memory manager id.

void ml::Host::setBreakCheckCB ( void *  userData,
MLHostBreakCheckCB callback 
)

Sets callback for break checking.

void ml::Host::setMaxNumThreads ( MLint32  numThreads)

Sets maximum number of permitted worker threads to numThreads.

A value of 0 or 1 turns multi-threading off. If setMaxNumThreads() is restricted via setRestrictMaxNumThreads(), the given value is silently clamped to getRestrictMaxNumThreads().

void ml::Host::setProgressCB ( void *  userData,
MLHostProgressCB callback 
)

Sets callback for progress/busy cursor updates.

void ml::Host::setRestrictMaxNumThreads ( MLint32  numThreads)

Restricts the maximum number of permitted worker threads to be lower or equal to numThreads.

Once this has been set, the number of threads can not be set to a higher value than numThreads via the setMaxNumThreads() API. This can be used by an application to enforce that e.g. only one thread is used. Default is -1, which means that setMaxNumThreads() has no restriction.

void ml::Host::setUseClassicHost ( bool  flag)

Enable/disable usage of classic ML host.

bool ml::Host::shouldTerminate ( ) const

Checks if current calculation should be terminated.

Calls the callback set by setBreakCheckCB if there is one.

MLErrorCode ml::Host::updateImageProperties ( Module module,
MLint  outputIndex 
)

/deprecated Updates the module graph under module and including the output image at outputIndex of module.

If updating failed, ML_NO_IMAGE_PROPS is returned, on success ML_RESULT_OK is returned. On other failures the corresponding error messages are returned. Better use updateImageProperties with PagedImage.

MLErrorCode ml::Host::updateImageProperties ( PagedImage &  outputImage)

Updates the module graph under outputImage->getModule() and including outputImage.

If updating failed, ML_NO_IMAGE_PROPS is returned, on success ML_RESULT_OK is returned. On other failures the corresponding error messages are returned.

MLErrorCode ml::Host::updateImageProps ( Module op,
MLint  outIndex 
) [inline]
Deprecated:
Use updateImageProperties() instead.

Definition at line 393 of file mlHost.h.

void ml::Host::updateProgress ( const char *  info1,
const char *  info2 
)

Calls the busy cursor/progress callback if it is set.

Applications which have registered can update their status busy cursor or progress indicators in the callback. This method can especially be used by ML modules in regular intervals to give response during complex computations within notification handling.


Friends And Related Function Documentation

friend class ClassicHost [friend]

Definition at line 136 of file mlHost.h.

friend class MultiThreadedPageRequestProcessor [friend]

Definition at line 135 of file mlHost.h.

friend class PageRequestProcessor [friend]

Definition at line 133 of file mlHost.h.

friend class SingleThreadedPageRequestProcessor [friend]

Definition at line 134 of file mlHost.h.


The documentation for this class was generated from the following file: