forked from NTDLS/NSWFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSWFL_Memory.Cpp
121 lines (96 loc) · 3.55 KB
/
NSWFL_Memory.Cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2023, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _NSWFL_MEMORY_CPP_
#define _NSWFL_MEMORY_CPP_
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "NSWFL.H"
#ifdef _USE_GLOBAL_MEMPOOL
extern NSWFL::Memory::MemoryPool *pMem; //pMem must be defined and initalized elsewhere.
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace NSWFL {
namespace Memory {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void *ClearMem(void *vBuffer, int iBufSz)
{
for (int iWPos = 0; iWPos < iBufSz; iWPos++)
{
((char *)vBuffer)[iWPos] = 0;
}
return vBuffer;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
Destroys the given key by overwriting it with random data before initializing it to 0's.
*/
void NukeMem(void *pBuf, size_t iBufSz)
{
if (pBuf)
{
srand((DWORD)(GetTickCount() + iBufSz));
for (size_t iWPos = 0; iWPos < iBufSz; iWPos++)
{
((BYTE *)pBuf)[iWPos] = (BYTE)(rand() % 255);
}
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
See overload NukeMem()
*/
void NukeMem(char *sBuf)
{
NukeMem(sBuf, strlen(sBuf));
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void *MemCopy(void *vTarget, void *vSource, int iLen)
{
for (int iPos = 0; iPos < iLen; iPos++)
{
((char *)vTarget)[iPos] = ((char *)vSource)[iPos];
}
return vTarget;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void *MemDup(const void* d, size_t s)
{
void* p;
return ((p = malloc(s)) ? memcpy(p, d, s) : NULL);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int MemCopyLong(char *sOutBuf, long lIn)
{
int iWPos = 0;
long lBuf = 0;
if (lIn < 0)
{
lBuf = (0 - lIn);
}
else lBuf = lIn;
do {
sOutBuf[iWPos++] = '0' + (int)(lBuf % 10);
lBuf /= 10;
} while (lBuf != 0);
if (lIn < 0)
{
sOutBuf[iWPos++] = '-';
}
NSWFL::String::ReverseString(sOutBuf, iWPos);
sOutBuf[iWPos] = '\0';
return iWPos;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int MemCopyInt(char *sOutBuf, int iIn)
{
return NSWFL::Memory::MemCopyLong(sOutBuf, (long)iIn);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} //namespace::Memory
} //namespace::NSWFL
#endif