-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
443 lines (333 loc) · 11.9 KB
/
main.cpp
File metadata and controls
443 lines (333 loc) · 11.9 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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#include <iostream>
#include "Patterns.h"
#include <cstdlib>
#include <ctime>
using namespace std;
// Абстрактный класс для входа с устройства
class LoggingStrategy
{
public:
// Инкапсуляция enum class в абстрактный класс, для того, чтобы он работал только в унаследованных классах
enum class DeviceEnum : int
{
Undefined,
Laptop,
Smartphone,
TV,
Tablet
};
virtual ~LoggingStrategy() {};
virtual void Login() =0;
};
class LaptopLoggingStrategy : public LoggingStrategy
{
public:
void Login() override {cout <<"Laptop booting with hard drive..." << endl;}
};
class SmartphoneLoggingStrategy : public LoggingStrategy
{
public:
void Login() override {cout <<"Smartphone booting with memory disk..." << endl;}
};
class TvLoggingStrategy : public LoggingStrategy
{
public:
void Login() override {cout <<"TV booting with CD disk..." << endl;}
};
class TabletLoggingStrategy : public LoggingStrategy
{
public:
void Login() override {cout <<"Tablet booting with memory disk..." << endl;}
};
// Фабричная функция для способа входа
LoggingStrategy *CreateLoggingStrategy(LoggingStrategy::DeviceEnum device)
{
LoggingStrategy * newDevice = nullptr;
if (device == LoggingStrategy::DeviceEnum::Laptop)
{
newDevice = new LaptopLoggingStrategy();
}
else if (device == LoggingStrategy::DeviceEnum::Smartphone)
{
newDevice = new SmartphoneLoggingStrategy();
}
else if (device == LoggingStrategy::DeviceEnum::TV)
{
newDevice = new TvLoggingStrategy();
}
else if (device == LoggingStrategy::DeviceEnum::Tablet)
{
newDevice = new TabletLoggingStrategy();
}
return newDevice;
}
class DistribKit
{
public:
// Инкапсуляция enum class в абстрактный класс, для того, чтобы он работал только в унаследованных классах
enum class Username : int
{
Root,
DebianUser,
KaliUser,
CentosUser
};
enum class OsType : int
{
Undefined=0,
Debian=1,
Kali=2,
Centos=3
};
// Конструктом с параметром
DistribKit(Username user):StatusIsActive(static_cast<bool>(rand()%2)), StableVer(0.0), User(user),LoginMethod(nullptr) {}
// Деструктор
virtual ~DistribKit() {if(LoginMethod !=nullptr) delete LoginMethod;}
// Геттеры
virtual double GetStableVer() {return StableVer;}
Username GetUser() {return User;}
bool GetStatus() {return StatusIsActive;}
void SetLoginMethod(LoggingStrategy *method) {LoginMethod = method;}
void Connect()
{
// Вывод названия ОС
PrintType();
cout <<"| |";
// Проверка статуса ОС
StatusCheck();
cout <<"| |";
// Место входа в ОС
EntryPoint();
cout <<"| |";
// Подключиться с устройства
ConnectFromDevice();
cout << endl;
}
protected:
bool StatusIsActive;
private:
double StableVer;
Username User;
LoggingStrategy *LoginMethod;
void ConnectFromDevice()
{
if(LoginMethod == nullptr)
{
cout << "Any device doesn't launched..." << endl;
return;
}
else
{
LoginMethod->Login();
}
};
void StatusCheck()
{
if (GetStatus())
{
cout << "Connecting to ACTIVE os" << endl;
}
else
{
cout <<"Connecting to UNACTIVE os" << endl;
}
};
virtual void PrintType() = 0;
virtual void EntryPoint() = 0;
};
class Debian : public DistribKit
{
public:
Debian() : DistribKit(Username::DebianUser)
{
// Определим метод входа по умолчанию
SetLoginMethod(CreateLoggingStrategy(LoggingStrategy::DeviceEnum::Laptop));
}
~Debian() {}
void PrintType() override {cout << "Debian" << endl;}
void EntryPoint() override {cout << "Connection from home " << endl;}
double GetStableVer() override {return StableVer;}
private:
double StableVer = 12.4;
};
class Kali : public DistribKit
{
public:
Kali() : DistribKit(Username::KaliUser)
{
// Определим метод входа по умолчани
SetLoginMethod(CreateLoggingStrategy(LoggingStrategy::DeviceEnum::Smartphone));
}
~Kali() {}
void PrintType() override {cout << "Kali" << endl;}
void EntryPoint() override {cout << "Connection from office " << endl;}
double GetStableVer() override {return StableVer;}
private:
double StableVer = 2023.3;
};
class Centos : public DistribKit
{
public:
Centos() : DistribKit(Username::CentosUser)
{
// Определим метод входа по умолчани
SetLoginMethod(CreateLoggingStrategy(LoggingStrategy::DeviceEnum::TV));
}
~Centos() {}
void PrintType() override {cout << "Centos" << endl;}
void EntryPoint() override {cout << "Connection from country house " << endl;}
double GetStableVer() override {return StableVer;}
private:
double StableVer = 12.4;
};
// Фабричная функция
DistribKit * CreateOS(DistribKit::OsType type)
{
DistribKit* newOS = nullptr;
if (type == DistribKit::OsType::Centos)
{
newOS = new Centos();
}
else if (type == DistribKit::OsType::Debian)
{
newOS = new Debian();
}
else if (type == DistribKit::OsType::Kali)
{
newOS = new Kali();
}
return newOS;
}
// Декоратор по username
class UserDecorator : public IteratorDecorator<DistribKit*>
{
public:
UserDecorator(Iterator<DistribKit*> *it, DistribKit::Username user): IteratorDecorator<DistribKit*>(it), TargetUser(user) {}
void FirstEl() override
{
It->FirstEl();
while (!It->IsDone() && It->GetCurrentElement()->GetUser() != TargetUser)
{
It->NextEl();
}
}
void NextEl() override
{
do
{
It->NextEl();
} while(!It->IsDone() && It->GetCurrentElement()->GetUser() != TargetUser);
}
private:
DistribKit::Username TargetUser;
};
// Декоратор для активных ОС
class ActiveOsDecorator : public IteratorDecorator<DistribKit*>
{
public:
ActiveOsDecorator(Iterator<DistribKit*>* it,bool status ) : IteratorDecorator<DistribKit*>(it), TargetStatus(status) {}
void FirstEl() override
{
It->FirstEl();
while(!It->IsDone() && It->GetCurrentElement()->GetStatus() != TargetStatus)
{
It->NextEl();
}
}
void NextEl() override
{
do {
It->NextEl();
} while(!It->IsDone() && It->GetCurrentElement()->GetStatus() != TargetStatus);
}
private:
bool TargetStatus;
};
// Декоратор стабильной версии
class StableVerDecorator : public IteratorDecorator<DistribKit*>
{
private:
double TargetStableVer; // Целевая версия, по которой фильтруются элементы
public:
StableVerDecorator(Iterator<DistribKit*>*it, double ver) : IteratorDecorator<DistribKit*>(it), TargetStableVer(ver) {}
void FirstEl() override
{
It->FirstEl();
// Пропускаем элементы, пока не дойдем до конца или не найдем подходящий
while(!It->IsDone() && It->GetCurrentElement()->GetStableVer() != TargetStableVer)
{
It->NextEl(); // Переход к следующему элементу
};
}
void NextEl() override
{
do {
It->NextEl(); // Переход к след. элементу
// Пропускаем элементы, пока не дойдем до конца или не найдем подходящий
} while (!It->IsDone() && It->GetCurrentElement()->GetStableVer() != TargetStableVer);
}
};
void ConnectEmAll(Iterator<DistribKit*> *it)
{ // Выставляем итератор на 1 место, пока не дойдет до конца, переходим к след.элементу
for(it->FirstEl(); !it->IsDone(); it->NextEl())
{ // Передаем currentOS текущий элемент
DistribKit* currentOS = it->GetCurrentElement();
// Подключаем текущий элемент
currentOS->Connect();
}
}
main()
{
// Случайный seed от времени
srand(time(0));
setlocale(LC_ALL,"Russian");
size_t N = 0;
wcout << L"Введите количество OS:" << endl;
cin >> N;
StackClass<DistribKit*> OsStack;
// Заполняем стек
for(size_t i=0;i<N;i++)
{
int os_num = rand()%3+1; // Рандомное число от 1 до 3
// Явно приводим рандомное число к типу OsType
DistribKit::OsType os_type = static_cast<DistribKit::OsType>(os_num);
// Вызываем фабричную функцию для этого числа
DistribKit *newOS = CreateOS(os_type);
// Добавляем ОС в стэк
OsStack.Push(newOS);
}
wcout << L"Размер стека OS:" << OsStack.GetSize() << endl;
cout << endl;
wcout << L"Подключиться только от лица DebianUser" << endl;
// Создает декорированный итератор, который фильтрует только пользователей DebianUser
Iterator<DistribKit*> *debIt = new UserDecorator(OsStack.GetIterator(),DistribKit::Username::DebianUser);
// Вызывает функцию подключения для отфилтрованных пользователей
ConnectEmAll(debIt);
delete debIt;
cout << endl;
wcout << L"Подключиться только к активным ОС" << endl;
Iterator<DistribKit*>* activIt = new ActiveOsDecorator(OsStack.GetIterator(),true);
ConnectEmAll(activIt);
delete activIt;
cout<<endl;
wcout << L"Подключиться только к ОС со стабильной версией 12.4" << endl;
Iterator<DistribKit*>* stabIt = new StableVerDecorator(OsStack.GetIterator(),12.4);
ConnectEmAll(stabIt);
delete stabIt;
// Связанный список ОС для адаптера
VectorClass<DistribKit*> OsVector;
for(size_t i=0;i<N;i++)
{
int os_num = rand()%3+1;
DistribKit::OsType os_type = static_cast<DistribKit::OsType>(os_num);
DistribKit* newOS = CreateOS(os_type);
OsVector.Push(newOS);
}
// Демонстрация работы адаптера
wcout << endl << L"Подключение ко всем активным ОС от лица DebianUser" << endl;
// Сохраняем в указателе адптированный итератор, возвращающий указатели на абстрактный класс
Iterator<DistribKit*> *adaptedIt = new ConstIterAdapter<VectorClass<DistribKit*>, DistribKit*>(&OsVector);
Iterator<DistribKit*> *adaptedDebIt = new ActiveOsDecorator(new UserDecorator(adaptedIt, DistribKit::Username::DebianUser),true);
ConnectEmAll(adaptedDebIt);
delete adaptedDebIt;
}