gmqcc/util.c

229 lines
6 KiB
C
Raw Normal View History

2012-04-10 09:09:55 +00:00
/*
* Copyright (C) 2012
2012-04-17 20:24:22 +00:00
* Dale Weiler
2012-04-10 09:09:55 +00:00
*
* 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, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* 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. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
2012-04-11 19:53:40 +00:00
#include <stdarg.h>
2012-04-17 20:14:00 +00:00
#include <errno.h>
2012-04-10 09:09:55 +00:00
#include "gmqcc.h"
unsigned long long mem_ab = 0;
unsigned long long mem_db = 0;
unsigned long long mem_at = 0;
unsigned long long mem_dt = 0;
2012-04-10 09:09:55 +00:00
struct memblock_t {
2012-04-17 20:24:22 +00:00
const char *file;
unsigned int line;
unsigned int byte;
2012-04-10 09:09:55 +00:00
};
void *util_memory_a(unsigned int byte, unsigned int line, const char *file) {
struct memblock_t *info = malloc(sizeof(struct memblock_t) + byte);
void *data =(void*)((uintptr_t)info+sizeof(struct memblock_t));
2012-04-17 20:24:22 +00:00
if (!data) return NULL;
info->line = line;
info->byte = byte;
info->file = file;
2012-04-17 20:24:22 +00:00
2012-04-17 21:31:07 +00:00
util_debug("MEM", "allocation: % 8u (bytes) address 0x%08X @ %s:%u\n", byte, data, file, line);
mem_at++;
mem_ab += info->byte;
return data;
2012-04-10 09:09:55 +00:00
}
void util_memory_d(void *ptrn, unsigned int line, const char *file) {
2012-04-17 20:24:22 +00:00
if (!ptrn) return;
void *data = (void*)((uintptr_t)ptrn-sizeof(struct memblock_t));
struct memblock_t *info = (struct memblock_t*)data;
2012-04-17 21:31:07 +00:00
util_debug("MEM", "released: % 8u (bytes) address 0x%08X @ %s:%u\n", info->byte, data, file, line);
mem_db += info->byte;
mem_dt++;
2012-04-17 20:24:22 +00:00
free(data);
2012-04-10 09:09:55 +00:00
}
void util_meminfo() {
2012-04-20 05:20:22 +00:00
if (!opts_memchk)
return;
util_debug("MEM", "Memory information:\n\
Total allocations: %llu\n\
Total deallocations: %llu\n\
Total allocated: %llu (bytes)\n\
Total deallocated: %llu (bytes)\n",
mem_at, mem_dt,
mem_ab, mem_db
);
}
//#ifndef mem_d
//#define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
//#endif
//#ifndef mem_a
//#define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
//#endif
2012-04-10 09:09:55 +00:00
/*
* Some string utility functions, because strdup uses malloc, and we want
* to track all memory (without replacing malloc).
*/
char *util_strdup(const char *s) {
size_t len = 0;
char *ptr = NULL;
2012-04-17 20:24:22 +00:00
if (!s)
return NULL;
if ((len = strlen(s)) && (ptr = mem_a(len+1))) {
2012-04-17 20:24:22 +00:00
memcpy(ptr, s, len);
ptr[len] = '\0';
}
return ptr;
2012-04-10 09:09:55 +00:00
}
2012-04-11 19:53:40 +00:00
2012-04-15 21:47:14 +00:00
/*
2012-04-17 20:14:00 +00:00
* Remove quotes from a string, escapes from \ in string
2012-04-15 21:47:14 +00:00
* as well. This function shouldn't be used to create a
* char array that is later freed (it uses pointer arith)
*/
char *util_strrq(char *s) {
2012-04-17 20:24:22 +00:00
char *dst = s;
char *src = s;
char chr;
while ((chr = *src++) != '\0') {
if (chr == '\\') {
*dst++ = chr;
if ((chr = *src++) == '\0')
break;
*dst++ = chr;
} else if (chr != '"')
*dst++ = chr;
}
*dst = '\0';
return dst;
2012-04-15 21:47:14 +00:00
}
2012-04-17 20:14:00 +00:00
/*
* Remove newline from a string (if it exists). This is
* done pointer wise instead of strlen(), and an array
* access.
*/
char *util_strrnl(char *src) {
2012-04-17 20:24:22 +00:00
if (!src) return NULL;
char *cpy = src;
while (*cpy && *cpy != '\n')
cpy++;
*cpy = '\0';
return src;
2012-04-17 20:14:00 +00:00
}
void util_debug(const char *area, const char *ms, ...) {
2012-04-20 05:20:22 +00:00
if (!opts_debug)
return;
2012-04-17 20:24:22 +00:00
va_list va;
va_start(va, ms);
fprintf (stdout, "DEBUG: ");
fputc ('[', stdout);
fprintf(stdout, "%s", area);
2012-04-17 20:24:22 +00:00
fputs ("] ", stdout);
vfprintf(stdout, ms, va);
va_end (va);
2012-04-11 19:53:40 +00:00
}
2012-04-17 20:14:00 +00:00
/*
* Endianess swapping, all data must be stored little-endian. This
* reorders by stride and length, much nicer than other functions for
* certian-sized types like short or int.
*/
void util_endianswap(void *m, int s, int l) {
2012-04-19 22:03:30 +00:00
size_t w = 0;
size_t i = 0;
/* ignore if we're already LE */
if(*((char *)&s))
2012-04-19 22:03:30 +00:00
return;
for(; w < l; w++) {
2012-04-19 22:03:30 +00:00
for(; i < s << 1; i++) {
unsigned char *p = (unsigned char *)m+w*s;
unsigned char t = p[i];
p[i] = p[s-i-1];
p[s-i-1] = t;
}
}
}
2012-04-17 20:14:00 +00:00
/*
* Implements libc getline for systems that don't have it, which is
* assmed all. This works the same as getline().
*/
int util_getline(char **lineptr, size_t *n, FILE *stream) {
2012-04-17 20:24:22 +00:00
int chr;
int ret;
char *pos;
2012-04-17 20:14:00 +00:00
2012-04-17 20:24:22 +00:00
if (!lineptr || !n || !stream)
return -1;
if (!*lineptr) {
if (!(*lineptr = mem_a((*n = 64))))
return -1;
}
2012-04-17 20:14:00 +00:00
2012-04-17 20:24:22 +00:00
chr = *n;
pos = *lineptr;
2012-04-17 20:14:00 +00:00
2012-04-17 20:24:22 +00:00
for (;;) {
int c = getc(stream);
if (chr < 2) {
char *tmp = mem_a((*n+=(*n>16)?*n:64));
if (!tmp)
return -1;
chr = *n + *lineptr - pos;
strcpy(tmp,*lineptr);
2012-04-17 21:31:07 +00:00
if (!(*lineptr = tmp)) {
2012-04-19 22:03:30 +00:00
mem_d (tmp);
2012-04-17 20:24:22 +00:00
return -1;
2012-04-17 21:31:07 +00:00
}
2012-04-17 20:24:22 +00:00
pos = *n - chr + *lineptr;
}
2012-04-17 20:14:00 +00:00
2012-04-17 21:31:07 +00:00
if (ferror(stream))
2012-04-17 20:24:22 +00:00
return -1;
if (c == EOF) {
if (pos == *lineptr)
return -1;
else
break;
}
2012-04-17 20:14:00 +00:00
2012-04-17 20:24:22 +00:00
*pos++ = c;
chr--;
if (c == '\n')
break;
}
*pos = '\0';
return (ret = pos - *lineptr);
2012-04-17 20:14:00 +00:00
}