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
|
/*let i = 0;
let foodShiftNames = [];
let db = []; // first level array: days - second level array: shifts - third level dict: course/teacher - fourth level array: indexes
while (db.length < weekdays.length)
{
console.log("\nParsing weekday " + weekdays[db.length] + ";");
i = findExpression(data, weekdays[db.length], i);
let end = i;
if (db.length === weekdays.length)
end = data.length;
else
end = findExpression(data, weekdays[db.length + 1], i + 1);
db.push([]); // add the day
let shifts = 0;
do
{
console.log("Parsing shift " + (shifts + 1) + ";");
let teachers = [];
let courses = [];
i = findExpression(data, "RUOKAILUVUORO", i);
let nextLineStart = getNextChar(data, i, "\n");
foodShiftNames.push(data.substring(i, nextLineStart));
db[db.length - 1].push([]); // add the food shift
nextLineStart = getNextChar(data, nextLineStart + 1, "\n");
while (!((nextLineStart - i) > 2))
{
i = nextLineStart;
nextLineStart = getNextChar(data, i + 1, "\n");
}
let parsedLine = data.substring(i, nextLineStart).replaceAll(",", "").replaceAll("ja ", "");
console.log(parsedLine);
let parse_i = 0;
let nextSpace = getNextChar(parsedLine, parse_i, " ");
while (parse_i !== -1)
{
//console.log("Parsing the courses / teachers.");
courses.push(parsedLine.substring(parse_i, nextSpace));
parse_i = nextSpace + 1;
nextSpace = getNextChar(parsedLine, parse_i, " ");
teachers.push(parsedLine.substring(parse_i, nextSpace));
parse_i = nextSpace + 1;
nextSpace = getNextChar(parsedLine, parse_i, " ");
}
i = nextLineStart;
db[db.length - 1][shifts][0] = courses;
db[db.length - 1][shifts][1] = teachers;
shifts++;
} while ((i < end) && (i !== -1))
i = getNextChar("\n");
}
return [db, foodShiftNames];*/
function getCharAmount(s, c)
{
let n = 0;
for (let c_i = 0; c_i < s.length; c_i++)
{
n += +(s[c_i] === c);
}
return n;
}
function getNextChar(s, c, i = 0)
{
if (!(Number.isInteger(i) && (i >= 0)))
return -1;
for (; i < s.length; i++)
{
if (s[i] === c)
return i;
}
return -1;
}
function getNextLine(s, i)
{
i = getNextChar(s, "\n", i);
i += +(i !== -1) * 1;
return i;
}
function getToLineStartingWith(s, ss, start = 0)
{
if (!(Number.isInteger(start) && (start >= 0)))
return -1
let i = start;
do
{
if (s.substring(i, i + ss.length) === ss)
break;
i = getNextLine(s, i);
} while(i !== -1)
return i;
}
function findExpression(data, expr, start = 0)
{
if (!(Number.isInteger(start) && (start >= 0)))
throw new TypeError("Start must be a positive integer!");
while ((data.substring(start, start + expr.length) !== expr) && (start + expr.length < data.length))
start++;
if (data.substring(start, start + expr.length) !== expr)
return -1;
return start;
}
function parseLine(line, toRemove = " ja KAHDEN TUTKINNON OPINNOT 1., 2. ja 3. VUOSITASON RYHMÄT ")
{
let i = 0;
let courses = [];
let teachers = [];
let nextSpace = 0;
if (line.substring(line.length - toRemove.length, line.length) === toRemove)
line = line.substring(0, line.length - toRemove.length);
line = line.replaceAll(",", "");
const getElement = list =>
{
nextSpace = getNextChar(line, " ", i);
if (nextSpace === -1)
nextSpace = line.length;
list.push(line.substring(i, nextSpace));
i = nextSpace + 1;
}
do
{
getElement(courses);
getElement(teachers);
} while (i < line.length)
return [courses, teachers];
}
function parseDay(day)
{
let shifts = {};
let i = getToLineStartingWith(day, "RUOKAILUVUORO");
do
{
let endOfLine = getNextChar(day, "\n", i);
let shiftDesc = day.substring(i, endOfLine);
i = getNextChar(day, "\n", i) + 1;
i = getNextChar(day, "\n", i) + 1;
if (getNextChar(day, "\n", i) === -1)
endOfLine = day.length;
else
endOfLine = getNextChar(day, "\n", i);
let unparsedIndexes = day.substring(i, endOfLine);
shifts[shiftDesc] = parseLine(unparsedIndexes);
i = getToLineStartingWith(day, "RUOKAILUVUORO", i);
} while (i !== -1);
return shifts;
}
function parseShift(data, weekdays = ["MAANANTAISIN", "TIISTAISIN", "KESKIVIIKKOISIN", "TORSTAISIN", "PERJANTAISIN"])
{
let i = 0;
let db = [];
while (db.length < weekdays.length)
{
let day = [];
i = getNextChar(data, "\n", findExpression(data, weekdays[db.length]));
let end;
if (db.length === weekdays.length - 1)
end = data.length;
else
end = findExpression(data, weekdays[db.length + 1]);
let unparsedDay = data.substring(i + 1, end);
day = parseDay(unparsedDay);
db.push(day);
}
return db;
}
/*
* DB structure:
* WEEKDAY
* FOOD SHIFTS
* COURSE INDEXES
* TEACHER INDEXES
*/
function getShift(day, index, db)
{
let shifts = db[day];
for (const [key, val] of Object.entries(shifts))
{
}
}
exports.shift = parseShift;
exports.get = getShift;
|