MeVisLab Toolbox Reference
mlTileRequest.h
Go to the documentation of this file.
1 /*************************************************************************************
2 **
3 ** Copyright 2009, MeVis Medical Solutions AG
4 **
5 ** The user may use this file in accordance with the license agreement provided with
6 ** the Software or, alternatively, in accordance with the terms contained in a
7 ** written agreement between the user and MeVis Medical Solutions AG.
8 **
9 ** For further information use the contact form at https://www.mevislab.de/contact
10 **
11 **************************************************************************************/
12 
13 #ifndef ML_TILE_REQUEST_H
14 #define ML_TILE_REQUEST_H
15 
17 
18 // ML-includes
19 #include "mlInitSystemML.h"
20 
21 #include "mlSubImage.h"
22 #include "mlPagedImage.h"
23 #include "mlPageIDIterator.h"
24 
25 #include <set>
26 
27 ML_START_NAMESPACE
28 
29 class TileRequest;
30 class PageRequest;
31 class PageRequestQueueInterface;
32 
34 typedef void TileRequestFinishedCB(void* data, TileRequest* request);
35 
36 //-------------------------------------------------------------------------------------------
48 //-------------------------------------------------------------------------------------------
49 class ML_UNIX_ONLY_EXPORT(MLEXPORT) TileRequest
50 {
51 
52 public:
54  static TileRequest* allocate();
55 
57  static void deallocate(TileRequest* request);
58 
60  static void clearFreeList();
61 
62 private:
63  TileRequest();
64 
66  void cleanup();
67 
69  TileRequest* _freeListNext;
70 
72  static TileRequest* _freeListHead;
74  static Mutex _freeListMutex;
75 
76 public:
77 
82  void init(PagedImage* inputImage, const SubImageBox& box, MLDataType dataType,
83  const ScaleShiftData& scaleShift, bool readOnlyInputTile = false, bool tryToBecomeMemoryImage = false);
84 
87  UseMemoryManager = 0, //<! This will allocate the memory using the MemoryManager.
88  UseMLAlloc = 1, //<! This will allocate the memory using MLAlloc.
89  NoAllocation = 2, //<! This can be used if no data should be allocated at all (e.g., for processAllPages).
90  ExternalBuffer = 3 //<! This can be used to provide the data by the user and to avoid freeing the data if something goes wrong.
91  };
92 
93  //------------------------------------------------------
96  //------------------------------------------------------
97 
102 
105 
109  void setNeededBy(PageRequest* request) {
110  _neededByPageRequest = request;
111  }
112 
116 
121 
123 
124  //------------------------------------------------------
127  //------------------------------------------------------
128 
133  void setAllocationPolicy(AllocationPolicy policy) { _allocationPolicy = policy; }
134 
136  AllocationPolicy getAllocationPolicy() const { return _allocationPolicy; }
137 
139  void allocateData();
140 
142  void forgetData() { _subImage.setData(nullptr); }
143 
145  void freeData() { if (_allocationPolicy!=ExternalBuffer) { _subImage.free(); } }
146 
148  const SubImage& getSubImage() const { return _subImage; }
149 
152  void setExternalDataBuffer(void* data) {
153  setAllocationPolicy(TileRequest::ExternalBuffer);
154  _subImage.setData(data);
155  }
156 
158  void setUseTileReadOnly(bool flag) { _readOnlyInputTile = flag; }
159 
161 
162  //------------------------------------------------------
165  //------------------------------------------------------
166 
168  bool hasFinished() const;
169 
173  _finishedCB = cb;
174  _finishedCBData = data;
175  }
176 
180  _internalFinishedCB = cb;
181  _internalFinishedCBData = data;
182  }
183 
185  double getProgress() const;
186 
188 
189  //------------------------------------------------------
192  //------------------------------------------------------
193 
195  bool hasError() const { return _error!=ML_RESULT_OK; }
196 
198  void setError(MLErrorCode error);
199 
201  MLErrorCode getError() const { return _error; }
202 
206 
211 
213  void collectPageRequestsWithErrors(std::set<PageRequest*>& result);
214 
216 
217  //------------------------------------------------------
220  //------------------------------------------------------
221 
224 
226  int getProcessingScope() const { return _processingScope; }
227 
229  void setProcessingScope(int scope) { _processingScope = scope; }
230 
232  const SubImageBox& getBox() const { return _subImage.getBox(); }
233 
235  bool intersectsPagedImage() const;
236 
239 
241 
242 protected:
244  friend class PageRequestCursor;
245 
253 
256  bool copyDataFromSubImg(SubImage& pageImage);
257 
260 
263 
266 
269 
272 
277 
280 
283 
286 
290 
293 
296 
299 
302 
307 
312 
313 public:
315  static void enableAllocationFailure(int count = 1);
317  static void disableAllocationFailure() { _forceAllocationFailure = false; }
318 
319 private:
320  static bool _forceAllocationFailure;
321  static int _forceAllocationFailureCount;
322  static int _forceAllocationFailureModulo;
323 
324 };
325 
326 ML_END_NAMESPACE
327 
328 #endif //of __mlTileRequest_H
329 
A class that allows to incrementally iterate over all IDs of pages have an intersection with a given ...
A cursor to create page and tile requests iteratively, allowing breaks and resumption at any time,...
Virtual interface for queuing PageRequests that are ready for processing.
A PageRequest represents the request for the calculation of a single page of a PagedImage.
Definition: mlPageRequest.h:32
The class PagedImage, representing a fragmented image that manages properties and data of an image lo...
Definition: mlPagedImage.h:66
This class manages/represents a rectangular 6D image region that is organized linearly in memory.
Definition: mlSubImage.h:75
A TileRequest either represents the input subimage that is needed by a PageRequest or if it is a root...
Definition: mlTileRequest.h:50
void createInputPageIds()
Creates the page IDs for all required input pages.
int getProcessingScope() const
Returns the assigned processing scope.
bool isBlockedByMemoryImage()
Checks whether the tile request is blocked by a pending memory image being calculated by another Tile...
void setProcessingScope(int scope)
Returns the assigned processing scope.
static void enableAllocationFailure(int count=1)
Enables failing on every count allocation.
void freeData()
Frees the allocated data using SubImage::free(), except if the AllocationPolicy is UserAllocation.
bool propagateCancellationDownIfRequestNotNeededAnymore()
Recursively walks up to all tree roots and checks whether they are canceled.
void forgetData()
Tells the tile to forget its data so that it is not freed in freeData().
int _processingScope
The processing scope.
void allocateData()
Allocates the data using the internal AllocationPolicy.
static TileRequest * allocate()
Tile requests are allocated via the allocate method, they can not be created with new.
double getProgress() const
Returns the progress of this tile (TODO: not very detailed yet, only the ratio of copied/total pages)...
TileRequestFinishedCB * _internalFinishedCB
Callback to signal that the TileRequest has finished.
bool _readOnlyInputTile
Flag that the TileRequest should try to not copy data, since it will not be written to.
PageIDIterator _inputPageIds
Since a tile can have many page requests, we use a PageIdIterator to generate the IDs on the fly.
bool copyDataFromSubImg(SubImage &pageImage)
Copies the data from the given image.
void sendTileRequestFinished(PageRequestQueueInterface &queue)
Tells the dependend page requests that the tile request has finished.
void setUseTileReadOnly(bool flag)
This allows to make read-only use of input pages or memory image if box/data type match and shift/sca...
MLint _inputPagesNeeded
Overall number of pages needed. This is getNumPages() of _inputPageIds at the beginning and will decr...
bool hasFinished() const
Returns whether the request has finished. If an error happened, this returns true as well.
bool _tileWillBecomeMemoryImage
Flag that the TileRequest should become the MemoryImage when it has finished.
PagedImage * _image
The image from which the data should be requested.
void setInternalTileRequestFinishedCB(TileRequestFinishedCB *cb, void *data)
Sets the internal tile request finished callback.
void emitFinishedCallback()
Calls the finished callbacks.
void propagateErrorUpwards(MLErrorCode error)
Propagates an error upwards through the PageRequest it depends on.
MLint _traversalCursorPosition
Current _inputPageIds position to indicate the next page request to create.
void setError(MLErrorCode error)
Sets the error that happened.
static void disableAllocationFailure()
Disables allocation failure (default!).
Mutex _inputPagesNeededMutex
TODO: replace above with atomic counter and remove the mutex.
AllocationPolicy getAllocationPolicy() const
Returns the allocation policy.
bool hasError() const
Returns whether the request has an error (and the data is thus unusable/invalid).
MLErrorCode _error
The current error state.
void updateSourceImageExtent()
Updates the source image extent according to the image.
void setTileRequestFinishedCB(TileRequestFinishedCB *cb, void *data)
Sets the tile request finished callback.
static void deallocate(TileRequest *request)
Tile requests are deallocated with the deallocate method, they can not be deleted directly.
void collectPageRequestsWithErrors(std::set< PageRequest * > &result)
Collects all page requests that have error()!=ML_RESULT_OK up to the roots of the tree.
bool prepareForCursorVisit()
This is called before a cursor steps down into the TileRequest and may return false,...
void setAllocationPolicy(AllocationPolicy policy)
Sets which allocation policy should be used.
void setNeededBy(PageRequest *request)
Stores the PageRequest that needs this TileRequest.
AllocationPolicy
Defines how the TileRequest will allocate its memory.
Definition: mlTileRequest.h:86
MLErrorCode getError() const
Returns the error that happened (or ML_RESULT_OK).
bool intersectsPagedImage() const
Returns whether the request has an intersection with the paged image.
const SubImageBox & getBox() const
Returns the box that this tile request covers.
PageRequest * _neededByPageRequest
The PageRequest that depends on this TileRequest (or NULL if it is a root TileRequest).
SubImage _subImage
The subimage that represents the TileRequest's box, data type, and data.
const SubImage & getSubImage() const
Returns the stored subimage including the data pointer.
MLErrorCode updateImageProperties()
Updates the image properties of the complete graph starting at this tile request via the host.
PageRequest * createPageRequest(MLint pageId, PageRequestQueueInterface &queue)
Creates a new page request and queues it if it has no dependencies.
void init(PagedImage *inputImage, const SubImageBox &box, MLDataType dataType, const ScaleShiftData &scaleShift, bool readOnlyInputTile=false, bool tryToBecomeMemoryImage=false)
Creates a TileRequest for inputImage with given box, dataType, and scaleShift.
TileRequestFinishedCB * _finishedCB
Callback to signal that the TileRequest has finished.
AllocationPolicy _allocationPolicy
Defines which allocation method to use.
void * _internalFinishedCBData
Callback data to signal that the TileRequest has finished.
ScaleShiftData _scaleShiftData
The additional scale/shift information.
void setExternalDataBuffer(void *data)
This allows to set the data buffer from an external buffer.
void pageRequestFinished(SubImage &pageImage, PageRequestQueueInterface &queue)
Called by all finished PageRequests that may be copied to output buffer.
void * _finishedCBData
Callback data to signal that the TileRequest has finished.
static void clearFreeList()
Clears the internal free list of deallocated TileRequests.
MLint32 MLDataType
MLDataType.
Definition: mlTypeDefs.h:596
MLint32 MLErrorCode
Type of an ML Error code.
Definition: mlTypeDefs.h:716
#define ML_RESULT_OK
No error. Everything seems to be okay.
Definition: mlTypeDefs.h:724
boost::mutex Mutex
Defines a non-recursive mutex.
Definition: mlMutex.h:39
MLint64 MLint
A signed ML integer type with at least 64 bits used for index calculations on very large images even ...
Definition: mlTypeDefs.h:490
void TileRequestFinishedCB(void *data, TileRequest *request)
Callback for a finished TileRequest.
Definition: mlTileRequest.h:34