/* AssetManager - Facade for the Asset subsystem Copyright (C) CinelerraCV 2007, Christian Thaeter 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" #include "proc/asset/db.hpp" //#include using cinelerra::Singleton; namespace asset { /** get at the system-wide asset manager instance. * Implemented as singleton. */ Singleton AssetManager::instance; AssetManager::AssetManager () : registry (Singleton() ()) { } /** provide the unique ID for given Asset::Ident tuple */ ID AssetManager::getID (const Asset::Ident& idi) { return asset::hash_value (idi); } /** * registers an asset object in the internal DB, providing its unique key */ template ID AssetManager::reg (KIND* obj, const Asset::Ident& idi) throw(cinelerra::error::Invalid) { UNIMPLEMENTED ("AssetManager::reg"); } /** * find and return corresponging object */ template shared_ptr AssetManager::getAsset (const ID& id) throw(cinelerra::error::Invalid) { UNIMPLEMENTED ("AssetManager::getAsset"); } /** * @return true if the given id is registered in the internal asset DB */ bool AssetManager::known (IDA id) { 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"); } /** * remove the given asset together with all its dependants from the internal DB */ void AssetManager::remove (IDA id) throw(cinelerra::error::Invalid, cinelerra::error::State) { } } // namespace asset /************************************************************/ /* explicit template instantiations for various Asset Kinds */ /************************************************************/ #include "proc/asset/media.hpp" #include "proc/asset/proc.hpp" #include "proc/asset/struct.hpp" #include "proc/asset/meta.hpp" namespace asset { template ID AssetManager::reg (Asset* obj, const Asset::Ident& idi); template shared_ptr AssetManager::getAsset (const ID& id) throw(cinelerra::error::Invalid); template shared_ptr AssetManager::getAsset (const ID& id) throw(cinelerra::error::Invalid); template shared_ptr AssetManager::getAsset (const ID& id) throw(cinelerra::error::Invalid); template shared_ptr AssetManager::getAsset (const ID& id) throw(cinelerra::error::Invalid); template shared_ptr AssetManager::getAsset (const ID& id) throw(cinelerra::error::Invalid); } // namespace asset