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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
#include <ntddk.h>
#include <EASTL/string.h>
#include <eastl_compat.hpp>
#include <DriverThread.hpp>
class TestSmth
{
public:
TestSmth()
{
DbgPrint("%s\n", "ctor");
}
~TestSmth()
{
DbgPrint("%s\n", "dtor");
}
void doSmth(void)
{
DbgPrint("%s\n", "Hello Class!");
const auto & eastl_to_string = eastl::to_string(0xDEADC0DE);
DbgPrint("Using eastl::to_string should return a warning: %s\n", eastl_to_string.c_str());
const auto & number_ud = ::to_string(1337u);
DbgPrint("Value 1337u to String: %s\n", number_ud.c_str());
const auto & number_d = ::to_string(1337);
DbgPrint("Value 1337 to String: %s\n", number_d.c_str());
const auto & number_l = ::to_string(1337l);
DbgPrint("Value 1337l to String: %s\n", number_l.c_str());
const auto & number_lu = ::to_string(1337lu);
DbgPrint("Value 1337lu to String: %s\n", number_lu.c_str());
const auto & number_ll = ::to_string(1337ll);
DbgPrint("Value 1337ll to String: %s\n", number_ll.c_str());
const auto & number_llu = ::to_string(1337llu);
DbgPrint("Value 1337llu to String: %s\n", number_llu.c_str());
const auto & number_f = ::to_string(1337.1337f);
DbgPrint("Value 1337f to String: %s\n", number_f.c_str());
const auto & number_lf = ::to_string(1337.1337);
DbgPrint("Value 1337lf to String: %s\n", number_lf.c_str());
}
};
static TestSmth * cdtor_test;
class Derived : public TestSmth
{
public:
Derived()
{
}
~Derived()
{
}
void doSmth(void)
{
DbgPrint("%s\n", "Hello Derived!");
}
};
class DerivedWithCDtor : public Derived
{
public:
explicit DerivedWithCDtor(unsigned int value)
{
some_value = value;
DbgPrint("%s\n", "DerivedWithCDtor-Ctor.");
}
~DerivedWithCDtor()
{
DbgPrint("%s\n", "DerivedWithCDtor-Dtor.");
}
void doSmth(void)
{
DbgPrint("SomeValue: %X\n", some_value);
}
private:
unsigned int some_value = 0;
};
class MyWorkItem
{
public:
MyWorkItem()
{
DbgPrint("MyWorkItem ctor\n");
}
~MyWorkItem()
{
DbgPrint("MyWorkItem dtor\n");
}
UINT32 counter = 0, another_counter = 0;
};
static DriverThread::WorkQueue global_work_queue;
static DerivedWithCDtor some_static(0xDEADC0DE);
class threadContext : public DriverThread::ThreadArgs
{
public:
DriverThread::Semaphore sem;
DriverThread::Thread dth;
};
static NTSTATUS threadRoutine(eastl::shared_ptr<DriverThread::ThreadArgs> args)
{
DbgPrint("ThreadRoutine %p, ThreadContext: %p\n", threadRoutine, args);
auto ctx = eastl::static_pointer_cast<threadContext>(args);
for (size_t i = 3; i > 0; --i)
{
DbgPrint("ThreadLoop: %zu (isRunning: %u)\n", i, ctx->dth.isRunning());
}
DbgPrint("Fin. ThreadId: %p\n", ctx->dth.GetThreadId());
ctx->sem.Release();
DbgPrint("Thread WaitForTermination: 0x%X\n", ctx->dth.WaitForTermination()); // must return STATUS_UNSUCCESSFUL;
return STATUS_SUCCESS;
}
static void test_cplusplus(void)
{
TestSmth t;
t.doSmth();
Derived d;
d.doSmth();
auto ctx = eastl::make_shared<threadContext>();
ctx->dth.Start(threadRoutine, ctx);
ctx->sem.Wait();
DbgPrint("MainThread semaphore signaled.\n");
ctx->dth.WaitForTermination();
ctx->dth.WaitForTermination();
DbgPrint("MainThread EOF\n");
DriverThread::WorkQueue work_queue;
DbgPrint("WorkQueue test.\n");
{
DriverThread::WorkItem wi(eastl::make_shared<MyWorkItem>());
auto user = wi.Get<MyWorkItem>();
user->counter = 3;
user->another_counter = 1;
work_queue.Enqueue(wi);
global_work_queue.Enqueue(wi);
}
{
eastl::deque<DriverThread::WorkItem> items;
for (size_t i = 1; i < 3; ++i)
{
DriverThread::WorkItem wi(eastl::make_shared<MyWorkItem>());
auto user = wi.Get<MyWorkItem>();
user->counter = 3 + i;
user->another_counter = 1 + i;
items.emplace_back(wi);
}
work_queue.Enqueue(items);
global_work_queue.Enqueue(items);
}
work_queue.Start(
[](DriverThread::WorkItem & item)
{
DbgPrint("Worker callback.\n");
eastl::shared_ptr<MyWorkItem> wi;
item.Get<MyWorkItem>(wi);
while (wi->counter-- > 0)
{
DbgPrint("WorkItem Counter: %u\n", wi->counter);
}
DbgPrint("Worker finished.\n");
return STATUS_SUCCESS;
});
work_queue.Stop();
global_work_queue.Start(
[](DriverThread::WorkItem & item)
{
DbgPrint("Global Worker callback.\n");
eastl::shared_ptr<MyWorkItem> wi;
item.Get<MyWorkItem>(wi);
while (wi->another_counter-- > 0)
{
DbgPrint("WorkItem Another Counter: %u\n", wi->another_counter);
}
DbgPrint("Global Worker finished.\n");
return STATUS_SUCCESS;
});
some_static.doSmth();
}
extern "C"
{
DRIVER_INITIALIZE DriverEntry;
DRIVER_UNLOAD DriverUnload;
NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
{
(void)DriverObject;
(void)RegistryPath;
DbgPrint("%s\n", "Hello ring0!");
cdtor_test = new TestSmth();
test_cplusplus();
return STATUS_SUCCESS;
}
VOID DriverUnload(PDRIVER_OBJECT DriverObject)
{
(void)DriverObject;
delete cdtor_test;
DbgPrint("%s\n", "Bye ring0!");
}
}
|