Files
CMLeonOS/Kernel.cs

269 lines
11 KiB
C#
Raw Normal View History

2026-02-02 18:08:24 +08:00
using Cosmos.HAL;
2026-02-02 22:32:02 +08:00
using Cosmos.System.FileSystem;
using Cosmos.System.FileSystem.FAT;
using Cosmos.System.FileSystem.VFS;
2026-02-02 18:08:24 +08:00
using Cosmos.System.Network.Config;
using Cosmos.System.Network.IPv4.UDP.DHCP;
2026-02-02 22:32:02 +08:00
using Cosmos.HAL.BlockDevice;
2026-02-02 19:38:56 +08:00
using Cosmos.System.Network.IPv4;
2026-01-31 19:14:13 +08:00
using System;
2026-01-30 21:55:35 +08:00
using System.Collections.Generic;
using System.IO;
2026-02-02 18:08:24 +08:00
using System.Reflection.Metadata.Ecma335;
using System.Text;
2026-01-30 21:55:35 +08:00
using Sys = Cosmos.System;
namespace CMLeonOS
{
public class Kernel : Sys.Kernel
{
2026-02-02 02:21:50 +08:00
public void ShowError(string error)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"{error}");
Console.ResetColor();
}
2026-02-02 15:55:19 +08:00
public void ShowSuccess(string success)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine($"{success}");
Console.ResetColor();
}
2026-01-30 21:55:35 +08:00
// 创建全局CosmosVFS实例
2026-02-02 19:38:56 +08:00
public static Sys.FileSystem.CosmosVFS fs = new Sys.FileSystem.CosmosVFS();
2026-02-03 23:41:11 +08:00
public static Shell shell;
public static UserSystem userSystem;
2026-01-30 23:36:08 +08:00
public static bool FixMode = false;
2026-02-02 05:22:25 +08:00
public static DateTime SystemStartTime;
2026-02-02 19:38:56 +08:00
public static Cosmos.HAL.NetworkDevice NetworkDevice = null;
public static string IPAddress = "Unknown";
2026-01-30 21:55:35 +08:00
protected override void BeforeRun()
{
2026-01-31 19:14:13 +08:00
// Console.Clear();
2026-02-02 02:01:52 +08:00
Console.WriteLine("Kernel load done!");
2026-01-31 19:14:13 +08:00
Console.WriteLine(@"-------------------------------------------------");
2026-01-30 21:55:35 +08:00
Console.WriteLine(@" ____ __ __ _ ___ ____ ");
Console.WriteLine(@" / ___| \/ | | ___ ___ _ __ / _ \/ ___| ");
Console.WriteLine(@" | | | |\/| | | / _ \/ _ \| '_ \| | | \___ \ ");
Console.WriteLine(@" | |___| | | | |__| __/ (_) | | | | |_| |___) |");
2026-01-30 23:36:08 +08:00
Console.WriteLine(@" \____|_| |_|_____\___|\___/|_| |_|____/|____/ ");
2026-01-30 21:55:35 +08:00
Console.WriteLine();
2026-02-01 23:25:21 +08:00
Console.WriteLine("CMLeonOS Project");
2026-01-30 21:55:35 +08:00
Console.WriteLine("By LeonOS 2 Developement Team");
2026-02-02 05:22:25 +08:00
// 记录系统启动时间用于uptime命令
SystemStartTime = DateTime.Now;
Console.WriteLine($"System started at: {SystemStartTime.ToString("yyyy-MM-dd HH:mm:ss")}");
2026-02-02 15:55:19 +08:00
2026-02-02 18:08:24 +08:00
// 初始化网络
2026-02-02 15:55:19 +08:00
Console.WriteLine("Starting network...");
try
{
if (Cosmos.HAL.NetworkDevice.Devices.Count == 0)
{
throw new Exception("No network devices are available.");
}
2026-02-02 19:38:56 +08:00
NetworkDevice = NetworkDevice.Devices[0];
2026-02-02 15:55:19 +08:00
using var dhcp = new DHCPClient();
2026-02-02 19:38:56 +08:00
if (NetworkDevice.Ready == true) {
2026-02-02 18:08:24 +08:00
ShowSuccess("Network device ready.");
}
else
{
2026-02-02 22:32:02 +08:00
ShowError("Network device is not ready");
2026-02-02 18:08:24 +08:00
}
2026-02-02 15:55:19 +08:00
dhcp.SendDiscoverPacket();
2026-02-04 14:19:57 +08:00
2026-02-02 19:38:56 +08:00
IPAddress = NetworkConfiguration.CurrentAddress.ToString();
Console.WriteLine($"Local IP: {IPAddress}");
2026-02-04 14:19:57 +08:00
string gateway = NetworkConfigManager.Instance.GetGateway();
Console.WriteLine($"Gateway: {gateway}");
string dns = NetworkConfigManager.Instance.GetDNS();
Console.WriteLine($"DNS Server: {dns}");
2026-02-02 22:32:02 +08:00
ShowSuccess("Network started");
2026-02-02 15:55:19 +08:00
}
catch (Exception ex)
{
ShowError($"Could not start network: {ex.ToString()}");
}
2026-01-30 21:55:35 +08:00
// 注册VFS
try
{
Sys.FileSystem.VFS.VFSManager.RegisterVFS(fs);
2026-02-02 15:55:19 +08:00
ShowSuccess("VFS initialized successfully");
2026-01-30 21:55:35 +08:00
2026-01-31 14:01:50 +08:00
// 显示可用空间(动态单位)
2026-01-30 21:55:35 +08:00
var available_space = fs.GetAvailableFreeSpace(@"0:\");
2026-01-31 14:01:50 +08:00
string spaceWithUnit = FormatBytes(available_space);
Console.WriteLine("Available Free Space: " + spaceWithUnit);
2026-01-30 21:55:35 +08:00
// 显示文件系统类型
var fs_type = fs.GetFileSystemType(@"0:\");
Console.WriteLine("File System Type: " + fs_type);
2026-01-31 19:14:13 +08:00
// 检查并创建system文件夹
string systemFolderPath = @"0:\system";
if (!System.IO.Directory.Exists(systemFolderPath))
2026-01-30 21:55:35 +08:00
{
2026-01-31 19:14:13 +08:00
System.IO.Directory.CreateDirectory(systemFolderPath);
Console.WriteLine("Created system folder.");
2026-01-30 21:55:35 +08:00
}
// 初始化用户系统
userSystem = new UserSystem();
2026-02-01 18:05:54 +08:00
// 检查env.dat文件是否存在如果不存在则创建并设置Test环境变量
string envFilePath = @"0:\system\env.dat";
if (!System.IO.File.Exists(envFilePath))
{
System.IO.File.WriteAllText(envFilePath, "Test=123");
2026-02-02 15:55:19 +08:00
ShowSuccess("Created env.dat with Test=123");
2026-02-01 18:05:54 +08:00
}
2026-02-02 18:08:24 +08:00
// 输出系统启动-初始化完成后的时间
TimeSpan uptime = DateTime.Now - Kernel.SystemStartTime;
// Console.WriteLine("System started: " + Kernel.SystemStartTime.ToString("yyyy-MM-dd HH:mm:ss"));
// Console.WriteLine("Current time: " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
// Console.WriteLine();
// 格式化运行时间
int days = uptime.Days;
int hours = uptime.Hours;
int minutes = uptime.Minutes;
int seconds = uptime.Seconds;
Console.WriteLine($"System uptime: {days} days, {hours} hours, {minutes} minutes, {seconds} seconds");
2026-02-02 19:38:56 +08:00
// Console.WriteLine($"Total uptime: {uptime.TotalHours:F2} hours");
2026-02-01 18:05:54 +08:00
2026-01-31 19:14:13 +08:00
// 循环直到登录成功或退出
while (true)
2026-01-30 21:55:35 +08:00
{
2026-01-31 19:14:13 +08:00
// 第一次启动,设置管理员账户
if (!userSystem.HasUsers)
{
userSystem.FirstTimeSetup();
}
// 后续启动,需要登录
else
2026-01-30 21:55:35 +08:00
{
2026-01-31 19:14:13 +08:00
// 循环直到登录成功
while (!userSystem.Login())
{
// 登录失败,继续尝试
}
// 登录成功后初始化Shell
2026-02-01 15:21:17 +08:00
shell = new Shell(userSystem);
2026-01-31 19:14:13 +08:00
// 检查并执行启动脚本
ExecuteStartupScript();
// 运行Shell用户可以输入exit退出
shell.Run();
// 如果用户输入了exitShell.Run()会返回,继续循环
2026-01-30 21:55:35 +08:00
}
}
}
catch (Exception ex)
{
2026-02-02 02:21:50 +08:00
ShowError($"Error initializing system: {ex.Message}");
2026-02-02 22:32:02 +08:00
ShowError("Please contact the developers, Email: leonmmcoset@outlook.com");
// 这条横线居然和上一条信息的字符数是一样的
Console.WriteLine("-------------------------------------------------------------");
Console.WriteLine($"Maybe your disk isn't formatted, please format your disk using like PE or something else.");
Console.WriteLine("(CMLeonOS need more than 512 MB disk space and FAT32 file system.)");
Console.WriteLine("Press any key to restart...");
Console.ReadKey();
Sys.Power.Reboot();
2026-01-30 21:55:35 +08:00
}
}
2026-01-31 14:01:50 +08:00
private void ExecuteStartupScript()
{
2026-01-31 19:14:13 +08:00
string startupFilePath = @"0:\system\startup.cm";
2026-01-31 14:01:50 +08:00
try
{
// 检查启动脚本文件是否存在
if (System.IO.File.Exists(startupFilePath))
{
// 读取启动脚本内容
string[] lines = System.IO.File.ReadAllLines(startupFilePath);
// 检查文件是否为空
if (lines.Length == 0 || (lines.Length == 1 && string.IsNullOrWhiteSpace(lines[0])))
{
Console.WriteLine("Startup script is empty, skipping...");
return;
}
Console.WriteLine("Executing startup script...");
Console.WriteLine("--------------------------------");
// 逐行执行命令
foreach (string line in lines)
{
// 跳过空行和注释行
if (string.IsNullOrWhiteSpace(line) || line.Trim().StartsWith("#"))
{
continue;
}
// 执行命令
2026-01-31 20:50:07 +08:00
// Console.WriteLine($"Executing: {line}");
2026-01-31 14:01:50 +08:00
shell.ExecuteCommand(line);
}
Console.WriteLine("--------------------------------");
Console.WriteLine("Startup script execution completed.");
}
else
{
// 启动脚本不存在,创建空文件
Console.WriteLine("Startup script not found, creating empty file...");
System.IO.File.WriteAllText(startupFilePath, "");
Console.WriteLine("Created empty startup script at: " + startupFilePath);
}
}
catch (Exception ex)
{
2026-02-02 02:21:50 +08:00
ShowError($"Error executing startup script: {ex.Message}");
2026-01-31 14:01:50 +08:00
}
}
private string FormatBytes(long bytes)
{
string[] units = { "B", "KB", "MB", "GB", "TB" };
int unitIndex = 0;
double size = bytes;
while (size >= 1024 && unitIndex < units.Length - 1)
{
size /= 1024;
unitIndex++;
}
return $"{size:F2} {units[unitIndex]}";
}
2026-01-30 21:55:35 +08:00
protected override void Run()
{
if (shell != null)
{
shell.Run();
}
}
}
}