2025-03-31 17:19:43 +03:00
|
|
|
#include <iostream>
|
|
|
|
#include <random>
|
|
|
|
|
|
|
|
#include "Kernel.h"
|
2025-04-01 14:10:01 +03:00
|
|
|
#include "MMU.h"
|
2025-03-31 17:19:43 +03:00
|
|
|
|
|
|
|
static int MAX_PROC = 10;
|
2025-04-01 16:29:33 +03:00
|
|
|
static int PAGE_N = 100;
|
|
|
|
static int PROC_CREATION_INTERVAL = 100;
|
2025-03-31 17:19:43 +03:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
std::random_device rd;
|
|
|
|
std::mt19937 gen(rd());
|
2025-04-01 16:29:33 +03:00
|
|
|
std::uniform_int_distribution<unsigned int> page_table_distribution(500, 1000), lifetime_distribution(50, 500), access_type_distr(1, 10);
|
2025-03-31 17:19:43 +03:00
|
|
|
|
2025-04-01 15:22:38 +03:00
|
|
|
Kernel kernel(MAX_PROC, List<PhysicalPage>(), List<PhysicalPage>());
|
2025-04-01 16:29:33 +03:00
|
|
|
unsigned int elapsed_time = 0, new_proc_time = 0, new_ppn;
|
2025-03-31 17:19:43 +03:00
|
|
|
|
2025-04-01 16:29:33 +03:00
|
|
|
for (new_ppn = 1; new_ppn <= PAGE_N; ++new_ppn) {
|
|
|
|
kernel.free_pages.insert_head(new PhysicalPage(new_ppn));
|
2025-03-31 17:19:43 +03:00
|
|
|
}
|
|
|
|
|
2025-04-01 14:10:01 +03:00
|
|
|
for (int i = 0; i < kernel.RunQ.capacity(); ++i) {
|
2025-04-01 16:29:33 +03:00
|
|
|
kernel.RunQ.emplace_back(i, std::vector(page_table_distribution(gen), PTE()), lifetime_distribution(gen));
|
2025-03-31 17:19:43 +03:00
|
|
|
}
|
|
|
|
|
2025-04-01 14:10:01 +03:00
|
|
|
for (int i = 0; i < 10000; ++i) {
|
|
|
|
if (kernel.RunQ.empty()) {
|
|
|
|
break;
|
|
|
|
}
|
2025-04-01 15:22:38 +03:00
|
|
|
|
2025-04-01 16:29:33 +03:00
|
|
|
std::uniform_int_distribution<unsigned int> index_distribution(0, kernel.RunQ.at(0).pageTable.size() - 1);
|
2025-04-01 14:10:01 +03:00
|
|
|
for (int j = 0; j < 30; ++j) {
|
|
|
|
const AccessType type = access_type_distr(gen) == 1 ? WRITE : READ;
|
2025-04-01 15:22:38 +03:00
|
|
|
const unsigned int index = index_distribution(gen);
|
2025-04-01 16:29:33 +03:00
|
|
|
MMU::access(kernel, &kernel.RunQ.at(0).pageTable, index, type);
|
2025-04-01 14:10:01 +03:00
|
|
|
}
|
2025-04-01 15:22:38 +03:00
|
|
|
|
|
|
|
++elapsed_time;
|
2025-04-01 16:29:33 +03:00
|
|
|
++new_proc_time;
|
2025-04-01 15:22:38 +03:00
|
|
|
|
2025-04-01 16:29:33 +03:00
|
|
|
kernel.stat_update();
|
2025-04-01 15:22:38 +03:00
|
|
|
|
|
|
|
if (kernel.RunQ.at(0).is_finished(elapsed_time)) {
|
2025-04-01 16:29:33 +03:00
|
|
|
std::cout << std::format("[kernel:remove_current_process] Cleaning up process id {}", kernel.RunQ.at(0).id) << std::endl;
|
|
|
|
|
2025-04-01 15:22:38 +03:00
|
|
|
PhysicalPage *curr, *cached_next;
|
|
|
|
unsigned int j;
|
|
|
|
const unsigned int cached_len = kernel.busy_pages.get_num();
|
|
|
|
for (curr = kernel.busy_pages.get_head(), j = 0;
|
2025-04-01 16:29:33 +03:00
|
|
|
curr && j < cached_len;
|
2025-04-01 15:22:38 +03:00
|
|
|
curr = cached_next, ++j) {
|
|
|
|
cached_next = curr->next;
|
2025-04-01 16:29:33 +03:00
|
|
|
if (curr->PT == &kernel.RunQ.at(0).pageTable) {
|
|
|
|
std::cout << std::format("[kernel:remove_current_process] Found ppn #{}, freeing it", curr->PPN) << std::endl;
|
|
|
|
|
2025-04-01 15:22:38 +03:00
|
|
|
kernel.busy_pages.remove(curr);
|
|
|
|
kernel.free_pages.insert_tail(curr);
|
|
|
|
}
|
|
|
|
}
|
2025-04-01 14:10:01 +03:00
|
|
|
kernel.RunQ.erase(kernel.RunQ.begin());
|
2025-04-01 15:22:38 +03:00
|
|
|
|
2025-04-01 16:29:33 +03:00
|
|
|
if (new_proc_time >= PROC_CREATION_INTERVAL) {
|
|
|
|
kernel.RunQ.emplace_back(new_ppn, std::vector(page_table_distribution(gen), PTE()), lifetime_distribution(gen));
|
|
|
|
++new_ppn;
|
|
|
|
new_proc_time = 0;
|
|
|
|
}
|
2025-04-01 15:22:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
unsigned int busy_stat = kernel.busy_pages.get_num(), free_stat = kernel.free_pages.get_num();
|
|
|
|
std::cout << std::format("[main:metrics] Memory usage stats: busy {}, free {}, total {}", busy_stat, free_stat, free_stat + busy_stat) << std::endl;
|
2025-04-01 14:10:01 +03:00
|
|
|
}
|
2025-04-01 16:29:33 +03:00
|
|
|
|
|
|
|
if (kernel.RunQ.empty()) {
|
|
|
|
std::cout << "[main:scheduling] No processes left to execute!" << std::endl;
|
|
|
|
}
|
2025-03-31 22:20:01 +03:00
|
|
|
}
|
|
|
|
|
2025-03-31 17:19:43 +03:00
|
|
|
return 0;
|
|
|
|
}
|