X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Ftexture-manager.cpp;h=9468935c556d47be2d4984d3eb9dab2278c040ab;hp=824213e7314c3e9eab1c608a4d32600aede89420;hb=421e8bf2b19f6e6e53866595d29db9cc6b8d210e;hpb=8b3dac6e167dd77d6db17c019d1e9778d79f198e diff --git a/dali-toolkit/internal/visuals/texture-manager.cpp b/dali-toolkit/internal/visuals/texture-manager.cpp index 824213e..9468935 100644 --- a/dali-toolkit/internal/visuals/texture-manager.cpp +++ b/dali-toolkit/internal/visuals/texture-manager.cpp @@ -19,18 +19,45 @@ #include "texture-manager.h" // EXTERNAL HEADERS +#include +#include #include #include #include #include // INTERNAL HEADERS -#include -#include #include -#include #include +namespace +{ + +constexpr auto DEFAULT_NUMBER_OF_LOCAL_LOADER_THREADS = size_t{4u}; +constexpr auto DEFAULT_NUMBER_OF_REMOTE_LOADER_THREADS = size_t{8u}; + +constexpr auto NUMBER_OF_LOCAL_LOADER_THREADS_ENV = "DALI_TEXTURE_LOCAL_THREADS"; +constexpr auto NUMBER_OF_REMOTE_LOADER_THREADS_ENV = "DALI_TEXTURE_REMOTE_THREADS"; + +size_t GetNumberOfThreads(const char* environmentVariable, size_t defaultValue) +{ + using Dali::EnvironmentVariable::GetEnvironmentVariable; + auto numberString = GetEnvironmentVariable(environmentVariable); + auto numberOfThreads = numberString ? std::strtol(numberString, nullptr, 10) : 0; + return (numberOfThreads > 0) ? numberOfThreads : defaultValue; +} + +size_t GetNumberOfLocalLoaderThreads() +{ + return GetNumberOfThreads(NUMBER_OF_LOCAL_LOADER_THREADS_ENV, DEFAULT_NUMBER_OF_LOCAL_LOADER_THREADS); +} + +size_t GetNumberOfRemoteLoaderThreads() +{ + return GetNumberOfThreads(NUMBER_OF_REMOTE_LOADER_THREADS_ENV, DEFAULT_NUMBER_OF_REMOTE_LOADER_THREADS); +} + +} // namespace namespace Dali { @@ -58,12 +85,10 @@ const int INVALID_CACHE_INDEX( -1 ); ///< Invalid Cache index TextureManager::TextureManager() -: mAsyncLocalLoader( Toolkit::AsyncImageLoader::New() ), - mAsyncRemoteLoader( Toolkit::AsyncImageLoader::New() ), - mCurrentTextureId( 0 ) +: mCurrentTextureId( 0 ), + mAsyncLocalLoaders( GetNumberOfLocalLoaderThreads(), [&]() { return AsyncLoadingHelper(*this); } ), + mAsyncRemoteLoaders( GetNumberOfRemoteLoaderThreads(), [&]() { return AsyncLoadingHelper(*this); } ) { - DevelAsyncImageLoader::PixelBufferLoadedSignal(mAsyncLocalLoader).Connect( this, &TextureManager::AsyncLocalLoadComplete ); - DevelAsyncImageLoader::PixelBufferLoadedSignal(mAsyncRemoteLoader).Connect( this, &TextureManager::AsyncRemoteLoadComplete ); } TextureManager::TextureId TextureManager::RequestLoad( @@ -294,22 +319,12 @@ bool TextureManager::LoadTexture( TextureInfo& textureInfo ) if( !textureInfo.loadSynchronously ) { - if( textureInfo.url.IsLocal() ) - { - mAsyncLocalLoadingInfoContainer.push_back( AsyncLoadingInfo( textureInfo.textureId ) ); - mAsyncLocalLoadingInfoContainer.back().loadId = - GetImplementation(mAsyncLocalLoader).Load( textureInfo.url, textureInfo.desiredSize, - textureInfo.fittingMode, - textureInfo.samplingMode, true ); - } - else - { - mAsyncRemoteLoadingInfoContainer.push_back( AsyncLoadingInfo( textureInfo.textureId ) ); - mAsyncRemoteLoadingInfoContainer.back().loadId = - GetImplementation(mAsyncRemoteLoader).Load( textureInfo.url, textureInfo.desiredSize, - textureInfo.fittingMode, - textureInfo.samplingMode, true ); - } + auto& loadersContainer = textureInfo.url.IsLocal() ? mAsyncLocalLoaders : mAsyncRemoteLoaders; + auto loadingHelperIt = loadersContainer.GetNext(); + DALI_ASSERT_ALWAYS(loadingHelperIt != loadersContainer.End()); + loadingHelperIt->Load(textureInfo.textureId, textureInfo.url, + textureInfo.desiredSize, textureInfo.fittingMode, + textureInfo.samplingMode, true); } } @@ -326,16 +341,6 @@ void TextureManager::ObserveTexture( TextureInfo& textureInfo, } } -void TextureManager::AsyncLocalLoadComplete( uint32_t id, Devel::PixelBuffer pixelBuffer ) -{ - AsyncLoadComplete( mAsyncLocalLoadingInfoContainer, id, pixelBuffer ); -} - -void TextureManager::AsyncRemoteLoadComplete( uint32_t id, Devel::PixelBuffer pixelBuffer ) -{ - AsyncLoadComplete( mAsyncRemoteLoadingInfoContainer, id, pixelBuffer ); -} - void TextureManager::AsyncLoadComplete( AsyncLoadingInfoContainerType& loadingContainer, uint32_t id, Devel::PixelBuffer pixelBuffer ) { DALI_LOG_INFO( gTextureManagerLogFilter, Debug::Concise, "TextureManager::AsyncLoadComplete( id:%d )\n", id ); @@ -674,13 +679,48 @@ void TextureManager::ObserverDestroyed( TextureUploadObserver* observer ) TextureManager::~TextureManager() { - mTextureInfoContainer.clear(); - mAsyncLocalLoadingInfoContainer.clear(); - mAsyncRemoteLoadingInfoContainer.clear(); } +TextureManager::AsyncLoadingHelper::AsyncLoadingHelper(TextureManager& textureManager) +: AsyncLoadingHelper(Toolkit::AsyncImageLoader::New(), textureManager, + AsyncLoadingInfoContainerType()) +{ +} +void TextureManager::AsyncLoadingHelper::Load(TextureId textureId, + const VisualUrl& url, + ImageDimensions desiredSize, + FittingMode::Type fittingMode, + SamplingMode::Type samplingMode, + bool orientationCorrection) +{ + mLoadingInfoContainer.push_back(AsyncLoadingInfo(textureId)); + auto id = mLoader.Load(url.GetUrl(), desiredSize, fittingMode, samplingMode, orientationCorrection); + mLoadingInfoContainer.back().loadId = id; +} +TextureManager::AsyncLoadingHelper::AsyncLoadingHelper(AsyncLoadingHelper&& rhs) +: AsyncLoadingHelper(rhs.mLoader, rhs.mTextureManager, std::move(rhs.mLoadingInfoContainer)) +{ +} + +TextureManager::AsyncLoadingHelper::AsyncLoadingHelper( + Toolkit::AsyncImageLoader loader, + TextureManager& textureManager, + AsyncLoadingInfoContainerType&& loadingInfoContainer) +: mLoader(loader), + mTextureManager(textureManager), + mLoadingInfoContainer(std::move(loadingInfoContainer)) +{ + DevelAsyncImageLoader::PixelBufferLoadedSignal(mLoader).Connect( + this, &AsyncLoadingHelper::AsyncLoadComplete); +} + +void TextureManager::AsyncLoadingHelper::AsyncLoadComplete(uint32_t id, + Devel::PixelBuffer pixelBuffer) +{ + mTextureManager.AsyncLoadComplete(mLoadingInfoContainer, id, pixelBuffer); +} } // namespace Internal