]> git.xonotic.org Git - xonotic/gmqcc.git/blob - util.c
Updated README
[xonotic/gmqcc.git] / util.c
1 /*
2  * Copyright (C) 2012 
3  *      Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include <stdarg.h>
24 #include "gmqcc.h"
25  
26 struct memblock_t {
27         const char  *file;
28         unsigned int line;
29         unsigned int byte;
30 };
31
32 void *util_memory_a(unsigned int byte, unsigned int line, const char *file) {
33         struct memblock_t *data = malloc(sizeof(struct memblock_t) + byte);
34         if (!data) return NULL;
35         data->line = line;
36         data->byte = byte;
37         data->file = file;
38         
39         util_debug("MEM", "allocation: %08u (bytes) at %s:%u\n", byte, file, line);
40         return (void*)((uintptr_t)data+sizeof(struct memblock_t));
41 }
42
43 void util_memory_d(void *ptrn, unsigned int line, const char *file) {
44         if (!ptrn) return;
45         void              *data = (void*)((uintptr_t)ptrn-sizeof(struct memblock_t));
46         struct memblock_t *info = (struct memblock_t*)data;
47         
48         util_debug("MEM", "released:   %08u (bytes) at %s:%u\n", info->byte, file, line);
49         free(data);
50 }
51
52 #ifndef mem_d
53 #define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
54 #endif
55 #ifndef mem_a
56 #define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
57 #endif
58
59 /*
60  * Some string utility functions, because strdup uses malloc, and we want
61  * to track all memory (without replacing malloc).
62  */
63 char *util_strdup(const char *s) {
64         size_t  len;
65         char   *ptr;
66         
67         if (!s)
68                 return NULL;
69                 
70         len = strlen(s);
71         ptr = mem_a (len+1);
72         
73         if (ptr && len) {
74                 memcpy(ptr, s, len);
75                 ptr[len] = '\0';
76         }
77         
78         return ptr;
79 }
80
81 /*
82  * Removed quotes from a string, escapes from \ in string
83  * as well.  This function shouldn't be used to create a
84  * char array that is later freed (it uses pointer arith)
85  */
86 char *util_strrq(char *s) {
87         char *dst = s;
88         char *src = s;
89         char  chr;
90         while ((chr = *src++) != '\0') {
91                 if (chr == '\\') {
92                         *dst++ = chr;
93                         if ((chr = *src++) == '\0')
94                                 break;
95                         *dst++ = chr;
96                 } else if (chr != '"')
97                         *dst++ = chr;
98         }
99         *dst = '\0';
100         return dst;
101 }
102
103 void util_debug(const char *area, const char *ms, ...) {
104         va_list  va;
105         va_start(va, ms);
106         fprintf (stdout, "DEBUG: ");
107         fputc   ('[',  stdout);
108         fprintf (stdout, area);
109         fputs   ("] ", stdout);
110         vfprintf(stdout, ms, va);
111         va_end  (va);
112 }