forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonPlatform.h
More file actions
138 lines (106 loc) · 3.8 KB
/
Copy pathCommonPlatform.h
File metadata and controls
138 lines (106 loc) · 3.8 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
//-----------------------------------------------------------------------------
// standard library headers
//-----------------------------------------------------------------------------
#include <algorithm>
#include <codecvt>
#include <cstdint>
#include <functional>
#include <queue>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
//-----------------------------------------------------------------------------
// global macros
//-----------------------------------------------------------------------------
#define PROHIBIT_CONSTRUCT(CLASS) \
private: \
CLASS();
//-----------------------------------------------------------------------------
#define PROHIBIT_HEAP(CLASS) \
private: \
void* operator new(size_t size); \
void operator delete(void*, size_t);
//-----------------------------------------------------------------------------
#define PROHIBIT_COPY(CLASS) \
private: \
CLASS(const CLASS& that); \
const CLASS& operator=(const CLASS& that);
//-----------------------------------------------------------------------------
#define IGNORE_UNUSED(NAME) ((void)(NAME))
#ifdef _DEBUG
#define ASSERT_EVAL _ASSERTE
#define DEBUG_EVAL IGNORE_UNUSED
#else // !_DEBUG
#define ASSERT_EVAL IGNORE_UNUSED
#define DEBUG_EVAL _ASSERTE
#endif // !_DEBUG
//-----------------------------------------------------------------------------
#ifndef DECLSPEC_NORETURN
#define DECLSPEC_NORETURN __declspec(noreturn)
#endif // !DECLSPEC_NORETURN
//-----------------------------------------------------------------------------
#define BEGIN_COMPOUND_MACRO \
do \
{
#define END_COMPOUND_MACRO \
__pragma(warning(disable:4127)) /* conditional expression is constant */ \
} \
while (false) \
__pragma(warning(default:4127))
//-----------------------------------------------------------------------------
// global helper functions
//-----------------------------------------------------------------------------
template <typename TFlag>
inline TFlag CombineFlags(TFlag flag1, TFlag flag2)
{
using TUnderlying = std::underlying_type_t<TFlag>;
return static_cast<TFlag>(static_cast<TUnderlying>(flag1) | static_cast<TUnderlying>(flag2));
}
//-----------------------------------------------------------------------------
template <typename TFlag, typename... TOthers>
inline TFlag CombineFlags(TFlag flag1, TFlag flag2, TOthers... others)
{
return CombineFlags(flag1, CombineFlags(flag2, others...));
}
//-----------------------------------------------------------------------------
// PulseValueScope
//-----------------------------------------------------------------------------
template <typename T>
class PulseValueScope
{
PROHIBIT_COPY(PulseValueScope)
PROHIBIT_HEAP(PulseValueScope)
public:
PulseValueScope(T* pValue, const T& value):
m_pValue(pValue),
m_OriginalValue(std::move(*pValue))
{
*m_pValue = value;
}
PulseValueScope(T* pValue, T&& value):
m_pValue(pValue),
m_OriginalValue(std::move(*pValue))
{
*m_pValue = std::move(value);
}
~PulseValueScope()
{
*m_pValue = std::move(m_OriginalValue);
}
private:
T* m_pValue;
T m_OriginalValue;
};
//-----------------------------------------------------------------------------
#define BEGIN_PULSE_VALUE_SCOPE(ADDRESS, VALUE) \
{ \
__pragma(warning(disable:4456)) /* declaration hides previous local declaration */ \
PulseValueScope<std::remove_reference<decltype(*(ADDRESS))>::type> t_PulseValueScope((ADDRESS), (VALUE)); \
__pragma(warning(default:4456))
#define END_PULSE_VALUE_SCOPE \
IGNORE_UNUSED(t_PulseValueScope); \
}