--- libgig/trunk/src/helper.h 2005/11/12 12:36:49 803 +++ libgig/trunk/src/helper.h 2006/11/24 12:50:05 933 @@ -1,8 +1,8 @@ /*************************************************************************** * * - * libgig - C++ cross-platform Gigasampler format file loader library * + * libgig - C++ cross-platform Gigasampler format file access library * * * - * Copyright (C) 2003-2005 by Christian Schoenebeck * + * Copyright (C) 2003-2006 by Christian Schoenebeck * * * * * * This library is free software; you can redistribute it and/or modify * @@ -24,9 +24,12 @@ #ifndef __LIBGIG_HELPER_H__ #define __LIBGIG_HELPER_H__ +#include #include #include +#include "RIFF.h" + // *************** Helper Functions ************** // * @@ -36,4 +39,118 @@ return ss.str(); } +inline long Min(long A, long B) { + return (A > B) ? B : A; +} + +inline long Abs(long val) { + return (val > 0) ? val : -val; +} + +/** + * Swaps the order of the data words in the given memory area + * with a granularity given by \a WordSize. + * + * @param pData - pointer to the memory area to be swapped + * @param AreaSize - size of the memory area to be swapped (in bytes) + * @param WordSize - size of the data words (in bytes) + */ +inline void SwapMemoryArea(void* pData, unsigned long AreaSize, uint WordSize) { + switch (WordSize) { // TODO: unefficient + case 1: { + uint8_t* pDst = (uint8_t*) pData; + uint8_t cache; + unsigned long lo = 0, hi = AreaSize - 1; + for (; lo < hi; hi--, lo++) { + cache = pDst[lo]; + pDst[lo] = pDst[hi]; + pDst[hi] = cache; + } + break; + } + case 2: { + uint16_t* pDst = (uint16_t*) pData; + uint16_t cache; + unsigned long lo = 0, hi = (AreaSize >> 1) - 1; + for (; lo < hi; hi--, lo++) { + cache = pDst[lo]; + pDst[lo] = pDst[hi]; + pDst[hi] = cache; + } + break; + } + case 4: { + uint32_t* pDst = (uint32_t*) pData; + uint32_t cache; + unsigned long lo = 0, hi = (AreaSize >> 2) - 1; + for (; lo < hi; hi--, lo++) { + cache = pDst[lo]; + pDst[lo] = pDst[hi]; + pDst[hi] = cache; + } + break; + } + default: { + uint8_t* pCache = new uint8_t[WordSize]; // TODO: unefficient + unsigned long lo = 0, hi = AreaSize - WordSize; + for (; lo < hi; hi -= WordSize, lo += WordSize) { + memcpy(pCache, (uint8_t*) pData + lo, WordSize); + memcpy((uint8_t*) pData + lo, (uint8_t*) pData + hi, WordSize); + memcpy((uint8_t*) pData + hi, pCache, WordSize); + } + delete[] pCache; + break; + } + } +} + +/** @brief Load given info field (string). + * + * Load info field string from given info chunk (\a ck) and save value to \a s. + */ +inline void LoadString(RIFF::Chunk* ck, std::string& s) { + if (ck) { + const char* str = (char*)ck->LoadChunkData(); + int size = ck->GetSize(); + int len; + for (len = 0 ; len < size ; len++) + if (str[len] == '\0') break; + s.assign(str, len); + ck->ReleaseChunkData(); + } +} + +/** @brief Apply given INFO field to the respective chunk. + * + * Apply given info value string to given info chunk, which is a + * subchunk of INFO list chunk \a lstINFO. If the given chunk already + * exists, value \a s will be applied. Otherwise if it doesn't exist yet + * and either \a s or \a sDefault is not an empty string, such a chunk + * will be created and either \a s or \a sDefault will be applied + * (depending on which one is not an empty string, if both are not an + * empty string \a s will be preferred). + * + * @param ChunkID - 32 bit RIFF chunk ID of INFO subchunk (only used in case \a ck is NULL) + * @param ck - INFO (sub)chunk where string should be stored to + * @param lstINFO - parent (INFO) RIFF list chunk + * @param s - current value of info field + * @param sDefault - default value + * @param bUseFixedLengthStrings - should a specific string size be forced in the chunk? + * @param size - wanted size of the INFO chunk. This is ignored if bUseFixedLengthStrings is false. + */ +inline void SaveString(uint32_t ChunkID, RIFF::Chunk* ck, RIFF::List* lstINFO, const std::string& s, const std::string& sDefault, bool bUseFixedLengthStrings, int size) { + if (ck) { // if chunk exists already, use 's' as value + if (!bUseFixedLengthStrings) size = s.size() + 1; + ck->Resize(size); + char* pData = (char*) ck->LoadChunkData(); + strncpy(pData, s.c_str(), size); + } else if (s != "" || sDefault != "") { // create chunk + const std::string& sToSave = (s != "") ? s : sDefault; + if (!bUseFixedLengthStrings) size = sToSave.size() + 1; + ck = lstINFO->AddSubChunk(ChunkID, size); + char* pData = (char*) ck->LoadChunkData(); + strncpy(pData, sToSave.c_str(), size); + } +} + #endif // __LIBGIG_HELPER_H__