123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627 |
- /*
- ---------------------------------------------------------------------------
- Open Asset Import Library (ASSIMP)
- ---------------------------------------------------------------------------
- Copyright (c) 2006-2010, ASSIMP Development Team
- All rights reserved.
- Redistribution and use of this software in source and binary forms,
- with or without modification, are permitted provided that the following
- conditions are met:
- * Redistributions of source code must retain the above
- copyright notice, this list of conditions and the
- following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the
- following disclaimer in the documentation and/or other
- materials provided with the distribution.
- * Neither the name of the ASSIMP team, nor the names of its
- contributors may be used to endorse or promote products
- derived from this software without specific prior
- written permission of the ASSIMP Development Team.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- ---------------------------------------------------------------------------
- */
- /** @file Assimp.cpp
- * @brief Implementation of the Plain-C API
- */
- #include "AssimpPCH.h"
- #include "../include/assimp.h"
- #include "GenericProperty.h"
- #include "CInterfaceIOWrapper.h"
- // ------------------------------------------------------------------------------------------------
- #ifdef AI_C_THREADSAFE
- # include <boost/thread/thread.hpp>
- # include <boost/thread/mutex.hpp>
- #endif
- // ------------------------------------------------------------------------------------------------
- using namespace Assimp;
- namespace Assimp
- {
- /** Stores the importer objects for all active import processes */
- typedef std::map<const aiScene*, Assimp::Importer*> ImporterMap;
- /** Stores the LogStream objects for all active C log streams */
- struct mpred {
- bool operator () (const aiLogStream& s0, const aiLogStream& s1) const {
- return s0.callback<s1.callback&&s0.user<s1.user;
- }
- };
- typedef std::map<aiLogStream, Assimp::LogStream*, mpred> LogStreamMap;
- /** Stores the LogStream objects allocated by #aiGetPredefinedLogStream */
- typedef std::list<Assimp::LogStream*> PredefLogStreamMap;
- /** Local storage of all active import processes */
- static ImporterMap gActiveImports;
- /** Local storage of all active log streams */
- static LogStreamMap gActiveLogStreams;
- /** Local storage of LogStreams allocated by #aiGetPredefinedLogStream */
- static PredefLogStreamMap gPredefinedStreams;
- /** Error message of the last failed import process */
- static std::string gLastErrorString;
- /** Verbose logging active or not? */
- static aiBool gVerboseLogging = false;
- }
- /** Configuration properties */
- static ImporterPimpl::IntPropertyMap gIntProperties;
- static ImporterPimpl::FloatPropertyMap gFloatProperties;
- static ImporterPimpl::StringPropertyMap gStringProperties;
- #ifdef AI_C_THREADSAFE
- /** Global mutex to manage the access to the importer map */
- static boost::mutex gMutex;
- /** Global mutex to manage the access to the logstream map */
- static boost::mutex gLogStreamMutex;
- #endif
- // ------------------------------------------------------------------------------------------------
- // Custom LogStream implementation for the C-API
- class LogToCallbackRedirector : public LogStream
- {
- public:
- LogToCallbackRedirector(const aiLogStream& s)
- : stream (s) {
- ai_assert(NULL != s.callback);
- }
- ~LogToCallbackRedirector() {
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gLogStreamMutex);
- #endif
- // (HACK) Check whether the 'stream.user' pointer points to a
- // custom LogStream allocated by #aiGetPredefinedLogStream.
- // In this case, we need to delete it, too. Of course, this
- // might cause strange problems, but the chance is quite low.
- PredefLogStreamMap::iterator it = std::find(gPredefinedStreams.begin(),
- gPredefinedStreams.end(), (Assimp::LogStream*)stream.user);
- if (it != gPredefinedStreams.end()) {
- delete *it;
- gPredefinedStreams.erase(it);
- }
- }
- /** @copydoc LogStream::write */
- void write(const char* message) {
- stream.callback(message,stream.user);
- }
- private:
- aiLogStream stream;
- };
- // ------------------------------------------------------------------------------------------------
- void ReportSceneNotFoundError()
- {
- DefaultLogger::get()->error("Unable to find the Assimp::Importer for this aiScene. "
- "Are you playing fools with us? Don't mix cpp and c API. Thanks.");
- assert(false);
- }
- // ------------------------------------------------------------------------------------------------
- // Reads the given file and returns its content.
- const aiScene* aiImportFile( const char* pFile, unsigned int pFlags)
- {
- return aiImportFileEx(pFile,pFlags,NULL);
- }
- // ------------------------------------------------------------------------------------------------
- const aiScene* aiImportFileEx( const char* pFile, unsigned int pFlags,
- aiFileIO* pFS)
- {
- ai_assert(NULL != pFile);
- const aiScene* scene = NULL;
- ASSIMP_BEGIN_EXCEPTION_REGION();
- // create an Importer for this file
- Assimp::Importer* imp = new Assimp::Importer();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- // copy the global property lists to the Importer instance
- imp->pimpl->mIntProperties = gIntProperties;
- imp->pimpl->mFloatProperties = gFloatProperties;
- imp->pimpl->mStringProperties = gStringProperties;
- #ifdef AI_C_THREADSAFE
- lock.unlock();
- #endif
- // setup a custom IO system if necessary
- if (pFS) {
- imp->SetIOHandler( new CIOSystemWrapper (pFS) );
- }
- // and have it read the file
- scene = imp->ReadFile( pFile, pFlags);
- // if succeeded, place it in the collection of active processes
- if( scene) {
- #ifdef AI_C_THREADSAFE
- lock.lock();
- #endif
- gActiveImports[scene] = imp;
- }
- else {
- // if failed, extract error code and destroy the import
- gLastErrorString = imp->GetErrorString();
- delete imp;
- }
- // return imported data. If the import failed the pointer is NULL anyways
- ASSIMP_END_EXCEPTION_REGION(const aiScene*);
- return scene;
- }
- // ------------------------------------------------------------------------------------------------
- const aiScene* aiImportFileFromMemory(
- const char* pBuffer,
- unsigned int pLength,
- unsigned int pFlags,
- const char* pHint)
- {
- ai_assert(NULL != pBuffer && 0 != pLength);
- const aiScene* scene = NULL;
- ASSIMP_BEGIN_EXCEPTION_REGION();
- // create an Importer for this file
- Assimp::Importer* imp = new Assimp::Importer();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- // copy the global property lists to the Importer instance
- imp->pimpl->mIntProperties = gIntProperties;
- imp->pimpl->mFloatProperties = gFloatProperties;
- imp->pimpl->mStringProperties = gStringProperties;
- #ifdef AI_C_THREADSAFE
- lock.unlock();
- #endif
- // and have it read the file from the memory buffer
- scene = imp->ReadFileFromMemory( pBuffer, pLength, pFlags,pHint);
- // if succeeded, place it in the collection of active processes
- if( scene) {
- #ifdef AI_C_THREADSAFE
- lock.lock();
- #endif
- gActiveImports[scene] = imp;
- }
- else {
- // if failed, extract error code and destroy the import
- gLastErrorString = imp->GetErrorString();
- delete imp;
- }
- // return imported data. If the import failed the pointer is NULL anyways
- ASSIMP_END_EXCEPTION_REGION(const aiScene*);
- return scene;
- }
- // ------------------------------------------------------------------------------------------------
- // Releases all resources associated with the given import process.
- void aiReleaseImport( const aiScene* pScene)
- {
- if (!pScene) {
- return;
- }
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
-
- // find the importer associated with this data
- ImporterMap::iterator it = gActiveImports.find( pScene);
- // it should be there... else the user is playing fools with us
- if( it == gActiveImports.end()) {
- ReportSceneNotFoundError();
- return;
- }
- // kill the importer, the data dies with it
- delete it->second;
- gActiveImports.erase( it);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API const aiScene* aiApplyPostProcessing(const aiScene* pScene,
- unsigned int pFlags)
- {
- const aiScene* sc = NULL;
-
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- // find the importer associated with this data
- ImporterMap::iterator it = gActiveImports.find( pScene);
- // it should be there... else the user is playing fools with us
- if( it == gActiveImports.end()) {
- ReportSceneNotFoundError();
- return NULL;
- }
- #ifdef AI_C_THREADSAFE
- lock.unlock();
- #endif
- sc = it->second->ApplyPostProcessing(pFlags);
- #ifdef AI_C_THREADSAFE
- lock.lock();
- #endif
- if (!sc) {
- // kill the importer, the data dies with it
- delete it->second;
- gActiveImports.erase( it);
- return NULL;
- }
- ASSIMP_END_EXCEPTION_REGION(const aiScene*);
- return sc;
- }
- // ------------------------------------------------------------------------------------------------
- void CallbackToLogRedirector (const char* msg, char* dt)
- {
- ai_assert(NULL != msg && NULL != dt);
- LogStream* s = (LogStream*)dt;
- s->write(msg);
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API aiLogStream aiGetPredefinedLogStream(aiDefaultLogStream pStream,const char* file)
- {
- aiLogStream sout;
- ASSIMP_BEGIN_EXCEPTION_REGION();
- LogStream* stream = LogStream::createDefaultStream(pStream,file);
- if (!stream) {
- sout.callback = NULL;
- sout.user = NULL;
- }
- else {
- sout.callback = &CallbackToLogRedirector;
- sout.user = (char*)stream;
- }
- gPredefinedStreams.push_back(stream);
- ASSIMP_END_EXCEPTION_REGION(aiLogStream);
- return sout;
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiAttachLogStream( const aiLogStream* stream )
- {
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gLogStreamMutex);
- #endif
- LogStream* lg = new LogToCallbackRedirector(*stream);
- gActiveLogStreams[*stream] = lg;
- if (DefaultLogger::isNullLogger()) {
- DefaultLogger::create(NULL,(gVerboseLogging == AI_TRUE ? Logger::VERBOSE : Logger::NORMAL));
- }
- DefaultLogger::get()->attachStream(lg);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API aiReturn aiDetachLogStream( const aiLogStream* stream)
- {
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gLogStreamMutex);
- #endif
- // find the logstream associated with this data
- LogStreamMap::iterator it = gActiveLogStreams.find( *stream);
- // it should be there... else the user is playing fools with us
- if( it == gActiveLogStreams.end()) {
- return AI_FAILURE;
- }
- DefaultLogger::get()->detatchStream( it->second );
- delete it->second;
- gActiveLogStreams.erase( it);
- if (gActiveLogStreams.empty()) {
- DefaultLogger::kill();
- }
- ASSIMP_END_EXCEPTION_REGION(aiReturn);
- return AI_SUCCESS;
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiDetachAllLogStreams(void)
- {
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gLogStreamMutex);
- #endif
- for (LogStreamMap::iterator it = gActiveLogStreams.begin(); it != gActiveLogStreams.end(); ++it) {
- DefaultLogger::get()->detatchStream( it->second );
- delete it->second;
- }
- gActiveLogStreams.clear();
- DefaultLogger::kill();
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiEnableVerboseLogging(aiBool d)
- {
- if (!DefaultLogger::isNullLogger()) {
- DefaultLogger::get()->setLogSeverity((d == AI_TRUE ? Logger::VERBOSE : Logger::NORMAL));
- }
- gVerboseLogging = d;
- }
- // ------------------------------------------------------------------------------------------------
- // Returns the error text of the last failed import process.
- const char* aiGetErrorString()
- {
- return gLastErrorString.c_str();
- }
- // ------------------------------------------------------------------------------------------------
- // Returns the error text of the last failed import process.
- aiBool aiIsExtensionSupported(const char* szExtension)
- {
- ai_assert(NULL != szExtension);
- aiBool candoit=AI_FALSE;
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- if (!gActiveImports.empty()) {
- return ((*(gActiveImports.begin())).second->IsExtensionSupported( szExtension )) ? AI_TRUE : AI_FALSE;
- }
- // fixme: no need to create a temporary Importer instance just for that ..
- Assimp::Importer tmp;
- candoit = tmp.IsExtensionSupported(std::string(szExtension)) ? AI_TRUE : AI_FALSE;
- ASSIMP_END_EXCEPTION_REGION(aiBool);
- return candoit;
- }
- // ------------------------------------------------------------------------------------------------
- // Get a list of all file extensions supported by ASSIMP
- void aiGetExtensionList(aiString* szOut)
- {
- ai_assert(NULL != szOut);
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- if (!gActiveImports.empty()) {
- (*(gActiveImports.begin())).second->GetExtensionList(*szOut);
- return;
- }
- // fixme: no need to create a temporary Importer instance just for that ..
- Assimp::Importer tmp;
- tmp.GetExtensionList(*szOut);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- // Get the memory requirements for a particular import.
- void aiGetMemoryRequirements(const C_STRUCT aiScene* pIn,
- C_STRUCT aiMemoryInfo* in)
- {
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- // find the importer associated with this data
- ImporterMap::iterator it = gActiveImports.find( pIn);
- // it should be there... else the user is playing fools with us
- if( it == gActiveImports.end()) {
- ReportSceneNotFoundError();
- return;
- }
- // get memory statistics
- #ifdef AI_C_THREADSAFE
- lock.unlock();
- #endif
- it->second->GetMemoryRequirements(*in);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- // Importer::SetPropertyInteger
- ASSIMP_API void aiSetImportPropertyInteger(const char* szName, int value)
- {
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- SetGenericProperty<int>(gIntProperties,szName,value,NULL);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- // Importer::SetPropertyFloat
- ASSIMP_API void aiSetImportPropertyFloat(const char* szName, float value)
- {
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- SetGenericProperty<float>(gFloatProperties,szName,value,NULL);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- // Importer::SetPropertyString
- ASSIMP_API void aiSetImportPropertyString(const char* szName,
- const C_STRUCT aiString* st)
- {
- if (!st) {
- return;
- }
- ASSIMP_BEGIN_EXCEPTION_REGION();
- #ifdef AI_C_THREADSAFE
- boost::mutex::scoped_lock lock(gMutex);
- #endif
- SetGenericProperty<std::string>(gStringProperties,szName,
- std::string( st->data ),NULL);
- ASSIMP_END_EXCEPTION_REGION(void);
- }
- // ------------------------------------------------------------------------------------------------
- // Rotation matrix to quaternion
- ASSIMP_API void aiCreateQuaternionFromMatrix(aiQuaternion* quat,const aiMatrix3x3* mat)
- {
- ai_assert(NULL != quat && NULL != mat);
- *quat = aiQuaternion(*mat);
- }
- // ------------------------------------------------------------------------------------------------
- // Matrix decomposition
- ASSIMP_API void aiDecomposeMatrix(const aiMatrix4x4* mat,aiVector3D* scaling,
- aiQuaternion* rotation,
- aiVector3D* position)
- {
- ai_assert(NULL != rotation && NULL != position && NULL != scaling && NULL != mat);
- mat->Decompose(*scaling,*rotation,*position);
- }
- // ------------------------------------------------------------------------------------------------
- // Matrix transpose
- ASSIMP_API void aiTransposeMatrix3(aiMatrix3x3* mat)
- {
- ai_assert(NULL != mat);
- mat->Transpose();
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiTransposeMatrix4(aiMatrix4x4* mat)
- {
- ai_assert(NULL != mat);
- mat->Transpose();
- }
- // ------------------------------------------------------------------------------------------------
- // Vector transformation
- ASSIMP_API void aiTransformVecByMatrix3(C_STRUCT aiVector3D* vec,
- const C_STRUCT aiMatrix3x3* mat)
- {
- ai_assert(NULL != mat && NULL != vec);
- *vec *= (*mat);
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiTransformVecByMatrix4(C_STRUCT aiVector3D* vec,
- const C_STRUCT aiMatrix4x4* mat)
- {
- ai_assert(NULL != mat && NULL != vec);
- *vec *= (*mat);
- }
- // ------------------------------------------------------------------------------------------------
- // Matrix multiplication
- ASSIMP_API void aiMultiplyMatrix4(
- C_STRUCT aiMatrix4x4* dst,
- const C_STRUCT aiMatrix4x4* src)
- {
- ai_assert(NULL != dst && NULL != src);
- *dst = (*dst) * (*src);
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiMultiplyMatrix3(
- C_STRUCT aiMatrix3x3* dst,
- const C_STRUCT aiMatrix3x3* src)
- {
- ai_assert(NULL != dst && NULL != src);
- *dst = (*dst) * (*src);
- }
- // ------------------------------------------------------------------------------------------------
- // Matrix identity
- ASSIMP_API void aiIdentityMatrix3(
- C_STRUCT aiMatrix3x3* mat)
- {
- ai_assert(NULL != mat);
- *mat = aiMatrix3x3();
- }
- // ------------------------------------------------------------------------------------------------
- ASSIMP_API void aiIdentityMatrix4(
- C_STRUCT aiMatrix4x4* mat)
- {
- ai_assert(NULL != mat);
- *mat = aiMatrix4x4();
- }
|