-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.cpp
193 lines (168 loc) · 4.74 KB
/
parser.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
//course is used to store groups
//student is used to store employees, their position and avaliability
// reading a text file
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include "struct.h"
using namespace std;
int main ()
{
int i;
int k;
/*Initialize structure variables*/
courses cour;
students studs;
int choice = -1;
/*Initialize structure counters to 0*/
cour.course_cnt=0;
studs.student_cnt=0;
/*Initalize all caps equal to CHUNCKSIZE*/
cour.cour_cap = studs.stud_cap = CHUNKSIZE;
/*initalize memory for each structure*/
cour.cour_list = (course *) malloc (sizeof(course) * CHUNKSIZE);
studs.stud_list = (student *) malloc (sizeof(student) * CHUNKSIZE);
string line;
ifstream myfile ("schedularInput.txt");
if (myfile.is_open())
{
while ( getline (myfile,line) )
{
istringstream iss(line);
string word;
//sift through each line by whitespace
while( iss >> word )
{
//list of groups coming
if (word == "groups" )
{
while( iss >> word )
{
/*Reallocate memory if more is needed*/
if(cour.course_cnt == cour.cour_cap)
{
course *temp;
temp = (course *) realloc(cour.cour_list, sizeof(course) * (cour.cour_cap + CHUNKSIZE));
cour.cour_cap += CHUNKSIZE;
cour.cour_list = temp;
}
/*Store name*/
cour.cour_list[cour.course_cnt].name = word;
/*Add one to the course count*/
cour.course_cnt += 1;
}
}
//employee info coming
if (word == "people" )
{
int i = 0;
/*Reallocate memory if more is needed*/
if(studs.student_cnt == studs.stud_cap)
{
student *temp;
temp = (student *) realloc(studs.stud_list, sizeof(student) *(studs.stud_cap + CHUNKSIZE));
studs.stud_cap += CHUNKSIZE;
studs.stud_list =temp;
}
while ( iss >> word )
{
//input first name
if( i == 0 )
{
studs.stud_list[studs.student_cnt].first = word;
}
//input last name
if( i == 1)
{
studs.stud_list[studs.student_cnt].last = word;
}
//input positon/group
if( i == 2)
{
studs.stud_list[studs.student_cnt].pos_pref = word;
}
//monday schedule
if( i == 3)
{
studs.stud_list[studs.student_cnt].work[0][0] = word;
}
//Tuesday schedule
if( i == 4)
{
studs.stud_list[studs.student_cnt].work[0][1] = word;
}
//Wednesday schedule
if( i == 5)
{
studs.stud_list[studs.student_cnt].work[0][2] = word;
}
//thursday schedule
if( i == 6 )
{
studs.stud_list[studs.student_cnt].work[0][3] = word;
}
//friday schedule
if( i == 7 )
{
studs.stud_list[studs.student_cnt].work[0][4] = word;
}
//Saturday schedule
if( i == 8 )
{
studs.stud_list[studs.student_cnt].work[0][5] = word;
}
//sunday schedule
if( i == 9 )
{
studs.stud_list[studs.student_cnt].work[0][6] = word;
}
i++;
}
cout << endl << studs.stud_list[studs.student_cnt].first << " " <<
studs.stud_list[studs.student_cnt].last;
cout << endl << studs.stud_list[studs.student_cnt].pos_pref << endl;
int h;
cout << "Availability" << endl;
cout << "------------------------------------------------------------------------------------" << endl;
cout << " Monday | Tuesday | Wednesday | Thursday | Friday | Saturday | Sunday |\n";
for(h = 0; h < 7; h++)
{
if( studs.stud_list[studs.student_cnt].work[0][h] == "0")
{
cout << " X ";
}
if( studs.stud_list[studs.student_cnt].work[0][h] == "1")
{
cout << "Aval: 1st ";
}
if( studs.stud_list[studs.student_cnt].work[0][h] == "2" )
{
cout << "Aval: 2nd ";
}
if( studs.stud_list[studs.student_cnt].work[0][h] == "3" )
{
cout << "Aval: Both ";
}
cout << "|";
}
cout << endl << endl;
studs.student_cnt += 1;
}
}
}
myfile.close();
}
else cout << "Unable to open file";
int j;
/*Loop through course struct and print cooresponding info*/
for ( j=0; j < cour.course_cnt; j++)
{
cout << "Group Name: " << cour.cour_list[j].name;
cout << endl << endl;
}
//free memory
free(cour.cour_list);
free(studs.stud_list);
return 0;
}