2023-03-09 12:08:33 +01:00
|
|
|
use std::cell::RefCell;
|
|
|
|
|
2023-03-08 21:10:51 +01:00
|
|
|
use crate::simulator::machine::Machine;
|
|
|
|
|
|
|
|
use super::thread_manager::ThreadManager;
|
2023-03-01 11:10:15 +01:00
|
|
|
|
2023-03-08 15:16:10 +01:00
|
|
|
/// # System
|
|
|
|
///
|
|
|
|
/// This structure represents the state of the threads running on the operating system.
|
|
|
|
/// It contains references to the following:
|
|
|
|
///
|
|
|
|
/// - The simulated machine
|
|
|
|
/// - The current running thread
|
|
|
|
/// - The list of active threads
|
|
|
|
/// - The thread to be destroyed next
|
|
|
|
/// - The scheduler which acts upon these threads
|
2023-03-08 15:48:33 +01:00
|
|
|
#[derive(PartialEq)]
|
2023-03-08 21:10:51 +01:00
|
|
|
pub struct System<'a> {
|
2023-03-09 12:08:33 +01:00
|
|
|
g_machine: RefCell<Machine>,
|
2023-03-08 21:10:51 +01:00
|
|
|
thread_manager: ThreadManager<'a>
|
2023-03-08 15:16:10 +01:00
|
|
|
}
|
2023-03-01 11:10:15 +01:00
|
|
|
|
2023-03-08 21:10:51 +01:00
|
|
|
impl<'a> System<'a> {
|
2023-03-01 15:45:49 +01:00
|
|
|
|
2023-03-08 15:34:13 +01:00
|
|
|
/// System constructor
|
2023-03-08 21:10:51 +01:00
|
|
|
pub fn new(machine: Machine) -> System<'a> {
|
2023-03-08 15:34:13 +01:00
|
|
|
Self {
|
2023-03-09 12:08:33 +01:00
|
|
|
g_machine: RefCell::new(machine),
|
2023-03-08 21:10:51 +01:00
|
|
|
thread_manager: ThreadManager::new()
|
2023-03-08 15:34:13 +01:00
|
|
|
}
|
2023-03-08 21:10:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn freeze(&'a mut self) {
|
|
|
|
self.thread_manager.system.set(Option::Some(self));
|
|
|
|
}
|
2023-03-08 15:34:13 +01:00
|
|
|
|
2023-03-08 15:16:10 +01:00
|
|
|
// GETTERS
|
2023-03-01 10:11:19 +01:00
|
|
|
|
2023-03-08 15:16:10 +01:00
|
|
|
/// Returns the Machine
|
|
|
|
///
|
|
|
|
/// Useful to access RAM, devices, ...
|
2023-03-09 12:08:33 +01:00
|
|
|
pub fn get_g_machine(&self) -> &RefCell<Machine> {
|
|
|
|
&self.g_machine
|
2023-03-08 15:16:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setters
|
|
|
|
|
|
|
|
/// Assign a machine to the system
|
2023-03-09 12:08:33 +01:00
|
|
|
pub fn set_g_machine(&mut self, machine: RefCell<Machine>) {
|
2023-03-08 15:16:10 +01:00
|
|
|
self.g_machine = machine
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-02-28 14:43:40 +01:00
|
|
|
|
2023-03-01 11:10:15 +01:00
|
|
|
#[derive(PartialEq)]
|
2023-02-28 14:43:40 +01:00
|
|
|
pub enum ObjectType {
|
2023-03-01 11:16:21 +01:00
|
|
|
SemaphoreType,
|
|
|
|
LockType,
|
|
|
|
ConditionType,
|
|
|
|
FileType,
|
|
|
|
ThreadType,
|
|
|
|
InvalidType
|
2023-02-28 14:43:40 +01:00
|
|
|
}
|