mirror of
https://github.com/taglib/taglib.git
synced 2025-08-12 01:04:47 -04:00
bindings
cmake
doc
examples
taglib
tests
data
CMakeLists.txt
main.cpp
test_aiff.cpp
test_ape.cpp
test_apetag.cpp
test_asf.cpp
test_bytevector.cpp
test_bytevectorlist.cpp
test_bytevectorstream.cpp
test_fileref.cpp
test_flac.cpp
test_flacpicture.cpp
test_flacunknownmetadatablock.cpp
test_id3v1.cpp
test_id3v2.cpp
test_info.cpp
test_it.cpp
test_list.cpp
test_map.cpp
test_mod.cpp
test_mp4.cpp
test_mp4coverart.cpp
test_mp4item.cpp
test_mpc.cpp
test_mpeg.cpp
test_ogg.cpp
test_oggflac.cpp
test_opus.cpp
test_propertymap.cpp
test_riff.cpp
test_s3m.cpp
test_string.cpp
test_synchdata.cpp
test_trueaudio.cpp
test_wav.cpp
test_wavpack.cpp
test_xiphcomment.cpp
test_xm.cpp
utils.h
.gitignore
.travis.yml
AUTHORS
CMakeLists.txt
COPYING.LGPL
COPYING.MPL
ConfigureChecks.cmake
Doxyfile.cmake
INSTALL
NEWS
cmake_uninstall.cmake.in
config-taglib.h.cmake
taglib-config.cmake
taglib-config.cmd.cmake
taglib.pc.cmake
Without including sys/stat.h, this file failed to build on FreeBSD with the following error. In file included from /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/test_trueaudio.cpp:5:0: /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/utils.h: In function 'std::string copyFile(const string&, const string&)': /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/utils.h:36:62: error: 'S_IRUSR' was not declared in this scope /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/utils.h:36:72: error: 'S_IWUSR' was not declared in this scope In file included from /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/test_mpeg.cpp:6:0: /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/utils.h: In function 'std::string copyFile(const string&, const string&)': /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/utils.h:36:62: error: 'S_IRUSR' was not declared in this scope /var/tmp/portage/media-libs/taglib-1.8/work/taglib-1.8/tests/utils.h:36:72: error: 'S_IWUSR' was not declared in this scope gmake[2]: *** [tests/CMakeFiles/test_runner.dir/test_mpeg.cpp.o] Error 1
104 lines
2.2 KiB
C++
104 lines
2.2 KiB
C++
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <sys/fcntl.h>
|
|
#include <sys/stat.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <string>
|
|
#include <fstream>
|
|
|
|
using namespace std;
|
|
|
|
inline string testFilePath(const string &filename)
|
|
{
|
|
return string(TESTS_DIR "data/") + filename;
|
|
}
|
|
|
|
#define TEST_FILE_PATH_C(f) testFilePath(f).c_str()
|
|
|
|
inline string copyFile(const string &filename, const string &ext)
|
|
{
|
|
string newname = string(tempnam(NULL, NULL)) + ext;
|
|
string oldname = testFilePath(filename) + ext;
|
|
#ifdef _WIN32
|
|
CopyFile(oldname.c_str(), newname.c_str(), FALSE);
|
|
SetFileAttributes(newname.c_str(), GetFileAttributes(newname.c_str()) & ~FILE_ATTRIBUTE_READONLY);
|
|
#else
|
|
char buffer[4096];
|
|
int bytes;
|
|
int inf = open(oldname.c_str(), O_RDONLY);
|
|
int outf = open(newname.c_str(), O_CREAT | O_EXCL | O_RDWR, S_IRUSR | S_IWUSR);
|
|
while((bytes = read(inf, buffer, sizeof(buffer))) > 0)
|
|
write(outf, buffer, bytes);
|
|
close(outf);
|
|
close(inf);
|
|
#endif
|
|
return newname;
|
|
}
|
|
|
|
inline void deleteFile(const string &filename)
|
|
{
|
|
remove(filename.c_str());
|
|
}
|
|
|
|
inline bool fileEqual(const string &filename1, const string &filename2)
|
|
{
|
|
char buf1[BUFSIZ];
|
|
char buf2[BUFSIZ];
|
|
|
|
ifstream stream1(filename1.c_str(), ios_base::in | ios_base::binary);
|
|
ifstream stream2(filename2.c_str(), ios_base::in | ios_base::binary);
|
|
|
|
if(!stream1 && !stream2) return true;
|
|
if(!stream1 || !stream2) return false;
|
|
|
|
for(;;)
|
|
{
|
|
stream1.read(buf1, BUFSIZ);
|
|
stream2.read(buf2, BUFSIZ);
|
|
|
|
streamsize n1 = stream1.gcount();
|
|
streamsize n2 = stream2.gcount();
|
|
|
|
if(n1 != n2) return false;
|
|
|
|
if(n1 == 0) break;
|
|
|
|
if(memcmp(buf1, buf2, n1) != 0) return false;
|
|
}
|
|
|
|
return stream1.good() == stream2.good();
|
|
}
|
|
|
|
class ScopedFileCopy
|
|
{
|
|
public:
|
|
ScopedFileCopy(const string &filename, const string &ext, bool deleteFile=true)
|
|
{
|
|
m_deleteFile = deleteFile;
|
|
m_filename = copyFile(filename, ext);
|
|
}
|
|
|
|
~ScopedFileCopy()
|
|
{
|
|
if(m_deleteFile)
|
|
deleteFile(m_filename);
|
|
}
|
|
|
|
string fileName()
|
|
{
|
|
return m_filename;
|
|
}
|
|
|
|
private:
|
|
bool m_deleteFile;
|
|
string m_filename;
|
|
};
|