-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.cpp
442 lines (402 loc) · 10.1 KB
/
manager.cpp
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
438
439
440
441
442
#include"manager.h"
void Manager::operMenu() {
while (true) {
//cout << "\t\t欢迎您管理员:" << this->m_name << endl;
cout << " \t\t-------------------------\n";
cout << "\t\t| |\n";
cout << "\t\t| 1、添加账号 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 2、查看账号 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 3、查看机房 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 4、清空预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 0、注销登录 |\n";
cout << "\t\t| |\n";
cout << "\t\t -------------------------\n";
cout << "\t\t请输入您的选择:";
int chioce;
cin >> chioce;
if (chioce == 0) {
cout << "注销成功!" << endl;
break;
}
switch (chioce)
{
case 1:
this->addAccount();
system("pause");
system("cls");
break;
case 2:
this->viewAccount();
system("pause");
system("cls");
break;
case 3:
this->viewComputerRoom();
system("pause");
system("cls");
break;
case 4:
this->clearAppointment();
system("pause");
system("cls");
break;
default:
cout << "输入有误请重新输入:" << endl;
system("pause");
system("cls");
break;
}
}
}
void Manager::addAccount() {
int flag;
int student_id;
string student_name;
int teacher_id;
string teacher_name;
int student_pwd;
int teacher_pwd;
int i;
vector<Student> stuV;
vector<Teacher> teaV;
this->readStudentFile(stuV);
this->readTeacherFile(teaV);
cout << "选择您要添加的账户类型:" << endl;
cout << "1、学生 2、老师" << endl;
cin >> flag;
while (flag != 1 && flag != 2) {
cout << "输入错误,请重新输入:" << endl;
cin >> flag;
}
if (flag == 1) {
cout << "请输入学号:" << endl;
cin >> student_id;
while (this->IsStudentIdExist(stuV, student_id,i)) {
cout << "学号重复,请重新输入:" << endl;
cin >> student_id;
}
cout << "请输入姓名:" << endl;
cin >> student_name;
cout << "请输入密码" << endl;
cin >> student_pwd;
Student student(student_id,student_name,student_pwd);
writeInStudentFile(student);
cout << "添加成功!" << endl;
}
else if (flag == 2) {
cout << "请输入职工号:" << endl;
cin >> teacher_id;
while (this->IsTeacherIdExist(teaV,teacher_id,i))
{
cout << "职工号重复,请重新输入" << endl;
cin >> teacher_id;
}
cout << "请输入姓名:" << endl;
cin >> teacher_name;
cout << "请输入密码" << endl;
cin >> teacher_pwd;
Teacher teacher(teacher_id, teacher_name, teacher_pwd);
writeInTeacherFile(teacher);
cout << "添加成功!" << endl;
}
}
void Manager::viewAccount() {
int flag;
vector<Student> stuV;
vector<Teacher> teaV;
cout << "请选择查看内容:" << endl;
cout << "1、查看所有学生" << endl;
cout << "2、查看所有老师" << endl;
cin >> flag;
while (flag != 1 && flag != 2) {
cout << "输入错误,请重新输入:" << endl;
cin >> flag;
}
if (flag == 1) {
cout << "所有学生信息如下:" << endl;
this->readStudentFile(stuV);
//for_each(stuV.begin(), stuV.end(), Myprint());
for (int i = 0;i < stuV.size();i++) {
cout << "学号:" << stuV[i].m_student_id << "\t姓名:" << stuV[i].m_name << "\t密码:" << stuV[i].m_pwd<<endl;
}
}
else if (flag == 2) {
cout << "所有老师信息如下:" << endl;
this->readTeacherFile(teaV);
for (int i = 0;i < teaV.size();i++) {
cout << "职工号:" << teaV[i].m_teacher_id << "\t姓名:" << teaV[i].m_name << "\t密码:" << teaV[i].m_pwd << endl;
}
}
}
void Manager::clearAppointment() {
ofstream ofs;
ofs.open(ORDERFILENAME, ios::out);
ofs.close();
cout << "清除成功!" << endl;
}
void Manager::logOut() {
}
void Manager::viewComputerRoom() {
cout << "机房信息如下:" << endl;
ifstream ifs;
vector<string> v;
char c = ' ';
ifs.open(ROOMFILENAME, ios::in);
if (ifs.is_open()) {
char buff[1024] = { 0 };
while (ifs.getline(buff,sizeof(buff)))
{
//cout << buff << endl;
string str;
stringstream ss(buff);
while (getline(ss, str, c)) {
v.push_back(str);
}
cout << "机房编号:" << v[0] << "\t机房最大容量:" << v[1] << endl;
v.clear();
}
}
else {
cout << "打开文件失败!" << endl;
}
ifs.close();
}
void Manager::writeInStudentFile(Student student) {
ofstream ofs;
ofs.open(STUFILENAME, ios::out | ios::app);
ofs << student.m_student_id << " " << student.m_name << " " << student.m_pwd << endl;
ofs.close();
}
void Manager::writeInTeacherFile(Teacher teacher) {
ofstream ofs;
ofs.open(TEAFILENAME, ios::out | ios::app);
ofs << teacher.m_teacher_id << " " << teacher.m_name << " " << teacher.m_pwd << endl;
ofs.close();
}
void Manager::readStudentFile(vector<Student>& stuVector) {
ifstream ifs;
char c = ' ';
vector<string> v;
ifs.open(STUFILENAME, ios::in);
if (ifs.is_open()) {
char buff[1024] = { 0 };
while (ifs.getline(buff,sizeof(buff))) {
int student_id;
string student_name;
int student_pwd;
//cout << buff << endl;
string str;
stringstream ss(buff);
while (getline(ss, str, c)) {
v.push_back(str);
}
/*for (int i = 0;i < v.size();i++) {
cout << "v" << i << " " << v[i] << endl;
}*/
stringstream id;
stringstream pwd;
id << v[0];
id >> student_id;//string转换为int型
student_name = v[1];
pwd << v[2];
pwd >> student_pwd;
Student student(student_id,student_name,student_pwd);//创建一个对象
stuVector.push_back(student);
v.clear();
}
}
else {
cout << "打开文件失败!" << endl;
}
ifs.close();
}
void Manager::readTeacherFile(vector<Teacher>& teaVector) {
ifstream ifs;
char c = ' ';
vector<string> v;
ifs.open(TEAFILENAME, ios::in);
if (ifs.is_open()) {
char buff[1024] = { 0 };
while (ifs.getline(buff, sizeof(buff))) {
int teacher_id;
string teacher_name;
int teacher_pwd;
//cout << buff << endl;
string str;
stringstream ss(buff);
while (getline(ss, str, c)) {
v.push_back(str);
}
/*for (int i = 0;i < v.size();i++) {
cout << "v" << i << " " << v[i] << endl;
}*/
stringstream id;
stringstream pwd;
id << v[0];
id >> teacher_id;//string转换为int型
teacher_name = v[1];
pwd << v[2];
pwd >> teacher_pwd;//string转换为int型
Teacher teacher(teacher_id,teacher_name,teacher_pwd);//创建一个对象
teaVector.push_back(teacher);
v.clear();
}
}
else {
cout << "打开文件失败!" << endl;
}
ifs.close();
}
void Manager::readManagerFile(vector<Manager>& manVector)
{
ifstream ifs;
ifs.open(MANAGERFILE, ios::in);
char buff[1024] = { 0 };
char c = ' ';
vector<string> v;
int manager_pwd;
while (ifs.getline(buff, sizeof(buff)))
{
string str;
stringstream ss(buff);
while (getline(ss, str, c)) {
v.push_back(str);
}
Manager manager;
stringstream pwd;
pwd << v[1];
pwd >> manager_pwd;
manager.m_name = v[0];
manager.m_pwd = manager_pwd;
manVector.push_back(manager);
v.clear();
}
ifs.close();
}
bool Manager::IsStudentIdExist(vector<Student> stu, int student_id,int &i) {
for (i = 0;i < stu.size();i++) {
if (stu[i].m_student_id == student_id) {
return true;
}
}
return false;
}
bool Manager::IsTeacherIdExist(vector<Teacher> teac, int teacher_id,int &i) {
for (i = 0;i < teac.size();i++) {
if (teac[i].m_teacher_id == teacher_id) {
return true;
}
}
return false;
}
bool Manager::IsManagerNameExist(vector<Manager> man, string manager_name,int &i) {
for (i = 0;i < man.size();i++) {
if (man[i].m_name == manager_name) {
return true;
}
}
return false;
}
void Manager::managerLogIn()
{
vector<Manager> manV;
this->readManagerFile(manV);
string manager_name;
int manager_pwd;
int i;
cout << "请输入管理员名字:" << endl;
cin >> manager_name;
if (this->IsManagerNameExist(manV,manager_name,i)) {
cout << "请输入管理员账号密码:" << endl;
cin >> manager_pwd;
while (manV[i].m_pwd != manager_pwd) {
cout << "密码错误!请重新输入:" << endl;
cin >> manager_pwd;
}
cout << "登录成功!" << endl;
system("pause");
system("cls");
cout << "欢迎您,管理员:" << manV[i].m_name << endl;
this->operMenu();
}
else {
cout << "不存在该管理员!" << endl;
return;
}
/*for (i = 0;i < manV.size();i++) {
if (manV[i].m_name == manager_name) {
cout << "请输入管理员账号密码:" << endl;
cin >> manager_pwd;
while (manV[i].m_pwd != manager_pwd) {
cout << "密码错误!请重新输入:" << endl;
cin >> manager_pwd;
}
cout << "登录成功!" << endl;
this->operMenu();
}
}
if (i == manV.size()) {
cout << "不存在该管理员!" << endl;
return;
}*/
}
void Manager::studentLogIn() {
vector<Student> stuV;
this->readStudentFile(stuV);
int student_id;
int student_pwd;
int i;
cout << "请输入学号:" << endl;
cin >> student_id;
if (this->IsStudentIdExist(stuV, student_id, i)) {
cout << "请输入密码:" << endl;
cin >> student_pwd;
while (stuV[i].m_pwd != student_pwd) {
cout << "密码错误!请重新输入:" << endl;
cin >> student_pwd;
}
cout << "登录成功!" << endl;
system("pause");
system("cls");
Student student(student_id,stuV[i].m_name);
student.operMenu();
}
else {
cout << "该学号不存在!" << endl;
system("pause");
system("cls");
return;
}
}
void Manager::teacherLogIn() {
vector<Teacher> teaV;
this->readTeacherFile(teaV);
int teacher_id;
int teacher_pwd;
int i;
cout << "请输入职工号:" << endl;
cin >> teacher_id;
if (this->IsTeacherIdExist(teaV,teacher_id,i)) {
cout << "请输入密码:" << endl;
cin >> teacher_pwd;
while (teaV[i].m_pwd != teacher_pwd) {
cout << "密码错误!请重新输入:" << endl;
cin >> teacher_pwd;
}
cout << "登录成功!" << endl;
system("pause");
system("cls");
Teacher teacher(teacher_id);
teacher.operMenu();
}
else {
cout << "该职工号不存在!" << endl;
system("pause");
system("cls");
return;
}
}