2007-09-02 18:48:22 +02:00
|
|
|
/*
|
|
|
|
|
AssetManager - Facade for the Asset subsystem
|
|
|
|
|
|
|
|
|
|
Copyright (C) CinelerraCV
|
|
|
|
|
2007, Christian Thaeter <ct@pipapo.org>
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "proc/assetmanager.hpp"
|
2007-09-07 23:24:13 +02:00
|
|
|
#include "proc/asset/db.hpp"
|
|
|
|
|
#include "common/singleton.hpp"
|
2007-09-02 18:48:22 +02:00
|
|
|
|
2007-09-07 23:24:13 +02:00
|
|
|
//#include <boost/functional/hash.hpp>
|
|
|
|
|
|
|
|
|
|
using cinelerra::Singleton;
|
2007-09-02 18:48:22 +02:00
|
|
|
|
2007-09-07 23:24:13 +02:00
|
|
|
namespace asset
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** get at the system-wide asset manager instance.
|
|
|
|
|
* Implemented as singleton.
|
|
|
|
|
*/
|
|
|
|
|
AssetManager&
|
|
|
|
|
AssetManager::instance ()
|
|
|
|
|
{
|
2007-09-10 06:45:36 +02:00
|
|
|
return *(new AssetManager); //////////////////////////////TODO Singleton<AssetManager>::instance();
|
2007-09-07 23:24:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AssetManager::AssetManager ()
|
2007-09-10 06:45:36 +02:00
|
|
|
: registry (*(new DB)) //(Singleton<asset::DB>::instance())
|
2007-09-07 23:24:13 +02:00
|
|
|
{ }
|
2007-09-02 18:48:22 +02:00
|
|
|
|
|
|
|
|
|
2007-09-07 23:24:13 +02:00
|
|
|
|
|
|
|
|
/** provide the unique ID for given Asset::Ident tuple */
|
|
|
|
|
ID<Asset>
|
|
|
|
|
AssetManager::getID (const Asset::Ident& idi)
|
|
|
|
|
{
|
|
|
|
|
return asset::hash_value (idi);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-09-02 18:48:22 +02:00
|
|
|
/**
|
|
|
|
|
* registers an asset object in the internal DB, providing its unique key
|
|
|
|
|
*/
|
2007-09-07 23:24:13 +02:00
|
|
|
template<class KIND>
|
|
|
|
|
ID<KIND>
|
|
|
|
|
AssetManager::reg (KIND& obj, const Asset::Ident& idi)
|
2007-09-10 06:45:36 +02:00
|
|
|
throw(cinelerra::error::Invalid)
|
2007-09-02 18:48:22 +02:00
|
|
|
{
|
2007-09-10 06:45:36 +02:00
|
|
|
UNIMPLEMENTED ("AssetManager::reg");
|
2007-09-02 18:48:22 +02:00
|
|
|
}
|
2007-09-07 23:24:13 +02:00
|
|
|
|
|
|
|
|
|
2007-09-02 18:48:22 +02:00
|
|
|
/**
|
|
|
|
|
* find and return corresponging object
|
|
|
|
|
*/
|
2007-09-07 23:24:13 +02:00
|
|
|
template<class KIND>
|
|
|
|
|
shared_ptr<KIND>
|
2007-09-10 06:45:36 +02:00
|
|
|
AssetManager::getAsset (const ID<KIND>& id)
|
|
|
|
|
throw(cinelerra::error::Invalid)
|
2007-09-02 18:48:22 +02:00
|
|
|
{
|
2007-09-10 06:45:36 +02:00
|
|
|
UNIMPLEMENTED ("AssetManager::getAsset");
|
2007-09-02 18:48:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return true if the given id is registered in the internal asset DB
|
|
|
|
|
*/
|
|
|
|
|
bool
|
2007-09-07 23:24:13 +02:00
|
|
|
AssetManager::known (IDA id)
|
2007-09-02 18:48:22 +02:00
|
|
|
{
|
2007-09-10 06:45:36 +02:00
|
|
|
UNIMPLEMENTED ("asset search");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return true if the given id is registered with the given Category
|
|
|
|
|
*/
|
|
|
|
|
bool
|
|
|
|
|
AssetManager::known (IDA id, const Category& cat)
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED ("asset search");
|
2007-09-02 18:48:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* remove the given asset <i>together with all its dependants</i> from the internal DB
|
|
|
|
|
*/
|
|
|
|
|
void
|
2007-09-10 06:45:36 +02:00
|
|
|
AssetManager::remove (IDA id)
|
|
|
|
|
throw(cinelerra::error::Invalid,
|
|
|
|
|
cinelerra::error::State)
|
2007-09-07 23:24:13 +02:00
|
|
|
{
|
|
|
|
|
}
|
2007-09-02 18:48:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-09-07 23:24:13 +02:00
|
|
|
} // namespace asset
|