#include "global.h" #include "RageSoundReader_FileReader.h" #include "RageUtil.h" #include "RageLog.h" #include #ifndef NO_WAV_SUPPORT #include "RageSoundReader_WAV.h" #endif #ifndef NO_MP3_SUPPORT #include "RageSoundReader_MP3.h" #endif #ifndef NO_VORBIS_SUPPORT #include "RageSoundReader_Vorbisfile.h" #endif SoundReader_FileReader *SoundReader_FileReader::TryOpenFile( CString filename, CString &error, CString format, bool &bKeepTrying ) { SoundReader_FileReader *Sample = NULL; #ifndef NO_WAV_SUPPORT if( !format.CompareNoCase("wav") ) Sample = new RageSoundReader_WAV; #endif #ifndef NO_MP3_SUPPORT if( !format.CompareNoCase("mp3") ) Sample = new RageSoundReader_MP3; #endif #ifndef NO_VORBIS_SUPPORT if( !format.CompareNoCase("ogg") ) Sample = new RageSoundReader_Vorbisfile; #endif if( !Sample ) return NULL; OpenResult ret = Sample->Open(filename); if( ret == OPEN_OK ) return Sample; CString err = Sample->GetError(); delete Sample; LOG->Trace( "Format %s failed: %s", format.c_str(), err.c_str() ); /* * The file failed to open, or failed to read. This indicates a problem that will * affect all readers, so don't waste time trying more readers. (OPEN_IO_ERROR) * * Errors fall in two categories: * OPEN_UNKNOWN_FILE_FORMAT: Data was successfully read from the file, but it's the * wrong file format. The error message always looks like "unknown file format" or * "Not Vorbis data"; ignore it so we always give a consistent error message, and * continue trying other file formats. * * OPEN_FATAL_ERROR: Either the file was opened successfully and appears to be the * correct format, but a fatal format-specific error was encountered that will probably * not be fixed by using a different reader (for example, an Ogg file that doesn't * actually contain any audio streams); or the file failed to open or read ("I/O * error", "permission denied"), in which case all other readers will probably fail, * too. The returned error is used, and no other formats will be tried. */ bKeepTrying = (ret != OPEN_FATAL_ERROR); switch( ret ) { case OPEN_UNKNOWN_FILE_FORMAT: bKeepTrying = true; error = "Unknown file format"; break; case OPEN_FATAL_ERROR: /* The file matched, but failed to load. We know it's this type of data; * don't bother trying the other file types. */ bKeepTrying = false; error = err; break; } return NULL; } SoundReader *SoundReader_FileReader::OpenFile( CString filename, CString &error ) { { RageFile TestOpen; if( !TestOpen.Open( filename ) ) { error = TestOpen.GetError(); return NULL; } } set FileTypes; FileTypes.insert("ogg"); FileTypes.insert("mp3"); FileTypes.insert("wav"); CString format = GetExtension(filename); format.MakeLower(); error = ""; bool bKeepTrying = true; /* If the extension matches a format, try that first. */ if( FileTypes.find(format) != FileTypes.end() ) { SoundReader_FileReader *NewSample = TryOpenFile( filename, error, format, bKeepTrying ); if( NewSample ) return NewSample; FileTypes.erase( format ); } for( set::iterator it = FileTypes.begin(); bKeepTrying && it != FileTypes.end(); ++it ) { SoundReader_FileReader *NewSample = TryOpenFile( filename, error, *it, bKeepTrying ); if( NewSample ) { LOG->Warn("File \"%s\" is really %s", filename.c_str(), it->c_str()); return NewSample; } } return NULL; } /* * Copyright (c) 2003-2004 Glenn Maynard * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, and/or sell copies of the Software, and to permit persons to * whom the Software is furnished to do so, provided that the above * copyright notice(s) and this permission notice appear in all copies of * the Software and that both the above copyright notice(s) and this * permission notice appear in supporting documentation. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT * OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. */