![]() |
pl-nk v0.4.5
Plonk|Plink|Plank are a set of cross-platform C/C++ frameworks for audio software development
|
00001 /* 00002 ------------------------------------------------------------------------------- 00003 This file is part of the Plink, Plonk, Plank libraries 00004 by Martin Robinson 00005 00006 http://code.google.com/p/pl-nk/ 00007 00008 Copyright University of the West of England, Bristol 2011-14 00009 All rights reserved. 00010 00011 Redistribution and use in source and binary forms, with or without 00012 modification, are permitted provided that the following conditions are met: 00013 00014 * Redistributions of source code must retain the above copyright 00015 notice, this list of conditions and the following disclaimer. 00016 * Redistributions in binary form must reproduce the above copyright 00017 notice, this list of conditions and the following disclaimer in the 00018 documentation and/or other materials provided with the distribution. 00019 * Neither the name of University of the West of England, Bristol nor 00020 the names of its contributors may be used to endorse or promote products 00021 derived from this software without specific prior written permission. 00022 00023 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 00024 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 00025 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00026 DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF THE WEST OF ENGLAND, BRISTOL BE 00027 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00028 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 00029 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00030 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00031 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 00032 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00033 00034 This software makes use of third party libraries. For more information see: 00035 doc/license.txt included in the distribution. 00036 ------------------------------------------------------------------------------- 00037 */ 00038 00039 //#define PLANK_MEMORY_DEBUG 1 00040 00041 // help prevent accidental inclusion other than via the intended header 00042 #if PLANK_INLINING_FUNCTIONS 00043 00044 #include "../core/plank_Lock.h" 00045 00046 #if !DOXYGEN 00047 typedef struct PlankMemory 00048 { 00049 PlankMemoryAllocateBytesFunction allocFunction; 00050 PlankMemoryFreeFunction freeFunction; 00051 PlankP userData; 00052 PlankLock lock; 00053 } PlankMemory; 00054 #endif 00055 00056 static inline PlankB pl_MemoryCompare (PlankConstantP ptr1, PlankConstantP ptr2, const PlankUL numBytes) 00057 { 00058 return memcmp (ptr1, ptr2, numBytes) == 0 ? PLANK_TRUE : PLANK_FALSE; 00059 } 00060 00061 static inline PlankResult pl_MemoryZero (PlankP ptr, const PlankUL numBytes) 00062 { 00063 PlankUL i; 00064 PlankUC *dstp; 00065 00066 if (ptr == PLANK_NULL || numBytes == 0) 00067 return PlankResult_MemoryError; 00068 00069 // memset (ptr, 0, numBytes); 00070 00071 dstp = (PlankUC*)ptr; 00072 00073 for (i = 0; i < numBytes; ++i) 00074 dstp[i] = 0; 00075 00076 return PlankResult_OK; 00077 } 00078 00079 static inline PlankResult pl_MemoryCopy (PlankP dst, PlankConstantP src, const PlankUL numBytes) 00080 { 00081 PlankUL i; 00082 PlankUC *srcp, *dstp; 00083 00084 if (src == PLANK_NULL || dst == PLANK_NULL || numBytes == 0) 00085 return PlankResult_MemoryError; 00086 00087 // memcpy (dst, src, numBytes); 00088 00089 srcp = (PlankUC*)src; 00090 dstp = (PlankUC*)dst; 00091 00092 // alignment issue? 00093 for (i = 0; i < numBytes; ++i) 00094 dstp[i] = srcp[i]; 00095 00096 return PlankResult_OK; 00097 } 00098 00099 static inline PlankP pl_Memory_AllocateBytes (PlankMemoryRef p, PlankUL numBytes) 00100 { 00101 PlankP ptr; 00102 00103 ptr = (p->allocFunction) (p->userData, numBytes); 00104 00105 #if defined(PLANK_DEBUG) && PLANK_MEMORY_DEBUG 00106 printf ("pl_Memory_AllocateBytes(%p, %ld) = %p\n", p, numBytes, ptr); 00107 #endif 00108 00109 return ptr; 00110 } 00111 00112 static inline PlankResult pl_Memory_Free (PlankMemoryRef p, PlankP ptr) 00113 { 00114 #if defined(PLANK_DEBUG) && PLANK_MEMORY_DEBUG 00115 printf ("pl_Memory_Free(%p) = %p\n", p, ptr); 00116 #endif 00117 00118 (p->freeFunction) (p->userData, ptr); 00119 00120 return PlankResult_OK; 00121 } 00122 00123 #endif //PLANK_INLINING_FUNCTIONS 00124