[dali_1.9.33] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / svg / svg-rasterize-thread.h
index e01020e..d7eb16b 100644 (file)
 #include <dali/public-api/common/vector-wrapper.h>
 #include <dali/public-api/object/ref-object.h>
 #include <dali/public-api/rendering/texture-set.h>
-#include <dali-toolkit/internal/visuals/visual-url.h>
+#include <dali/devel-api/adaptor-framework/vector-image-renderer.h>
+#include <dali/integration-api/adaptor-framework/log-factory-interface.h>
+#include <memory>
 
-struct NSVGimage;
-struct NSVGrasterizer;
+// INTERNAL INCLUDES
+#include <dali-toolkit/internal/visuals/visual-url.h>
 
 namespace Dali
 {
@@ -60,26 +62,23 @@ class RasterizingTask : public RefObject
 public:
   /**
    * Constructor
-   *
    * @param[in] svgRenderer The renderer which the rasterized image to be applied.
-   * @param[in] parsedSvg The parsed svg for rasterizing.
-   *            Note, after the task is added to the worker thread, the worker thread takes over the ownership.
-   *            When the image is to be deleted, delete it in the worker thread by calling SvgRasterizeThread::DeleteImage( parsedSvg ).
    * @param[in] url The URL to svg resource to use.
    * @param[in] width The rasterization width.
    * @param[in] height The rasterization height.
+   * @param[in] loaded The svg resource is loaded or not.
    */
-  RasterizingTask( SvgVisual* svgRenderer, NSVGimage* parsedSvg, const VisualUrl& url, float dpi, unsigned int width, unsigned int height );
+  RasterizingTask( SvgVisual* svgRenderer, VectorImageRenderer vectorRenderer, const VisualUrl& url, float dpi, unsigned int width, unsigned int height, bool loaded );
 
   /**
    * Destructor.
    */
-  ~RasterizingTask();
+  ~RasterizingTask() override;
 
   /**
    * Do the rasterization with the mRasterizer.
    */
-  void Rasterize( );
+  void Rasterize();
 
   /**
    * Get the svg visual
@@ -93,10 +92,15 @@ public:
   PixelData GetPixelData() const;
 
   /**
-   * Get the parsed data.
-   * @return parsed image data.
+   * Get the VectorRenderer.
+   * @return VectorRenderer.
    */
-  NSVGimage* GetParsedImage() const;
+  VectorImageRenderer GetVectorRenderer() const;
+  /**
+   * Whether the resource is loaded.
+   * @return True if the resource is loaded.
+   */
+  bool IsLoaded() const;
 
   /**
    * Load svg file
@@ -112,13 +116,13 @@ private:
 
 private:
   SvgVisualPtr    mSvgVisual;
-  NSVGimage*      mParsedSvg;
+  VectorImageRenderer mVectorRenderer;
   VisualUrl       mUrl;
   PixelData       mPixelData;
   float           mDpi;
   unsigned int    mWidth;
   unsigned int    mHeight;
-  NSVGrasterizer* mRasterizer;
+  bool            mLoaded;
 };
 
 /**
@@ -166,11 +170,11 @@ public:
   /**
    * Delete the parsed SVG image, called by main thread.
    *
-   * The parsed svg should be delelted in worker thread, as the main thread does not know whether a rasterization of this svg is ongoing.
+   * The parsed svg should be deleted in worker thread, as the main thread does not know whether a rasterization of this svg is ongoing.
    *
-   * @param[in] parsedImage The image to be deleted
+   * @param[in] VectorImage The image to be deleted
    */
-  void DeleteImage( NSVGimage* parsedSvg );
+  void DeleteImage( VectorImageRenderer vectorImage );
 
 private:
 
@@ -193,7 +197,7 @@ protected:
   /**
    * Destructor.
    */
-  virtual ~SvgRasterizeThread();
+  ~SvgRasterizeThread() override;
 
 
   /**
@@ -214,12 +218,12 @@ private:
 
   std::vector<RasterizingTaskPtr>  mRasterizeTasks;     //The queue of the tasks waiting to rasterize the SVG image
   std::vector <RasterizingTaskPtr> mCompletedTasks;     //The queue of the tasks with the SVG rasterization completed
-  Vector<NSVGimage*>               mDeleteSvg;          //The images that the event thread requested to delete
+  Vector <VectorImageRenderer*>    mDeleteSvg;          //The images that the event thread requested to delete
 
   ConditionalWait            mConditionalWait;
   Dali::Mutex                mMutex;
-  EventThreadCallback*       mTrigger;
-
+  std::unique_ptr< EventThreadCallback > mTrigger;
+  const Dali::LogFactoryInterface&       mLogFactory;
   bool                       mIsThreadWaiting;
 };