-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingleton.h
94 lines (74 loc) · 2.28 KB
/
Singleton.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
#pragma once
#include <iostream>
#include <fstream>
using namespace std;
class Singleton {
private:
string data;
static Singleton* _instance;
protected:
Singleton() {
data = " ";
}
public:
//ïðîâåðêà, íå ñîçäàí ëè ýêçåìïëÿð
static Singleton* instance() {
if (_instance == nullptr) { //åñëè íåò
_instance = new Singleton();
return _instance;
}
else return nullptr;
}
void SingletonOperation(string s, bool status) {
time_t now = time(0);
tm* t = new tm;
localtime_s(t, &now);
ofstream record("log.txt", ios::app);
if (record) {
record << "Operation type: " << s << endl;
record << "Äàòà: ";
if (t->tm_mday < 10) record << "0" << t->tm_mday << ".";
else record << t->tm_mday << ".";
record << 1 + t->tm_mon << "." << 1900 + t->tm_year << endl;
record << "Âðåìÿ: ";
if (t->tm_hour < 10) record << "0" << t->tm_hour << ":";
else record << t->tm_hour << ":";
if (t->tm_min < 10) record << "0" << t->tm_min << ":";
else record << t->tm_min << ":";
if (t->tm_sec < 10) record << "0" << t->tm_sec << endl;
else record << t->tm_sec << endl;
if (status) record << "Status:" << "\tSuccess" << endl << endl;
else record << "Status:" << "\tFail" << endl << endl;
}
record.close();
}
template <typename T>
void SingletonOperation(string s, bool status, T) {
time_t now = time(0);
tm* t = new tm;
localtime_s(t, &now);
ofstream record("log.txt", ios::app);
if (record) {
record << "Operation type: " << s << endl;
record << "Äàòà: ";
if (t->tm_mday < 10) record << "0" << t->tm_mday << ".";
else record << t->tm_mday << ".";
record << 1 + t->tm_mon << "." << 1900 + t->tm_year << endl;
record << "Âðåìÿ: ";
if (t->tm_hour < 10) record << "0" << t->tm_hour << ":";
else record << t->tm_hour << ":";
if (t->tm_min < 10) record << "0" << t->tm_min << ":";
else record << t->tm_min << ":";
if (t->tm_sec < 10) record << "0" << t->tm_sec << endl;
else record << t->tm_sec << endl;
record << T << endl;
if (status) record << "Status:" << "\tSuccess" << endl << endl;
else record << "Status:" << "\tFail" << endl << endl;
}
record.close();
}
//äåñòðóêòîð
~Singleton() {
delete _instance;
}
};