zoneminder/src/zm_mem_utils.h

146 lines
3.5 KiB
C
Raw Normal View History

2013-03-17 07:45:21 +08:00
//
// ZoneMinder Memory Utilities, $Date$, $Revision$
// Copyright (C) 2001-2008 Philip Coombes
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2013-03-17 07:45:21 +08:00
//
#ifndef ZM_MEM_UTILS_H
#define ZM_MEM_UTILS_H
#include <stdlib.h>
#include "zm.h"
inline void* zm_mallocaligned(unsigned int reqalignment, size_t reqsize) {
uint8_t* retptr;
2013-03-17 07:45:21 +08:00
#if HAVE_POSIX_MEMALIGN
2017-11-19 05:00:10 +08:00
if ( posix_memalign((void**)&retptr,reqalignment,reqsize) != 0 )
return NULL;
return retptr;
2013-03-17 07:45:21 +08:00
#else
uint8_t* alloc;
retptr = (uint8_t*)malloc(reqsize+reqalignment+sizeof(void*));
2017-11-19 05:00:10 +08:00
if ( retptr == NULL )
return NULL;
alloc = retptr + sizeof(void*);
if(((long)alloc % reqalignment) != 0)
alloc = alloc + (reqalignment - ((long)alloc % reqalignment));
/* Store a pointer before to the start of the block, just before returned aligned memory */
*(void**)(alloc - sizeof(void*)) = retptr;
return alloc;
2013-03-17 07:45:21 +08:00
#endif
}
inline void zm_freealigned(void* ptr) {
#if HAVE_POSIX_MEMALIGN
free(ptr);
2013-03-17 07:45:21 +08:00
#else
/* Start of block is stored before the block if it was allocated by zm_mallocaligned */
free(*(void**)((uint8_t*)ptr - sizeof(void*)));
2013-03-17 07:45:21 +08:00
#endif
}
2017-11-19 05:00:10 +08:00
inline char *mempbrk( register const char *s, const char *accept, size_t limit ) {
if ( limit == 0 || !s || !accept || !*accept )
return 0;
2013-03-17 07:45:21 +08:00
register unsigned int i,j;
size_t acc_len = strlen( accept );
2013-03-17 07:45:21 +08:00
2017-11-19 05:00:10 +08:00
for ( i = 0; i < limit; s++, i++ ) {
for ( j = 0; j < acc_len; j++ ) {
if ( *s == accept[j] ) {
return( (char *)s );
}
2013-03-17 07:45:21 +08:00
}
}
return( 0 );
2013-03-17 07:45:21 +08:00
}
2017-11-19 05:00:10 +08:00
inline char *memstr( register const char *s, const char *n, size_t limit ) {
if ( limit == 0 || !s || !n )
return( 0 );
2013-03-17 07:45:21 +08:00
if ( !*n )
return( (char *)s );
2013-03-17 07:45:21 +08:00
register unsigned int i,j,k;
size_t n_len = strlen( n );
2013-03-17 07:45:21 +08:00
2017-11-19 05:00:10 +08:00
for ( i = 0; i < limit; i++, s++ ) {
if ( *s != *n )
continue;
j = 1;
k = 1;
2017-11-19 05:00:10 +08:00
while ( true ) {
if ( k >= n_len )
return( (char *)s );
if ( s[j++] != n[k++] )
break;
2013-03-17 07:45:21 +08:00
}
}
return( 0 );
2013-03-17 07:45:21 +08:00
}
2017-11-19 05:00:10 +08:00
inline size_t memspn( register const char *s, const char *accept, size_t limit ) {
if ( limit == 0 || !s || !accept || !*accept )
return( 0 );
2013-03-17 07:45:21 +08:00
register unsigned int i,j;
size_t acc_len = strlen( accept );
2013-03-17 07:45:21 +08:00
2017-11-19 05:00:10 +08:00
for ( i = 0; i < limit; s++, i++ ) {
register bool found = false;
2017-11-19 05:00:10 +08:00
for ( j = 0; j < acc_len; j++ ) {
if ( *s == accept[j] ) {
found = true;
break;
}
2013-03-17 07:45:21 +08:00
}
2017-11-19 05:00:10 +08:00
if ( !found ) {
return( i );
}
}
return( limit );
2013-03-17 07:45:21 +08:00
}
2017-11-19 05:00:10 +08:00
inline size_t memcspn( register const char *s, const char *reject, size_t limit ) {
if ( limit == 0 || !s || !reject )
return( 0 );
2013-03-17 07:45:21 +08:00
if ( !*reject )
return( limit );
2013-03-17 07:45:21 +08:00
register unsigned int i,j;
size_t rej_len = strlen( reject );
2013-03-17 07:45:21 +08:00
2017-11-19 05:00:10 +08:00
for ( i = 0; i < limit; s++, i++ ) {
for ( j = 0; j < rej_len; j++ ) {
if ( *s == reject[j] ) {
return( i );
}
2013-03-17 07:45:21 +08:00
}
}
return( limit );
2013-03-17 07:45:21 +08:00
}
#endif // ZM_MEM_UTILS_H