2023-02-04 17:38:37 +00:00
|
|
|
#include<set>
|
|
|
|
#include<regex>
|
|
|
|
#include<fstream>
|
|
|
|
#include<iostream>
|
|
|
|
#include<filesystem>
|
2023-02-05 00:32:25 +00:00
|
|
|
#include<unordered_set>
|
2023-02-06 21:37:06 +00:00
|
|
|
#include<json/json.h>
|
|
|
|
|
2023-02-04 17:38:37 +00:00
|
|
|
namespace fs = std::filesystem;
|
2023-02-05 02:09:05 +00:00
|
|
|
struct quatalog_data_t {
|
|
|
|
Json::Value terms_offered;
|
|
|
|
Json::Value prerequisites;
|
|
|
|
};
|
2023-02-05 03:06:28 +00:00
|
|
|
struct term_data_t {
|
|
|
|
Json::Value courses;
|
|
|
|
Json::Value prerequisites;
|
|
|
|
};
|
2023-02-05 02:09:05 +00:00
|
|
|
using course_handler_t = void(const Json::Value&,const std::string&,quatalog_data_t&,const Json::Value&);
|
|
|
|
|
|
|
|
void handle_term_dirs(const std::set<fs::directory_entry>&,quatalog_data_t&);
|
|
|
|
void handle_term(const fs::directory_entry& term_entry,quatalog_data_t&);
|
2023-02-05 03:06:28 +00:00
|
|
|
void handle_prefix(const Json::Value&,const std::string&,quatalog_data_t&,const term_data_t&,course_handler_t*);
|
2023-02-05 02:09:05 +00:00
|
|
|
void handle_course(const Json::Value&,const std::string&,quatalog_data_t&,const Json::Value&);
|
|
|
|
void handle_course_summer(const Json::Value&,const std::string&,quatalog_data_t&,const Json::Value&);
|
2023-02-05 03:06:28 +00:00
|
|
|
void handle_everything(const Json::Value&,const Json::Value&,Json::Value& course_term,Json::Value&,const Json::Value&);
|
2023-02-05 02:11:08 +00:00
|
|
|
void handle_sections(const Json::Value&,Json::Value&);
|
|
|
|
void handle_instructors(const Json::Value&,std::unordered_set<std::string>&);
|
|
|
|
void handle_multiple_instructors(const std::string&,std::unordered_set<std::string>&);
|
2023-02-06 19:24:19 +00:00
|
|
|
void handle_attributes(const Json::Value&,const std::string&,Json::Value&,Json::Value&);
|
|
|
|
void handle_term_attribute(const std::string&,Json::Value&);
|
|
|
|
void handle_attribute(const std::string&,Json::Value&,Json::Value&);
|
2023-02-06 19:54:54 +00:00
|
|
|
template<typename Functor> void iterateOnDelimitedString(const std::string&,const std::regex&,const Functor&);
|
2023-02-05 03:06:28 +00:00
|
|
|
void handle_prereqs(const Json::Value&,const std::string&,Json::Value&,const Json::Value&);
|
2023-02-04 17:38:37 +00:00
|
|
|
|
2023-02-06 19:24:19 +00:00
|
|
|
int main(const int argc,
|
|
|
|
const char** argv) {
|
|
|
|
if(argc != 4) {
|
|
|
|
std::cerr << "Bad number of arguments (" << argc << ")" << std::endl;
|
2023-02-05 04:50:51 +00:00
|
|
|
std::cerr << "Usage: " << argv[0]
|
|
|
|
<< " <data_directory>"
|
|
|
|
<< " <terms_offered_file>"
|
|
|
|
<< " <prerequisites_file>"
|
2023-02-06 19:24:19 +00:00
|
|
|
<< std::endl;
|
2023-02-04 17:38:37 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2023-02-05 02:09:05 +00:00
|
|
|
const auto& data_dir_path = fs::path(argv[1]);
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& terms_offered_filename = std::string(argv[2]);
|
|
|
|
const auto& prerequisites_filename = std::string(argv[3]);
|
2023-02-05 02:09:05 +00:00
|
|
|
|
2023-02-04 17:38:37 +00:00
|
|
|
if(!fs::is_directory(data_dir_path)) {
|
2023-02-06 19:54:54 +00:00
|
|
|
std::cerr << "Data directory argument "
|
|
|
|
<< data_dir_path
|
|
|
|
<< " is not a directory" << std::endl;
|
2023-02-04 17:38:37 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
// Sort term dirs chronologically using a std::set
|
2023-02-04 17:38:37 +00:00
|
|
|
std::set<fs::directory_entry> term_dirs;
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& data_dir = fs::directory_iterator(data_dir_path);
|
2023-02-04 22:29:50 +00:00
|
|
|
for(const auto& term : data_dir) {
|
2023-02-04 17:38:37 +00:00
|
|
|
term_dirs.insert(term);
|
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
// Begin JSON manipulation
|
2023-02-05 02:09:05 +00:00
|
|
|
quatalog_data_t data;
|
2023-02-05 04:50:51 +00:00
|
|
|
handle_term_dirs(term_dirs,data);
|
2023-02-04 22:29:50 +00:00
|
|
|
|
2023-02-05 04:50:51 +00:00
|
|
|
std::fstream terms_offered_file{terms_offered_filename,std::ios::out};
|
|
|
|
std::fstream prerequisites_file{prerequisites_filename,std::ios::out};
|
|
|
|
|
|
|
|
terms_offered_file << data.terms_offered << std::endl;
|
|
|
|
prerequisites_file << data.prerequisites << std::endl;
|
|
|
|
|
2023-02-05 02:09:05 +00:00
|
|
|
terms_offered_file.close();
|
2023-02-05 03:06:28 +00:00
|
|
|
prerequisites_file.close();
|
2023-02-04 22:29:50 +00:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_term_dirs(const std::set<fs::directory_entry>& term_dirs,
|
2023-02-05 02:09:05 +00:00
|
|
|
quatalog_data_t& data) {
|
2023-02-06 19:54:54 +00:00
|
|
|
for(const auto& term : term_dirs) {
|
|
|
|
if(!fs::is_directory(term)) continue;
|
2023-02-05 02:09:05 +00:00
|
|
|
handle_term(term,data);
|
2023-02-04 17:38:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-02-06 19:24:19 +00:00
|
|
|
void handle_term(const fs::directory_entry& term_entry,
|
|
|
|
quatalog_data_t& quatalog_data) {
|
2023-02-04 17:38:37 +00:00
|
|
|
const fs::path dir = term_entry.path();
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& dirname = dir.string();
|
|
|
|
const auto& term = dir.stem().string();
|
|
|
|
const auto& courses_filename = dirname + "/courses.json";
|
|
|
|
const auto& prereqs_filename = dirname + "/prerequisites.json";
|
2023-02-04 17:38:37 +00:00
|
|
|
std::fstream courses_file{courses_filename,std::ios::in};
|
|
|
|
std::fstream prereqs_file{prereqs_filename,std::ios::in};
|
|
|
|
|
2023-02-04 20:06:20 +00:00
|
|
|
std::cerr << "Processing term " << term << "..." << std::endl;
|
2023-02-05 03:06:28 +00:00
|
|
|
quatalog_data.terms_offered["all_terms"].append(term);
|
2023-02-04 17:38:37 +00:00
|
|
|
|
2023-02-05 03:06:28 +00:00
|
|
|
term_data_t term_data;
|
|
|
|
courses_file >> term_data.courses;
|
|
|
|
prereqs_file >> term_data.prerequisites;
|
2023-02-04 22:29:50 +00:00
|
|
|
|
|
|
|
course_handler_t* course_handler;
|
|
|
|
if(term.substr(4,2) == "05") {
|
|
|
|
course_handler = handle_course_summer;
|
|
|
|
} else {
|
|
|
|
course_handler = handle_course;
|
|
|
|
}
|
2023-02-06 19:54:54 +00:00
|
|
|
for(const auto& prefix : term_data.courses) {
|
2023-02-05 03:06:28 +00:00
|
|
|
handle_prefix(prefix,term,quatalog_data,term_data,course_handler);
|
2023-02-04 20:06:20 +00:00
|
|
|
}
|
2023-02-05 02:09:05 +00:00
|
|
|
|
|
|
|
courses_file.close();
|
|
|
|
prereqs_file.close();
|
2023-02-04 20:06:20 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
void handle_prefix(const Json::Value& prefix,
|
|
|
|
const std::string& term,
|
2023-02-05 03:06:28 +00:00
|
|
|
quatalog_data_t& quatalog_data,
|
|
|
|
const term_data_t& term_data,
|
2023-02-04 22:29:50 +00:00
|
|
|
course_handler_t course_handler) {
|
2023-02-06 19:54:54 +00:00
|
|
|
for(const auto& course : prefix["courses"]) {
|
2023-02-05 03:06:28 +00:00
|
|
|
course_handler(course,term,quatalog_data,term_data.prerequisites);
|
2023-02-04 17:38:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
void handle_course(const Json::Value& course,
|
|
|
|
const std::string& term,
|
2023-02-05 02:09:05 +00:00
|
|
|
quatalog_data_t& data,
|
2023-02-05 03:06:28 +00:00
|
|
|
const Json::Value& term_prereqs) {
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& course_code = course["id"].asString();
|
2023-02-05 02:09:05 +00:00
|
|
|
auto& course_term = data.terms_offered[course_code][term];
|
2023-02-04 22:29:50 +00:00
|
|
|
const Json::Value& sections = course["sections"];
|
2023-02-05 03:06:28 +00:00
|
|
|
handle_everything(sections,course,course_term,data.prerequisites,term_prereqs);
|
2023-02-04 20:06:20 +00:00
|
|
|
}
|
2023-02-04 19:18:25 +00:00
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
void handle_course_summer(const Json::Value& course,
|
|
|
|
const std::string& term,
|
2023-02-05 02:09:05 +00:00
|
|
|
quatalog_data_t& data,
|
2023-02-05 03:06:28 +00:00
|
|
|
const Json::Value& term_prereqs) {
|
2023-02-04 22:29:50 +00:00
|
|
|
// sections[0]: Full term sections
|
|
|
|
// sections[1]: First-half term sections
|
|
|
|
// sections[2]: Second-half term sections
|
|
|
|
// Of course, a course will never be offered
|
|
|
|
// in both the full term _and_ one of the
|
|
|
|
// half-terms, but there are a few that
|
|
|
|
// are offered in both halves (e.g. STSO-4100)
|
|
|
|
std::array<Json::Value,3> sections;
|
|
|
|
|
|
|
|
// We will loop twice over the sections,
|
|
|
|
// once here and once in handle_sections,
|
|
|
|
// but frankly I tried to make it all in 1
|
|
|
|
// loop and the code was a total unreadable
|
|
|
|
// mess. So I don't really care
|
|
|
|
int subterm;
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& course_code = course["id"].asString();
|
2023-02-04 22:29:50 +00:00
|
|
|
bool subterm0 = false, subterm1 = false, subterm2 = false;
|
|
|
|
for(const auto& section : course["sections"]) {
|
|
|
|
const auto& timeslot = section["timeslots"][0];
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& dateEnd = timeslot["dateEnd"].asString();
|
|
|
|
const auto& dateStart = timeslot["dateStart"].asString();
|
2023-02-04 22:29:50 +00:00
|
|
|
subterm = 0;
|
|
|
|
if(dateStart.substr(0,2) != "05") {
|
|
|
|
subterm = 1;
|
|
|
|
subterm1 = true;
|
|
|
|
} else if(dateEnd.substr(0,2) != "08") {
|
|
|
|
subterm = 2;
|
|
|
|
subterm2 = true;
|
|
|
|
} else {
|
|
|
|
subterm0 = true;
|
|
|
|
}
|
|
|
|
sections[subterm].append(section);
|
|
|
|
}
|
|
|
|
|
2023-02-05 02:09:05 +00:00
|
|
|
auto& course_terms = data.terms_offered[course_code];
|
2023-02-04 22:29:50 +00:00
|
|
|
|
|
|
|
if(subterm0) {
|
2023-02-06 19:24:19 +00:00
|
|
|
handle_everything(sections[0],
|
|
|
|
course,
|
|
|
|
course_terms[term],
|
|
|
|
data.prerequisites,
|
|
|
|
term_prereqs);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(subterm1) {
|
|
|
|
handle_everything(sections[1],
|
|
|
|
course,
|
|
|
|
course_terms[term+"02"],
|
|
|
|
data.prerequisites,
|
|
|
|
term_prereqs);
|
|
|
|
}
|
|
|
|
if(subterm2) {
|
|
|
|
handle_everything(sections[2],
|
|
|
|
course,
|
|
|
|
course_terms[term+"03"],
|
|
|
|
data.prerequisites,
|
|
|
|
term_prereqs);
|
2023-02-04 22:29:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-05 02:09:05 +00:00
|
|
|
void handle_everything(const Json::Value& sections,
|
2023-02-05 03:06:28 +00:00
|
|
|
const Json::Value& course,
|
2023-02-05 02:09:05 +00:00
|
|
|
Json::Value& course_term,
|
2023-02-06 19:24:19 +00:00
|
|
|
Json::Value& out_prereqs,
|
2023-02-05 03:06:28 +00:00
|
|
|
const Json::Value& term_prereqs) {
|
|
|
|
course_term["title"] = course["title"];
|
2023-02-05 02:09:05 +00:00
|
|
|
handle_sections(sections,course_term);
|
2023-02-06 19:24:19 +00:00
|
|
|
handle_attributes(sections[0],course["id"].asString(),course_term,out_prereqs);
|
|
|
|
handle_prereqs(sections[0],course["id"].asString(),out_prereqs,term_prereqs);
|
2023-02-05 02:09:05 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
void handle_sections(const Json::Value& sections,
|
|
|
|
Json::Value& course_term) {
|
2023-02-04 20:06:20 +00:00
|
|
|
int credMin = Json::Value::maxInt, credMax = 0;
|
|
|
|
int seatsTaken = 0, capacity = 0, remaining = 0;
|
2023-02-05 00:32:25 +00:00
|
|
|
std::unordered_set<std::string> instructors;
|
2023-02-04 22:29:50 +00:00
|
|
|
for(const auto& section : sections) {
|
2023-02-04 20:06:20 +00:00
|
|
|
// Get min/max credits *of all sections*
|
|
|
|
// (RCOS looking at you)
|
|
|
|
credMin = std::min(credMin,section["credMin"].asInt());
|
|
|
|
credMax = std::max(credMax,section["credMax"].asInt());
|
|
|
|
|
|
|
|
// Add seating data of all sections together.
|
|
|
|
// remaining might get clobbered by some sections
|
|
|
|
// having negative seats, but this probably won't
|
|
|
|
// be too much of an issue
|
|
|
|
seatsTaken += section["act"].asInt();
|
|
|
|
capacity += section["cap"].asInt();
|
|
|
|
remaining += section["rem"].asInt();
|
2023-02-05 00:32:25 +00:00
|
|
|
|
|
|
|
handle_instructors(section,instructors);
|
2023-02-04 20:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
course_term["credits"]["min"] = credMin;
|
|
|
|
course_term["credits"]["max"] = credMax;
|
|
|
|
course_term["seats"]["taken"] = seatsTaken;
|
|
|
|
course_term["seats"]["capacity"] = capacity;
|
|
|
|
course_term["seats"]["remaining"] = remaining;
|
2023-02-05 00:32:25 +00:00
|
|
|
for(const auto& instructor : instructors) {
|
|
|
|
course_term["instructors"].append(instructor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_instructors(const Json::Value& section,
|
|
|
|
std::unordered_set<std::string>& instructors) {
|
|
|
|
for(const auto& timeslot : section["timeslots"]) {
|
|
|
|
handle_multiple_instructors(timeslot["instructor"].asString(),instructors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_multiple_instructors(const std::string& instructor_str,
|
|
|
|
std::unordered_set<std::string>& instructors) {
|
2023-02-06 19:54:54 +00:00
|
|
|
iterateOnDelimitedString(instructor_str,
|
|
|
|
std::regex(", ?"),
|
|
|
|
[&](const std::string& inst_str) {
|
|
|
|
if(inst_str == "TBA") return;
|
|
|
|
instructors.insert(inst_str);
|
|
|
|
});
|
2023-02-04 20:06:20 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
void handle_attributes(const Json::Value& section,
|
2023-02-06 19:24:19 +00:00
|
|
|
const std::string& course_id,
|
|
|
|
Json::Value& course_term,
|
|
|
|
Json::Value& out_prereqs) {
|
2023-02-04 20:06:20 +00:00
|
|
|
// Makes the JSON list of attributes
|
2023-02-06 19:24:19 +00:00
|
|
|
Json::Value& term_attributes = course_term["attributes"];
|
|
|
|
Json::Value attributes = Json::arrayValue;
|
|
|
|
term_attributes = Json::arrayValue;
|
2023-02-06 19:54:54 +00:00
|
|
|
|
|
|
|
iterateOnDelimitedString(section["attribute"].asString(),
|
|
|
|
std::regex(" and |, "),
|
|
|
|
[&](const std::string& attr_str) {
|
|
|
|
handle_attribute(attr_str,
|
2023-02-06 19:24:19 +00:00
|
|
|
attributes,
|
|
|
|
term_attributes);
|
2023-02-06 19:54:54 +00:00
|
|
|
});
|
|
|
|
|
2023-02-06 19:24:19 +00:00
|
|
|
if(!attributes.empty())
|
|
|
|
out_prereqs[course_id]["attributes"] = attributes;
|
2023-02-04 17:38:37 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 22:29:50 +00:00
|
|
|
void handle_attribute(const std::string& attribute,
|
2023-02-06 19:24:19 +00:00
|
|
|
Json::Value& attributes,
|
|
|
|
Json::Value& term_attributes) {
|
|
|
|
// COVID year screwed these attributes up; we will ignore them
|
|
|
|
if(attribute != "Hybrid:Online/In-Person Course"
|
|
|
|
&& attribute != "Online Course"
|
|
|
|
&& attribute != "In-Person Course") {
|
|
|
|
attributes.append(attribute);
|
|
|
|
handle_term_attribute(attribute,term_attributes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_term_attribute(const std::string& attribute,
|
|
|
|
Json::Value& attributes) {
|
2023-02-06 23:00:22 +00:00
|
|
|
// These are the attributes we want to display in the
|
|
|
|
// course years table
|
2023-02-04 17:38:37 +00:00
|
|
|
if(attribute == "Communication Intensive") {
|
2023-02-04 22:29:50 +00:00
|
|
|
attributes.append("[CI]");
|
2023-02-04 17:38:37 +00:00
|
|
|
} else if(attribute == "Writing Intensive") {
|
2023-02-04 22:29:50 +00:00
|
|
|
attributes.append("[WI]");
|
2023-02-04 17:38:37 +00:00
|
|
|
} else if(attribute == "HASS Inquiry") {
|
2023-02-04 22:29:50 +00:00
|
|
|
attributes.append("[HInq]");
|
2023-02-04 17:38:37 +00:00
|
|
|
} else if(attribute == "Culminating Exp/Capstone") {
|
2023-02-04 22:29:50 +00:00
|
|
|
attributes.append("[CulmExp]");
|
2023-02-04 17:38:37 +00:00
|
|
|
} else if(attribute == "PDII Option for Engr Majors") {
|
2023-02-04 22:29:50 +00:00
|
|
|
attributes.append("[PDII]");
|
2023-02-04 17:38:37 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-05 03:06:28 +00:00
|
|
|
|
2023-02-06 19:54:54 +00:00
|
|
|
template<typename Functor>
|
|
|
|
void iterateOnDelimitedString(const std::string& str,
|
|
|
|
const std::regex& delim,
|
|
|
|
const Functor& callback) {
|
|
|
|
// This mess is basically C++'s string split but not using
|
|
|
|
// as much memory as an actual string split
|
|
|
|
const auto end_itr = std::sregex_token_iterator();
|
|
|
|
auto itr = std::sregex_token_iterator(str.begin(),str.end(),delim,-1);
|
|
|
|
|
|
|
|
while(itr != end_itr && !itr->str().empty()) {
|
|
|
|
callback(itr->str());
|
|
|
|
itr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-05 03:06:28 +00:00
|
|
|
void handle_prereqs(const Json::Value& section,
|
|
|
|
const std::string& course_id,
|
2023-02-06 19:24:19 +00:00
|
|
|
Json::Value& out_data,
|
2023-02-05 03:06:28 +00:00
|
|
|
const Json::Value& term_prereqs) {
|
2023-02-06 19:54:54 +00:00
|
|
|
const auto& crn = section["crn"].asString();
|
2023-02-06 19:24:19 +00:00
|
|
|
|
|
|
|
const auto& in_obj = term_prereqs[crn];
|
|
|
|
|
|
|
|
const auto& corequisites = in_obj["corequisites"];
|
|
|
|
const auto& prerequisites = in_obj["prerequisites"];
|
|
|
|
const auto& cross_listings = in_obj["cross_list_courses"];
|
|
|
|
|
|
|
|
// Scraper does not work as intended if we use
|
|
|
|
// a variable instead of repeating out_data[course_id]
|
|
|
|
// This would result in null entries for courses that
|
|
|
|
// have major restrictions or something else like that
|
|
|
|
if(!corequisites.empty())
|
|
|
|
out_data[course_id]["corequisites"] = corequisites;
|
|
|
|
if(!prerequisites.empty())
|
|
|
|
out_data[course_id]["prerequisites"] = prerequisites;
|
|
|
|
if(!cross_listings.empty())
|
|
|
|
out_data[course_id]["cross_listings"] = cross_listings;
|
2023-02-05 03:06:28 +00:00
|
|
|
}
|