2022-10-13 13:09:26 +00:00
|
|
|
/*
|
2022-12-26 15:52:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
2022-10-13 13:09:26 +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 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.
|
|
|
|
*/
|
2022-10-13 01:29:05 +00:00
|
|
|
#ifndef TELODENDRIA_MEMORY_H
|
|
|
|
#define TELODENDRIA_MEMORY_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2022-10-13 12:50:27 +00:00
|
|
|
typedef enum MemoryAction
|
|
|
|
{
|
2022-10-13 13:09:26 +00:00
|
|
|
MEMORY_ALLOCATE,
|
|
|
|
MEMORY_REALLOCATE,
|
2022-10-28 18:07:44 +00:00
|
|
|
MEMORY_FREE,
|
|
|
|
MEMORY_BAD_POINTER
|
2022-10-13 12:50:27 +00:00
|
|
|
} MemoryAction;
|
|
|
|
|
2022-10-15 13:34:47 +00:00
|
|
|
#define Malloc(x) MemoryAllocate(x, __FILE__, __LINE__)
|
2022-10-31 15:07:32 +00:00
|
|
|
#define Realloc(x, s) MemoryReallocate(x, s, __FILE__, __LINE__)
|
2022-10-31 23:52:37 +00:00
|
|
|
#define Free(x) MemoryFree(x, __FILE__, __LINE__)
|
2022-10-13 01:29:05 +00:00
|
|
|
|
|
|
|
typedef struct MemoryInfo MemoryInfo;
|
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern void *
|
|
|
|
MemoryAllocate(size_t, const char *, int);
|
2022-10-13 01:29:05 +00:00
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern void *
|
|
|
|
MemoryReallocate(void *, size_t, const char *, int);
|
2022-10-13 01:29:05 +00:00
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern void
|
|
|
|
MemoryFree(void *, const char *, int);
|
2022-10-13 01:29:05 +00:00
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern size_t
|
|
|
|
MemoryAllocated(void);
|
2022-10-13 01:29:05 +00:00
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern void
|
|
|
|
MemoryFreeAll(void);
|
2022-10-13 01:29:05 +00:00
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern MemoryInfo *
|
|
|
|
MemoryInfoGet(void *);
|
2022-10-13 12:50:27 +00:00
|
|
|
|
2023-01-09 21:39:59 +00:00
|
|
|
extern size_t
|
|
|
|
MemoryInfoGetSize(MemoryInfo *);
|
|
|
|
|
|
|
|
extern const char *
|
|
|
|
MemoryInfoGetFile(MemoryInfo *);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
MemoryInfoGetLine(MemoryInfo *);
|
|
|
|
|
|
|
|
extern void *
|
|
|
|
MemoryInfoGetPointer(MemoryInfo *);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
MemoryIterate(void (*) (MemoryInfo *, void *), void *);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
MemoryHook(void (*) (MemoryAction, MemoryInfo *, void *), void *);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
MemoryHexDump(MemoryInfo *, void (*) (size_t, char *, char *, void *), void *);
|
2023-01-01 22:10:23 +00:00
|
|
|
|
2022-10-13 01:29:05 +00:00
|
|
|
#endif
|