-
Notifications
You must be signed in to change notification settings - Fork 0
/
KernelRW.cs
113 lines (100 loc) · 3.01 KB
/
KernelRW.cs
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
using System;
using System.IO;
namespace Quantum
{
class KernelRW
{
public static void Init()
{
Kernel.print("Checking .sysr, .sysw files");
KernelRW.CheckFiles();
KernelRW.SetR("sysr");
KernelRW.SetR("sysw");
Kernel.print("RW permissions was restored success!");
}
public static void DeR(string path)
{
if (KernelRW.SystemFile(path))
{
Kernel.err("Permission denied");
return;
}
string acc = String.Empty;
string[] current = File.ReadAllLines("0:\\sysr");
foreach (string line in current)
{
if (path == line) continue;
acc += line + "\n";
}
File.WriteAllText("0:\\sysr", acc);
}
private static bool SystemFile(string path)
{
return path == "sysr" || path == "sysw" || path == "dtts";
}
public static void DeW(string path)
{
if (KernelRW.SystemFile(path))
{
Kernel.err("Permission denied");
return;
}
string acc = String.Empty;
string[] current = File.ReadAllLines("0:\\sysw");
foreach (string line in current)
{
if (path == line) continue;
acc += line + "\n";
}
File.WriteAllText("0:\\sysw", acc);
}
public static void SetR(string file)
{
if (Contains("0:\\sysr", file)) return;
File.AppendAllText("0:\\sysr", file + "\n");
}
public static void SetW(string file)
{
if (Contains("0:\\sysr", file)) return;
File.AppendAllText("0:\\sysw", file + "\n");
}
private static bool Contains(string v, string file)
{
string[] lines = File.ReadAllLines(v);
foreach (string line in lines)
{
if (line == file) return true;
}
return false;
}
public static bool IsR(string file)
{
string[] files = File.ReadAllLines("0:\\sysr");
foreach (string line in files)
{
if (line == file) return true;
}
return false;
}
public static bool IsW(string file)
{
string[] files = File.ReadAllLines("0:\\sysw");
foreach (string line in files)
{
if (line == file) return true;
}
return false;
}
public static void CheckFiles()
{
if (!File.Exists("0:\\sysr"))
{
VFS.Touch("sysr");
}
if (!File.Exists("0:\\sysw"))
{
VFS.Touch("sysw");
}
}
}
}