-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppCondition.h
506 lines (460 loc) · 15.4 KB
/
AppCondition.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
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
#include "AppUI.h"
#pragma once //avoid header loop
#ifndef APPCONDITION_H //avoid header loop
#define APPCONDITION_H //avoid header loop
//=======================
char OptSel; //initialize Options Seleter
//=======================
std::string InsertStudentID; //Search some studentID
std::string InsertTeacherID; //Search some TeacherID
std::string InsertCourseID; //Search some Course Information
//=======================
std::string GetString;
//=======================
std::string GetStuInfo_Name;
std::string GetStuInfo_Sex;
std::string GetStuInfo_Birthday;
std::string GetStuInfo_Professor;
std::string GetStuInfo_Department;
//=======================
std::string GetTchInfo_Name;
std::string GetTchInfo_Sex;
std::string GetTchInfo_Department;
//=======================
std::string GetCrsInfo_Name;
std::string GetCrsInfo_Professor;
std::string GetCrsInfo_Content;
//=======================
std::string StuDir = "./student/";
std::string TchDir = "./teacher/";
std::string CrsDir = "./course/";
std::string Fname;
std::string FExtName = ".csv";
//=======================
std::vector <std::string> W_Crt_StudentInfo;
std::vector <std::string> W_Crt_TeacherInfo;
std::vector <std::string> W_Crt_CourseInfo;
//=======================
void GetStuInfoUI()
{
std::cout << "======================================" << std::endl;
std::cout << " 學生資訊" << std::endl;
std::cout << "======================================" << std::endl;
std::cout << "姓名: " << GetStuInfo_Name << std::endl;
std::cout << "性別: " << GetStuInfo_Sex << std::endl;
std::cout << "生日: " << GetStuInfo_Birthday << std::endl;
std::cout << "教授: " << GetStuInfo_Professor << std::endl;
std::cout << "系別: " << GetStuInfo_Department << std::endl;
std::cout << "======================================" << std::endl;
}
void GetTchInfoUI()
{
std::cout << "======================================" << std::endl;
std::cout << " 教師資訊" << std::endl;
std::cout << "======================================" << std::endl;
std::cout << "姓名: " << GetTchInfo_Name << std::endl;
std::cout << "性別: " << GetTchInfo_Sex << std::endl;
std::cout << "授課系別: " << GetTchInfo_Department << std::endl;
std::cout << "======================================" << std::endl;
}
void GetCrsInfoUI()
{
std::cout << "======================================" << std::endl;
std::cout << " 課程資訊" << std::endl;
std::cout << "======================================" << std::endl;
std::cout << "課程名稱: " << GetCrsInfo_Name << std::endl;
std::cout << "授課教師: " << GetCrsInfo_Professor << std::endl;
std::cout << "授課內容: " << GetCrsInfo_Content << std::endl;
std::cout << "======================================" << std::endl;
}
void SrcStuSelOpt() //MainPageOptSel()
{
SrcStuSelUI(); //Search Student ID
std::cin >> InsertStudentID;
Fname = StuDir + InsertStudentID + FExtName; //File name = Directory + Filename + Extension FileName
std::ifstream in(Fname, std::ios::in); //Read file mode
if(!in.is_open())
{
std::cerr << "無法讀取檔案!請確定有建立檔案或者權限讀取!" << std::endl;
}
//===================================================================
//std::string line;
std::vector<std::string> result; // save split string
while (std::getline(in, GetString)) { //save the string tempturely
std::stringstream ss(GetString); //control data string IO
std::string token;
// spilt from comma
if (std::getline(ss, token, ',')) GetStuInfo_Name = token;
if (std::getline(ss, token, ',')) GetStuInfo_Sex = token;
if (std::getline(ss, token, ',')) GetStuInfo_Birthday = token;
if (std::getline(ss, token, ',')) GetStuInfo_Professor = token;
if (std::getline(ss, token, ',')) GetStuInfo_Department = token;
GetStuInfoUI();
}
in.close();
//===================================================================
std::cout << std::endl;
system("pause");
system("cls");
}
void SrcThcSelOpt()
{
SrcTchSelUI(); //Search Student ID
std::cin >> InsertTeacherID;
Fname = TchDir + InsertTeacherID + FExtName; //File name = Directory + Filename + Extension FileName
std::ifstream in(Fname, std::ios::in); //Read file mode
if(!in.is_open())
{
std::cerr << "無法讀取檔案!請確定有建立檔案或者權限讀取!" << std::endl;
}
//===================================================================
//std::string line;
std::vector<std::string> result; // save split string
while (std::getline(in, GetString)) { //save the string tempturely
std::stringstream ss(GetString); //control data string IO
std::string token;
// spilt from comma
if (std::getline(ss, token, ',')) GetTchInfo_Name = token;
if (std::getline(ss, token, ',')) GetTchInfo_Sex = token;
if (std::getline(ss, token, ',')) GetTchInfo_Department = token;
GetTchInfoUI();
}
in.close();
//===================================================================
std::cout << std::endl;
system("pause");
system("cls");
}
void SrcCrsSelOpt()
{
SrcCrsSelUI(); //Search Student ID
std::cin >> InsertCourseID;
Fname = CrsDir + InsertCourseID + FExtName; //File name = Directory + Filename + Extension FileName
std::ifstream in(Fname, std::ios::in); //Read file mode
if(!in.is_open())
{
std::cerr << "無法讀取檔案!請確定有建立檔案或者權限讀取!" << std::endl;
}
//===================================================================
//std::string line;
std::vector<std::string> result; // save split string
while (std::getline(in, GetString)) { //save the string tempturely
std::stringstream ss(GetString); //control data string IO
std::string token;
// spilt from comma
if (std::getline(ss, token, ',')) GetCrsInfo_Name = token;
if (std::getline(ss, token, ',')) GetCrsInfo_Professor = token;
if (std::getline(ss, token, ',')) GetCrsInfo_Content = token;
GetCrsInfoUI();
}
in.close();
//===================================================================
std::cout << std::endl;
system("pause");
system("cls");
}
//=======================================================================
void W_Student_Info()
{
//=============================
W_Crt_StudentInfo.resize(5); //define contant size
//=============================/
std::cout << "學生姓名:";
std::cin >> W_Crt_StudentInfo[0];
system("cls");
std::cout << "學生性別:";
std::cin >> W_Crt_StudentInfo[1];
system("cls");
std::cout << "學生生日:";
std::cin >> W_Crt_StudentInfo[2];
system("cls");
std::cout << "學生教師:";
std::cin >> W_Crt_StudentInfo[3];
system("cls");
std::cout << "學生科系:";
std::cin >> W_Crt_StudentInfo[4];
system("cls");
}
//========================================================================
void CrtStuSelOpt()
{
if(!std::filesystem::exists(StuDir))
{
//std::filesystem::create_directories(Log_Directory); // create the directory
if(std::filesystem::create_directories(StuDir))
{
//std::cout << "Created!";
}
else
{
std::cerr << "資料無法建立!請再次嘗試!請確定有建立檔案之權限!\n";
return;
}
}
CrtStuSelUI();
std::cin >> InsertStudentID; //Write StudentID
system("cls");
Fname = StuDir + InsertStudentID + FExtName; //File name = Directory + Filename + Extension FileName
std::ofstream out(Fname, std::ios::out | std::ios::binary);
if (!out)
{
std::cerr << "建立檔案失敗: " << Fname << '\n';
return;
}
out << "\xEF\xBB\xBF"; //BOM
W_Student_Info();
for(const auto& str : W_Crt_StudentInfo)
{
out << str << ",";
}
out.close();
std::cout << "現在 " << InsertStudentID + FExtName << " 已建立!" << std::endl;
system("pause");
system("cls");
}
void W_Teacher_Info()
{
//=============================
W_Crt_TeacherInfo.resize(5); //define contant size
//=============================/
std::cout << "教師姓名:";
std::cin >> W_Crt_TeacherInfo[0];
system("cls");
std::cout << "教師性別:";
std::cin >> W_Crt_TeacherInfo[1];
system("cls");
std::cout << "教授授課系別:";
std::cin >> W_Crt_TeacherInfo[2];
system("cls");
}
//========================================================================
void CrtTchSelOpt()
{
if(!std::filesystem::exists(TchDir))
{
//std::filesystem::create_directories(Log_Directory); // create the directory
if(std::filesystem::create_directories(TchDir))
{
//std::cout << "Created!";
}
else
{
std::cerr << "資料無法建立!請再次嘗試!請確定有建立檔案之權限!\n";
//return 1;
}
}
CrtTchSelUI();
std::cin >> InsertTeacherID; //Write StudentID
system("cls");
Fname = TchDir + InsertTeacherID + FExtName; //File name = Directory + Filename + Extension FileName
std::ofstream out(Fname, std::ios::out | std::ios::binary);
if (!out)
{
std::cerr << "建立檔案失敗:" << Fname << '\n';
return;
}
out << "\xEF\xBB\xBF"; //BOM
W_Teacher_Info();
for(const auto& str : W_Crt_TeacherInfo)
{
out << str << ",";
}
out.close();
std::cout << "現在 " << InsertTeacherID + FExtName << " 已建立!" << std::endl;
system("pause");
system("cls");
}
//=============================================
void W_Course_Info()
{
//=============================
W_Crt_CourseInfo.resize(5); //define contant size
//=============================/
std::cout << "課程名稱:";
std::cin >> W_Crt_CourseInfo[0];
system("cls");
std::cout << "授課教師:";
std::cin >> W_Crt_CourseInfo[1];
system("cls");
std::cout << "授課內容:";
std::cin >> W_Crt_CourseInfo[2];
system("cls");
}
//=============================================
void CrtCrsSelOpt()
{
if(!std::filesystem::exists(CrsDir))
{
//std::filesystem::create_directories(Log_Directory); // create the directory
if(std::filesystem::create_directories(CrsDir))
{
//std::cout << "Created!";
}
else
{
std::cerr << "資料無法建立!請再次嘗試!請確定有建立檔案之權限!\n";
//return 1;
}
}
CrtCrsSelUI();
std::cin >> InsertCourseID; //Write StudentID
system("cls");
Fname = CrsDir + InsertCourseID + FExtName; //File name = Directory + Filename + Extension FileName
std::ofstream out(Fname, std::ios::out | std::ios::binary);
if (!out)
{
std::cerr << "建立檔案失敗:" << Fname << '\n';
return;
}
out << "\xEF\xBB\xBF"; //BOM
W_Course_Info();
for(const auto& str : W_Crt_CourseInfo)
{
out << str << ",";
}
out.close();
std::cout << "現在 " << InsertCourseID + FExtName << " 已建立!" << std::endl;
system("pause");
system("cls");
}
//=================================
void DelStuSelOpt()
{
WantDel_stuUI();
std::cin >> InsertStudentID;
system("cls");
Fname = StuDir + InsertStudentID + FExtName; //File name = Directory + Filename + Extension FileName
try {
if (std::filesystem::remove(Fname)) {
std::cout << "該學生資訊已刪除!\n";
} else {
std::cout << "未找到此學生資訊!\n";
}
} catch (const std::filesystem::filesystem_error& e) {
std::cerr << "Error: " << e.what() << '\n';
}
system("pause");
system("cls");
}
//=================================
void DelThcSelOpt()
{
WantDel_tchUI();
std::cin >> InsertTeacherID;
system("cls");
Fname = TchDir + InsertTeacherID + FExtName; //File name = Directory + Filename + Extension FileName
try {
if (std::filesystem::remove(Fname)) {
std::cout << "該教師資訊已刪除!\n";
} else {
std::cout << "未找到此教師資訊!\n";
}
} catch (const std::filesystem::filesystem_error& e) {
std::cerr << "Error: " << e.what() << '\n';
}
system("pause");
system("cls");
}
//========================================
void DelCrsSelOpt()
{
WantDel_crsUI();
std::cin >> InsertCourseID;
system("cls");
Fname = CrsDir + InsertCourseID + FExtName; //File name = Directory + Filename + Extension FileName
try {
if (std::filesystem::remove(Fname)) {
std::cout << "該課程資訊已刪除!\n";
} else {
std::cout << "未找到此課程資訊!\n";
}
} catch (const std::filesystem::filesystem_error& e) {
std::cerr << "Error: " << e.what() << '\n';
}
system("pause");
system("cls");
}
//========================================
void MainPageOptSel()
{
//====================================
switch(OptSel)
{
case '1':
SrcSelUI(); //Search
std::cin >> OptSel;
system("cls");
//============================
if(OptSel == '1')
{
SrcStuSelOpt();
}
else if(OptSel == '2')
{
SrcThcSelOpt();
}
else if(OptSel == '3')
{
SrcCrsSelOpt();
}
else if(OptSel == '4')
{
//Exit
}
//============================
break;
case '2':
CrtSelUI(); //Create(Add)
std::cin >> OptSel;
system("cls");
//============================
if(OptSel == '1')
{
CrtStuSelOpt();
}
else if(OptSel == '2')
{
CrtTchSelOpt();
}
else if(OptSel == '3')
{
CrtCrsSelOpt();
}
else if(OptSel == '4')
{
//Exit
}
//============================
break;
case '3':
DelSelUI(); //delete
std::cin >> OptSel;
system("cls");
//============================
if(OptSel == '1')
{
DelStuSelOpt();
}
else if(OptSel == '2')
{
DelThcSelOpt();
}
else if(OptSel == '3')
{
DelCrsSelOpt();
}
else if(OptSel == '4')
{
//Exit
}
//============================
system("cls");
break;
case '4':
exit(0); //Exit
default:
std::cout << "無效的輸入!\n";
system("pause");
}
}
#endif // after #ifndef APPCONDITION_H