forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stackstring.h
107 lines (88 loc) · 2.86 KB
/
stackstring.h
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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
// A string class that keeps all its memory on the stack and performs no
// memory allocation
//=============================================================================//
#ifndef STACKSTRING_H
#define STACKSTRING_H
#ifdef _WIN32
#pragma once
#endif
template< size_t cubSize >
class CStackString
{
public:
class CStackString() { Reset(); }
class CStackString( const char *pchRHS ) { Set( pchRHS ); }
void Reset() { m_rchBuffer[0] = 0; m_pchEnd = m_rchBuffer; }
void Set( const char *pchValue );
const char *Get() const { return m_rchBuffer; }
static size_t GetCubSize() { return cubSize; }
size_t Length() const { return m_pchEnd - &m_rchBuffer[0]; }
CStackString & operator=( const char *pchValue ) { Set( pchValue ); return *this; }
CStackString & operator+=( const char *pchValue ) { Append( pchValue ); return *this; }
operator const char*() const { return m_rchBuffer; }
void Format( PRINTF_FORMAT_STRING const char *pchFormat, ... );
void AppendFormat( PRINTF_FORMAT_STRING const char *pchFormat, ... );
void AppendFormatV( const char *pchFormat, va_list marker );
void Append( const char *pchValue );
void SetIndent( uint32 unCount, char chIndent = '\t' );
private:
char m_rchBuffer[ cubSize ];
char *m_pchEnd;
};
typedef CStackString<256> CStackString256;
typedef CStackString<512> CStackString512;
typedef CStackString<1024> CStackString1024;
typedef CStackString<8192> CStackStringMax;
template< size_t cubSize >
void CStackString<cubSize>::Set( const char *pchValue )
{
V_strcpy_safe( m_rchBuffer, pchValue );
m_pchEnd = &m_rchBuffer[Q_strlen(m_rchBuffer)];
}
template< size_t cubSize >
void CStackString<cubSize>::AppendFormatV( const char *pchFormat, va_list marker )
{
size_t cubPrinted = Q_vsnprintf( m_pchEnd, GetCubSize() - Length(), pchFormat, marker );
m_pchEnd += cubPrinted;
}
template< size_t cubSize >
void CStackString<cubSize>::Format( PRINTF_FORMAT_STRING const char *pchFormat, ... )
{
va_list marker;
va_start( marker, pchFormat );
size_t cubPrinted = Q_vsnprintf( m_rchBuffer, GetCubSize(), pchFormat, marker );
m_pchEnd = m_rchBuffer + cubPrinted;
va_end( marker );
}
template< size_t cubSize >
void CStackString<cubSize>::AppendFormat( PRINTF_FORMAT_STRING const char *pchFormat, ... )
{
va_list marker;
va_start( marker, pchFormat );
AppendFormatV( pchFormat, marker );
va_end( marker );
}
template< size_t cubSize >
void CStackString<cubSize>::Append( const char *pchValue )
{
Q_strcat( m_rchBuffer, pchValue, GetCubSize() );
m_pchEnd = m_rchBuffer + Q_strlen(m_rchBuffer);
}
template< size_t cubSize >
void CStackString<cubSize>::SetIndent( uint32 unCount, char chIndent )
{
Reset();
for ( uint32 x = 0; x < unCount && x < (GetCubSize()-1); x++ )
{
*m_pchEnd = chIndent;
m_pchEnd++;
}
*m_pchEnd = '\0';
}
#endif